Raghav sir , you are the best 🥺❤️ , please bring the java lecture 3 , I waiting from 4 weeks , mujhe sirf aapka padhaaya hua samajh mein aata h sir , aapke alaawa mujhe kisi aur ka padhaya smjh m nhi aata h mujhe , aap best ho sir ❤️❤️❤️ , please java ki naiyaa paar lgaa do aap hmaara 🥺❤️
int a; // 1. Question --> Negative to Positive and Positive to Negative OR Handle Absolute value; Scanner scanner = new Scanner(System.in); System.out.print("Enter any Number: "); a = scanner.nextInt(); a = -a; System.out.println("Converted Negative to Positive and Positive to Negative : " + a);
i'm a student of pw paid java course but raghav sir's these one shot videos have better explanation than the paid couse. Pw please if possible replace hyder abbas sir with raghav sir from the paid course raghav sir explains way better than the teachers you have in paid course.
package ConditionalsPractice; import java.util.Scanner; public class evenodd { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("Enter A Number: "); int n = sc.nextInt(); if(n % 2 == 0){ System.out.println("The Number You entered is: " + n + " even"); } else{ System.out.println("The number you entered is: " + n + " odd"); } } }
package ConditionalsPractice; import java.util.Scanner; public class Leapyear { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("Enter a year: "); int year = sc.nextInt(); if(year % 4 == 0){ System.out.println("The input you entered is leap year: " + year + " "); } else { System.out.println("The input you entered is not leap year: " + year + " "); } } }
@@radheradhe55903 year ek input hai to user jo bhi input dega to print ke baad user ka input likh k aayega. Like user ne 2024 input diya to print hoga--- The input you entered is leap year: 2024
Hello everyone please give me a suggestion I watched precious lecture and I jumped directly fir this can you anyone suggest me that this I should watch or not because I did not watched manvi mam previous lectures so please suggest anyone
import java.util.Scanner; public class nestedifelsehm { public static void main(String[] args) { Scanner Sc = new Scanner(System.in); System.out.println("Enter ram age: "); int r = Sc.nextInt(); System.out.println("Enter shyam age: "); int s = Sc.nextInt(); System.out.println("Enter ajay age: "); int a = Sc.nextInt(); if (r > s) { if (r > a) { System.out.println(r + ": ram is largest"); } else { System.out.println(a + ": ajay is largest"); } } else { if (s > r) { if (s > a) { System.out.println(s + ": shyam is largest"); } else { System.out.println(a + ": ajay is largest"); } } } } } 😁
Raghav sir aap hero h hmare lie🙏🙏
Yes bro
Bhai aapko pata hai kya 3rd part kaha hai🙏
Raghav sir aap teach karte h to jiyada samjh me aata h ...... Thank you so much Sir .......💫💫❣️❣️❣️❣️
Raghav sir , you are the best 🥺❤️ , please bring the java lecture 3 , I waiting from 4 weeks , mujhe sirf aapka padhaaya hua samajh mein aata h sir , aapke alaawa mujhe kisi aur ka padhaya smjh m nhi aata h mujhe , aap best ho sir ❤️❤️❤️ , please java ki naiyaa paar lgaa do aap hmaara 🥺❤️
@raghav sir you are the best teacher ever seen
your teaching way is best all of youtube channels i found other channels but i could not get but from you i get everything from noke to noke
Sir part 3 revision lekr aayiye please aap se padhne ke baad maja aa jata hai ,interest aa jata hai topic me ❤❤❤❤
If else itna deep... Isse phle khi ni pdha tha sir... Aap great ho❤🔥
Please upload revision 3 video(switch case,slab-wise codes,loops and more)......you teach very well sir...need more videos of yours
Sir pls bring the revision 3 video.... U explain very well sir.... Plz bring it sir
Thanku mam for providing us good videos & thanks to Alakh sir
Sir, kya explain krte ho aap maza aagya
Thanks for practicing ample amount of questions 🙏🙏🙏🙏🙏
Here I'm revising it all from starting for my 11th finals
Sir Java ka "Loops" ka One Shot Video lao
waiting for loop and array lecture
Awesome teaching Raghav sir ❤️👍
Please bring 3rd part sir
best teaching Raghav Sir
Sir you are boss👏👏👌... Sir please need more your class about Java... 🙏🙏🙏
Yes sir 😊
Super sir
Nice Explanation
make video on loops its really help us for your video
I'm coding field Raghav sir is the best
Tq sir ase padane ke liye
sir aap complete java padawo
your teaching way is awesome awesome
Thank you Raghav sir ❤️❤️❤️❤️
Awesome teaching Raghav sir
Sir aap java main loop ka bhi revision Kara do jaldi se and sir please make a discord community for doubts clearing
Best teaching ❤️
int a;
// 1. Question --> Negative to Positive and Positive to Negative OR Handle Absolute value;
Scanner scanner = new Scanner(System.in);
System.out.print("Enter any Number: ");
a = scanner.nextInt();
a = -a;
System.out.println("Converted Negative to Positive and Positive to Negative : " + a);
We want C language part 3
You are the best teacher sir
bhaiya kya sahi padhte ho yaar
maja aa gaya ❤
MCQ question are amazing ❤
Sir one short part 3 kab aayega java ka .
U r great.
🔥....sir please bring the part 3.
Sir C language next lecture Plz..
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int ram, shyam, rahul;
System.out.print("Enter Ram's age: ");
ram = scanner.nextInt();
System.out.print("Enter Rahul's age: ");
rahul = scanner.nextInt();
System.out.print("Enter Shyam's age: ");
shyam = scanner.nextInt();
if ( ram > rahul && ram > shyam){
System.out.println(ram + " Ram is youngest to Rahul and Shyam");
} else if (rahul > ram && rahul > shyam) {
System.out.println(rahul + " Rahul is youngest to Ram and Shyam");
}else {
System.out.println(shyam + " Shyam is youngest to Ram and Rahul");
}
Sir your Explaination is very best 💯
Sir please give notes of this class. Is every one satisfy with me??
Waiting for part 3
i am from pakistan but i like your lectures and i want kotline lecture from your channel kindlu upload it
package Conditionals;
import java.util.Scanner;
public class AbsoluteValue {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("Enter any interger value :");
int n = sc.nextInt();
if (n>0){
System.out.println("Absolute Value: " + n);
}
else{
n=n*(-1);
System.out.println("Absolute Value: " + n);
}
}
}
Raghav sir best
Awesome teaching ❤️
doubt 2:18:37 - 2:29:09
Thank you sir app ka .... One short video is best hi
Sir please bring next video. I m waiting
300
200
Indentation we have to give proper for c variable in last ho.ework problem
nice explanation in whole youtube
Sir ese sbhi topic ka one shot chahiye
When will the 3rd video of this series is coming? Please jaldi video post kariye 🙏🏻
One shot 3 layiye sir🙏
Sir pls Collection framework ap padhaiye pls.. ma'am ka lectures confusing hai
Sir please reply de den kab C language part 3 upload kijiyega ?
Sir timing 02:02:00 par
Aapne bata ki
False && False = False
Jabki medam ne bataya tha ki
False && False = True hota hai👨🏽💻
37:50 How to create shortcut for syntax..
In vs code
THANK YOU SIR
i'm a student of pw paid java course but raghav sir's these one shot videos have better explanation than the paid couse. Pw please if possible replace hyder abbas sir with raghav sir from the paid course raghav sir explains way better than the teachers you have in paid course.
48:13 perimeter of square ids 4*side ie 4*4=16 but u wrote 12
Sir C part3 language next lecture Plz..
Thanku soo soo soo soo much sir
package ConditionalsPractice;
import java.util.Scanner;
public class evenodd {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("Enter A Number: ");
int n = sc.nextInt();
if(n % 2 == 0){
System.out.println("The Number You entered is: " + n + " even");
}
else{
System.out.println("The number you entered is: " + n + " odd");
}
}
}
please teach flutter also
Waiting 🙂🙂🙏
Sir please create a video on array🙂❤❤❤🙏
too good explanation sir
package ConditionalsPractice;
import java.util.Scanner;
public class Leapyear {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("Enter a year: ");
int year = sc.nextInt();
if(year % 4 == 0){
System.out.println("The input you entered is leap year: " + year + " ");
}
else {
System.out.println("The input you entered is not leap year: " + year + " ");
}
}
}
ye "+year+" kyo likhte hai
@@radheradhe55903 year ek input hai to user jo bhi input dega to print ke baad user ka input likh k aayega. Like user ne 2024 input diya to print hoga--- The input you entered is leap year: 2024
3 revision video please🙏
Hello everyone please give me a suggestion I watched precious lecture and I jumped directly fir this can you anyone suggest me that this I should watch or not because I did not watched manvi mam previous lectures so please suggest anyone
Sir please bta dijiye kab upload karenge C language part 3
Thank you sir 😊
sir i am very happy
Plese sir next one lectures ❤️❤️
Sir please bring the part 3
Sir we need third one shot
Sir part 3 kab aayega Java ka. Waiting....
Sir next video lecture in Java please
day 2
27:07
day 3
35:12
Maja aaya pura 3 hours ka class kiye
Thanks for watching
Sir please C language ka part 3 jaldi se upload kijiye
Part 3 sir please
Sir please part 3
import java.util.Scanner;
public class nestedifelsehm {
public static void main(String[] args) {
Scanner Sc = new Scanner(System.in);
System.out.println("Enter ram age: ");
int r = Sc.nextInt();
System.out.println("Enter shyam age: ");
int s = Sc.nextInt();
System.out.println("Enter ajay age: ");
int a = Sc.nextInt();
if (r > s) {
if (r > a) {
System.out.println(r + ": ram is largest");
} else {
System.out.println(a + ": ajay is largest");
}
} else {
if (s > r) {
if (s > a) {
System.out.println(s + ": shyam is largest");
} else {
System.out.println(a + ": ajay is largest");
}
}
}
}
}
😁
use older instead of larger because u.k.w.i.m😜
Sir please upload part 3 asap!
2:29:22 / 3:02:42
Raghav sir Java per aur bhi video banaiye
Sir, windows mein template kaise banaye
Sir loop ka video bhi lav please
Sir please C language part 3
at 1:50:17 can we put the condition of n%15 on the first if and put the && of 3 and 5 on the inner loop?
1:32 what if all numbers are equal
anybody can understand easily
Sir plz NIMCET course on college wallah
notes kaise download kare pw skill ke website se.
Sir python ki bhi class le liya karo
Bhai Java in one shot ka 3rd part bhi le kr aye please 🙏🙏🙏🙏
It's in my channel
Sir please C language part 3 jaldi
True 50 True
Sir assignment questions kaha mile ge
Thx sir you are osm