Hi there! I’m Vivek, a software developer passionate about coding and helping others learn. On this channel, I break down complex concepts into simple, beginner-friendly tutorials.

What you’ll learn here:
• MERN Stack & TypeScript
• System Design (real-world, easy explanations)
• DevOps & Cloud Computing (AWS, Docker, CI/CD)
• Databases (MongoDB, MySQL, Redis)
• Daily Shorts on coding, tech, and interesting topics
• Hands-on project tutorials from start to finish
• Interview-focused content to help you grow faster

My goal is to make learning easy with practical examples, clear guidance, and daily content that improves your skills step by step.

If you want to learn to code, build projects, and level up your tech career—you’re in the right place!
Subscribe and let’s grow together!


CodeWithVivek

Which operator checks for NULL values?

6 hours ago | [YT] | 0

CodeWithVivek

Which query returns duplicate values?

1 day ago | [YT] | 0

CodeWithVivek

Which clause is executed first in SQL query processing?

Drop your answer in the comments and tell us why you think it's correct!

2 days ago | [YT] | 0

CodeWithVivek

SELECT DISTINCT department
FROM employees;

What does DISTINCT do?

3 days ago | [YT] | 0

CodeWithVivek

SELECT COUNT(manager_id)
FROM employees;

What does this query count?

4 days ago | [YT] | 1

CodeWithVivek

SELECT COUNT(*)
FROM employees;
What does COUNT(*) return?

5 days ago | [YT] | 0

CodeWithVivek

SELECT *
FROM employees
LIMIT 5
ORDER BY salary DESC;

6 days ago | [YT] | 4

CodeWithVivek

What will this query return?

db.users.find({ age: { $gt: 18, $lt: 18 } })

1 month ago | [YT] | 2

CodeWithVivek

Hello guys 👋

If you watched my MongoDB course and want videos on any other topics, definitely comment below 🙌

I’m planning to create a “100 MongoDB Questions” series covering:

* Basic to advanced MongoDB questions
* Complex aggregation pipelines
* Advanced queries
* Real-world problem solving
* Interview-style questions

I’m also planning a separate video on Vector Search using MongoDB 🚀

If you’re interested in these topics, do comment — your support and suggestions really motivate me to continue this series in more depth ❤️

Also, if there’s any other topic you want me to cover, feel free to suggest it anytime. I’m always open to suggestions 😊

1 month ago | [YT] | 2

CodeWithVivek

Predict Output:

for (var i = 0; i < 3; i++) {
setTimeout(() => console.log(i), 100);
}

1 month ago | [YT] | 4