Coding Wallah Sir

Hanji kaise ho ?
How's the Fire ๐Ÿ”ฅ ?

This is Shivam Sharma known as Coding Wallah Sir, With over 8 years in the IT industry, I've guided many students to become skilled developers.

โค๏ธ My Students know me on YouTube for simplifying complex coding concepts with real life examples through practicals & my innovative teaching.

๐ŸŒŸ MY Vision:
Prevent student scams for guaranteed placements. ๐Ÿ’ผ
Offer high-quality, affordable courses. ๐Ÿš€
Foster an Open-Source ๐Ÿ‡ฎ๐Ÿ‡ณ Indian Coding Community.

๐Ÿ‘จ๐Ÿปโ€๐Ÿซ Tutorials Coming
Programming Languages: JAVA, Python, C, C++, JavaScript. ๐Ÿ’ป

Web Development: HTML, CSS, JS, Bootstrap, Node.js, React.js, Next.js. ๐ŸŒ

Java Development: Core Java, J2EE, Spring Boot, Hibernate, MySQL, MongoDB, REST API. โ˜•

Data Structures and Algorithms (DSA). ๐Ÿง 


Coding Wallah Sir

Hanji, kaise ho sare ?

I just want to know why you have subscribed to the CODING WALLAH ?

1 week ago | [YT] | 14

Coding Wallah Sir

Happy Independence Day to all my Loving Students ๐Ÿ’–

๐Ÿ‡ฎ๐Ÿ‡ณ This 15th August โ€“ Set Your Career Free! ๐Ÿš€

Hanji, still stuck in endless tutorials?
This Independence Day, break free from confusion and start your journey as a Job-Ready Java Full Stack Developer.

๐ŸŽฏ Learn with TARGETED FOCUSED:
โœ… Core Java โ†’ Advanced
โœ… Spring Boot + Microservices
โœ… Frontend (HTML, CSS, JS)
โœ… Real Projects + Deployment
โœ… Interview Preparation

๐ŸŽ Special Freedom Offer:
Use coupon FREEDOM today & get 50% OFF on our New Java Full Stack Course.
๐Ÿ“… Offer valid till midnight, 15th August.

๐Ÿ‘‰ Enroll now & claim your freedom: codingwallah.classx.co.in/new-courses/7-java-full-โ€ฆ

1 week ago | [YT] | 18

Coding Wallah Sir

Day 9 - JAVA QUIZ ๐Ÿ”ฅ

Aaj ka sawal apki ๐Ÿ‘€ scanning power check krega logic nahi, so dhyaan se dekho or ams tick kroo

public class TestArray {
public static void main(String[] args) {
int[] arr = {10, 20, 30, 40, 50};
System.out.println(arr[0] + arr[2] + arr[arr.length() - 1]);
}
}


๐ŸŽ‰๐ŸŽ‰๐ŸŽ‰๐ŸŽ‰๐ŸŽ‰๐ŸŽ‰๐ŸŽ‰๐ŸŽ‰๐ŸŽ‰๐ŸŽ‰
Bdw students who's interested in PAID COURSE.

๐ŸŽ Special Offer:
Use coupon FREEDOM today & get flat 30% OFF.
๐Ÿ“… Offer valid till midnight, 15th August.

๐Ÿ‘‰ Enroll now & start your journey: www.codingwallah.org/

Check the courses ( JAVA FULL STACK NEW )

Letโ€™s make this Independence Day count for your career growth! ๐Ÿ‡ฎ๐Ÿ‡ณ

1 week ago | [YT] | 8

Coding Wallah Sir

Day 8 ๐Ÿ”ฅ - JAVA QUIZ CHALLANGE

HANJI KAL SHAYAD THODA tricky and tough ho gaya question , aaj simple substring() ka basic use hai.

String s = "Python";
System.out.println(s.substring(0, 2) + s.substring(4));


Let's see ab to sahi kr dena tick ๐Ÿ˜…๐Ÿ˜…

2 weeks ago | [YT] | 8

Coding Wallah Sir

๐Ÿ”ฅ Day 7 โ€“ Java Quiz Challenge

Aaj ka sawaal string manipulation lovers ke liye hai โ€” replace bhi hoga, reverse bhi, aur index trap bhi ๐Ÿ˜Ž

String str = "JAVAQUIZ";
str = str.replace("A", "*");
String rev = "";
for (int i = str.length() - 1; i >= 0; i -= 2) {
rev += str.charAt(i);
}
System.out.println(rev);


๐Ÿ’ฌ Dry run karke answer comment karo, guessing allowed nahi ๐Ÿ˜

2 weeks ago | [YT] | 9

Coding Wallah Sir

๐Ÿ”ฅ Day 6 โ€“ Java Quiz Challenge

Aaj ka sawaal Strings + Loops se hai โ€“ apki chhoti si galti aur answer galat ho saktaa hai ๐Ÿ˜
dhyaan se code padhna and solve krna

String str = "CODE";

String result = "";
for (int i = 0; i < str.length(); i++) {
result += str.charAt(i) + "*";
}
System.out.println(result.length() * 2);


๐ŸŽ‰ 15 August ko Java Full Stack Course ka Freedom Offer aayega ๐Ÿš€

2 weeks ago | [YT] | 10

Coding Wallah Sir

๐Ÿ”ฅ Day 5 โ€“ Java Quiz Challenge

Aaj ka sawaal Arrays + Loops se hai โ€” dekhte hain kaun dry run karke sahi answer deta hai

int[] arr = {1, 2, 3, 4, 5};
int sum = 0;
for (int i = 0; i < arr.length; i++) {
if (i % 2 == 0) {
sum += arr[i];
} else {
continue ;
sum -= arr[i];
}
}
System.out.println(sum);

---------
๐Ÿ’ฌ Comment me batana pehle se question ka level badha ha ? Ya fir pr tough kre level ๐Ÿ˜…๐Ÿ˜…

2 weeks ago | [YT] | 6

Coding Wallah Sir

๐Ÿ”ฅ Day 4 โ€“ Java Quiz Challenge

Aaj if-else ka code snippet dekhenge.

zara dhyan se dekho ... aur guess karo output:

int x = 10;
if (x < 10)
System.out.println("A");
else if (x == 10)
System.out.println("B");
else
System.out.println("C");

2 weeks ago | [YT] | 13

Coding Wallah Sir

๐Ÿ”ฅ Day 2 โ€“ Java Quiz Challenge

Aaj ka sawaal Loops (for loop) se hai โ€“ ek chhoti si dry run mistake sab galat kar deti hain ๐Ÿ˜…

๐Ÿ‘‡ Guess the Output:

for (int i = 1; i <= 5; i++) {
if (i == 3) {
continue;
}
System.out.print(i + " ");
}

๐Ÿ’ฌ Comment your answer + dry run explanation if you can ๐Ÿ˜Ž

๐Ÿ”ฅ Daily Quiz Series chal rahi hai โ€“ donโ€™t miss any day!

2 weeks ago | [YT] | 25

Coding Wallah Sir

Java 30 Day's ๐Ÿ”ฅ FIRE QUIZ - Day 2
Hanji, kya haal hai JAVA gang ?

Which of the following is a valid variable name in Java?

3 weeks ago | [YT] | 4