1:43:48 Scanner scan = new Scanner(System.in); System.out.println("Enter the Day"); int Days = scan.nextInt(); switch (Days){ case 1: System.out.println("Sunday"); break; case 2: System.out.println("Monday"); break; case 3: System.out.println("Tuesday"); break; case 4: System.out.println("Wednesday"); break; case 5: System.out.println("Thursday"); break; case 6: System.out.println("Friday"); break; case 7: System.out.println("Saturday"); } Lots of love from Pakistan i,ve never seen before a teacher like you !
all rules : / Rules for constructing name of variables in Java 30 31 1. Can contain digits, underscores, dollar signs, letters 32 2. Should begin with a letter, $ or 33 3. Java is case sensitive language which means that harry and Harry are two different variables altogether. 34 35 4. Should not contain whitespaces 36 5. You cannot use reserved keywords from Java */ i am from pakistan too
Thanks Harry bhai aapki wajah se hi ho paya ye sab Quick quiz: switch(days){ case 1: System.out.println("Monday"); break; case 2: System.out.println("Tuesday"); break; case 3: System.out.println("Wednesday"); break; case 4: System.out.println("Thursday"); break; case 5: System.out.println("Friday"); break; case 6: System.out.println("Saturday"); break; case 7: System.out.println("Sunday"); break; default: System.out.println("That isn't a number of day in a week"); }
There was no need of scan2 variable at 2:24:37 By the way brother, you know how to teach in a simple but effective way. Thanks a Lot! Debargha Dasukil West Bengal
bruh my exams were literally in 2 days with the help of you i got a job ,then they told me learn new language and perform in exams here i am learning java and i have learned it within a day thank you bro lots of love
My name is Manwika I am from Ghazipur, UP I am in class 8 and I have just started to study programming. I was really very confused but your video clarified all my doubts. Thank U sir 😀😀😀😀
you are awsome my friend always make me understand every thing. And you doesnt miss a single thing as like a teacher should not do thank you .yes all of us want to see the complete course of java. Thank You. Thank You and thank you are diffrent varialbles in java.
System.out.print("enter any number according to days "); int day = sc.nextInt(); switch (day) { case 1:System.out.println ("Today is Sunday"); break; case 2: System.out.println ("Today is Monday");//note if we do not use break then all casess will print break; case 3:System.out.println ("Today is Tuesday"); break; case 4:System.out.println ("Today is Wednesday"); break; case 5:System.out.println ("Today is Thursday"); break; case 6:System.out.println ("Today is Friday"); break; case 7:System.out.println ("Today is Saturday"); break; default: System.out.println("give your suggestion"); } LOO HARRY BHAI ,YOUR QUIZ. YOU ARE A GOOD TEACHER.
Brother! I am Navneet from Mumbai.I am in 9th Class and I am learning Java programming in school. This Java programming video it helps me a lot!! Thank you brother for making this video!! 🙂👍🏻🙏🏻
Thank you so much for this awesome video class Test { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("TYPE YOUR NUMBER"); int a = sc.nextInt(); switch(a){ case 1 : System.out.println("sunday"); break; case 2 : System.out.println("monday");break; case 3 : System.out.println("tuesday");break; case 4 : System.out.println("wednesday");break; case 5 : System.out.println("thursday");break; case 6 : System.out.println("friday");break; case 7 : System.out.println("saturday");break; } } }
Thank you, sir, I solved the quick quiz you told and it was great. As I had learned HTML from your channel so I came to this tutorial even after it was two years old
I just completed this java course and it took me around 7-8 hours in 4 day (2 hrs. per day). I have also make notes through this video and other websites for more resources. This video helped me a lot. Harry you are awesome and thanks for this valuable tutorial. I really appreciate your efforts.
Yeah! I agree with that, but that's only reasonable when you are learning to code. After that, on advanced level, productivity matters more than anything and that's what these extensions ensure in the first place.
I think in beginner level we can use extension. The one who just start learning programming concepts will suffer a lot with such small small things and this will become scarry and promote to quite coding
you are amazing bro thanks for this core java lecture now i can understand java very easily and helpfully if you are a teacher in any of the institute then you will get the best teacher in the world i learn HTML, C language from your videos thank you bro love from kalyan. **QUIZ** Scanner scan = new Scanner(System.in); System.out.println("Enter Day"); int day = scan.nextInt(); switch (day){ case 1: System.out.println("the first day is sunday"); break; case 2: System.out.println("the second day is monday"); break; case 3: System.out.println("the third day is tuesday"); break; case 4: System.out.println("the fourth day is wednesday"); break; case 5: System.out.println("the fifth day is thursday"); break; case 6: System.out.println("the sixth day is friday"); break; case 7: System.out.println("the seventh day is saturday"); break; default: System.out.println("buy a calender"); }
Kya Baat hai Gurudev... Gazab samjha rahe hain.... Main iss ka "J" v nahi janta, but lagta hain sikh sakta hun... Baad me mujhe apne bachche ko sikhana hai
Create a variable name to store your name Create a variable age to store your age Print the values stored in the variable on one line followed by the type of the variable in the next line. plzzz explain this....
Scanner scan = new Scanner(System.in); System.out.println("Enter week number "); Int week = scan.nextInt(); System.out.println(week); switch (week){ case 1: System.out.println("Monday"); break; case 2: System.out.println("Tuesday"); break; case 3: System.out.println("Wednesday"); break; case 4: System.out.println("Thursday"); break; case 5: System.out.println("Friday"); break; case 6: System.out.println("Saturday"); break; case 7: System.out.println("Sunday"); break; default: System.out.println("Not Match");
Harry bhai ..you r the best sach me .. mai commerce se hu and average student hu.. bt jb se mai apke apke videos dekh rha hu ..mujhe lgne laga h mai v coding kr skta hu... thank u free me aise courses lake help krne k liye .. kash k ekbar apse baat baat kr pata ...
%= The %= operator is similar to the += operator we looked at earlier. It performs modulus division on a variable with a literal or another variable and returns the result into the variable on the left of the operator.
Switch (day){ case 1: System.out.println("Today is Monday"); break; case 2: System.out.println("Today is Tuesday"); break; case 3: System.out.println("Today is Wednesday") case 4: System.out.println("Today is Thursday") case 5: System.out.println("Today is Friday") case 6: System.out.println("Today is Saturday") case 7: System.out.println("Today is Sunday")
Athar Rasool from Pakistan ❤ You've earned my respect bro I'm a freshie CS student in 2nd semester learned a lot of stuff throughout your videos. Doing a great job keep it up. I would suggest you that your upcomings videos should be about AI, maybe machine learning or data science.
Switch (weekend) Case 1: System.out.println(Monday)break; Case 2: System.out.println(Tuesday)break; Case 3: System.out.println(Wednesday)break; Case 4: System.out.println(Thursday)break; Case 5: System.out.println(Friday)break; Case 6: System.out.println(Saturday)break; Case 7: System.out.println(Sunday)break; Default:System.out.println(Wrong choice)break; Very good tutorial Next time please use data input stream method
*= same variable mai assigned value ko multiply kar dega, fir /= same variable mai assigned value se divide kar dega aur %= same variable mai modulo operation perform karega with assgined variable
Muhammad PM From Calicut, Kerala I am from arts field, I was zero in programming But now I can say any I know programming that’s only bcz of my Harry bhai Thanks from the bottom of heart
sout ("Ap Baooooot 😅 Achw sekhata ho Harry Bhi😍") Even i started from ABC of java and Now i am writing code BY myself after watching your tutorials... Love from Pakistan...😍
Just a Suggestion Harry, you should make quick revisions videos for interviews or exam vivas on programming languages like C, Java and python. A quick revisions of all Data types, variables, basics of that particular language, OOPS concepts(without programs). That will be so beneficial. I ALREADY refer you cheat sheets, this will work as a bonus for as!! 30min video of each programming language, for people who already knw the language this will just be a revision for them🤩
My java completely washed away , Came for this course for quick revision , and its worth for both a beginner and one who looking for brushing up the dust On his JAVA core.
Switch (days) { Case 1: System.out.println("Sunday"); break; Case 2: System.out.println("monday"); break; Case 3: System.out.println("tuesday") break; Case 4: System.out.println("wednesday") break; Case 5: System.out.println("thursday") break; Case 6: System.out.println("friday") break; Case 7: System.out.println("saturday") break; default: System.out.println("invalid data") }
Sir I am kunal from Aurangabad. Sir Java ke full tutorials ki jarurat hai aur usme theory bhi jaruri hai thodi faar so plzzzz sir .Mai aasha krta hu ki aap jarur banaoge
1:44:34 Scanner scan = new Scanner(System.in); System.out.println("Enter Input"); int input = scan.nextInt(); switch (input) { case 1: System.out.println("Sunday"); break; case 2: System.out.println("Monday"); break; case 3: System.out.println("Tuesday"); break; case 4: System.out.println("Wednesday"); break; case 5: System.out.println("Thursday"); break; case 6: System.out.println("Friday"); break; case 7: System.out.println("Saturday"); break; default: System.out.println("You didn't match any of the Cases"); }
25:08 Harry bhai in every tutorial yato aapko python aati hai ya nahi aati Btw Thank you by your channel I learnt web developement, python, tkinter, pygame, django, flask and hope I will learn more from this channel in future, A very big thanks to you.
Hello Sir, your videos are really good. I am very much new to software development and a fresher to Java. Can you please make a complete course video on Java same like how you made for Python
your channel is just awesome and thank you very much for sharing your knowledge with us i'm so inspired from your channel that i've also started a youtube channel to teach Android coding and one day i'll be as confident as you ...Love you Harry Bhai
hello Harry, I am a mechanical engineer and I am learning java with the help of your videos and you made the coding very easy. thank you so much
Me 2 bro
where are you now ?? in your journey ??
You explained in 19 minutes what my teacher took 2 months to do, and I didn’t even understand what she said 🤣
True 🖤
And 3 year for whole video
Same with me 😄😄😄
@@helloitshecker hlo bro... U r pubg lover
@@helloitshecker me bhi hu.. Pubg lover... Tum insta use krte ho... Singhhansy naam se insta h...
I m in the 3rd year CSE but aj merko programming language ka real meaning smjh aya ,
Thanks to Harry guru ji🙏
Bro aap kha se ho
@@singhhansy udaipur
Bohot nalla engineer hai bhai tu
@@satyambhat3540 thnks bhai aapne engineer to bola chahe wo kaisa bhi ho...
@@satyambhat3540 😂 bht shi
1:43:48
Scanner scan = new Scanner(System.in);
System.out.println("Enter the Day");
int Days = scan.nextInt();
switch (Days){
case 1:
System.out.println("Sunday");
break;
case 2:
System.out.println("Monday");
break;
case 3:
System.out.println("Tuesday");
break;
case 4:
System.out.println("Wednesday");
break;
case 5:
System.out.println("Thursday");
break;
case 6:
System.out.println("Friday");
break;
case 7:
System.out.println("Saturday");
}
Lots of love from Pakistan i,ve never seen before a teacher like you !
all rules : / Rules for constructing name of variables in Java 30 31
1. Can contain digits, underscores, dollar signs, letters 32
2. Should begin with a letter, $ or 33
3. Java is case sensitive language which means that harry and Harry are two different variables altogether. 34 35 4. Should not contain whitespaces 36 5. You cannot use reserved keywords from Java */
i am from pakistan too
Thanks Harry bhai aapki wajah se hi ho paya ye sab
Quick quiz:
switch(days){
case 1:
System.out.println("Monday");
break;
case 2:
System.out.println("Tuesday");
break;
case 3:
System.out.println("Wednesday");
break;
case 4:
System.out.println("Thursday");
break;
case 5:
System.out.println("Friday");
break;
case 6:
System.out.println("Saturday");
break;
case 7:
System.out.println("Sunday");
break;
default:
System.out.println("That isn't a number of day in a week");
}
You explain it quite good that everyone can understand even the person who know nothing about programming.
Brother pls full course of java ,
Advance java
Humble request 🙏
Hats off to u 💚
A full-fleged tutorial playlist is indeed needed.
full course java like python of Harry bhai is uploaded on coding aliens , he exaust you with lot of challenges and stuff😂😂😂
Arnav verma
Punjab INDIA
Bhai java application android studio mai kaise chalate hai please i am new in java language and Android developer.
@@sbtutorials5939 bhai android ma decorder use kr lo
There was no need of scan2 variable at 2:24:37
By the way brother, you know how to teach in a simple but effective way. Thanks a Lot!
Debargha Dasukil
West Bengal
what is the right way? does it work without scan2 ?
i got it.. we dont have to write ( Scanner scan=new Scanner(System.in); ) twice.
thanks
Please add full course of JAVA, your teaching style is very comfortable for us.
You are very good teacher.
And Thanks for this crash course.
you are a really good teacher, hats off to you!!!!!
Name Parveen
From Haryana
@@krishsaini04 😆😆😆🤣
do you play minecraft.
@@lavagamerz4995 bro this is coding and hats off is a idom
Ok
bruh my exams were literally in 2 days with the help of you i got a job ,then they told me learn new language and perform in exams here i am learning java and i have learned it within a day thank you bro lots of love
Best tutorial for the people who already know any one programming language and want to switch into java. Well explained 💯✅
Agree
The first programming video i have fully completed . Thank u harry !
did you become a programer
Programer ka pta nhn pr 1 video se designer ban gya h banda
Online lecture ignore karne ke baad yaha aane vale students presentii please 😂😂
🙋
👋
@@sxhil.d3v I want to tell you that you are serious about your future 🔥😇😅that's why you are here!! So keep it up!! ✌
@VloG HuBYT I want to tell you that you are serious about your future 🔥😇😅that's why you are here!! So keep it up!! ✌
Haha sahi hai haha
i am a nontechnical,with help of your videos i am able to unerstan java very eaisly...Great Video.
My name is Manwika
I am from Ghazipur, UP
I am in class 8 and I have just started to study programming. I was really very confused but your video clarified all my doubts. Thank U sir 😀😀😀😀
You can contact me for more details
bahut acha keep it up
you are awsome my friend always make me understand every thing. And you doesnt miss a single thing as like a teacher should not do thank you .yes all of us want to see the complete course of java. Thank You.
Thank You and thank you are diffrent varialbles in java.
00:00 - Tutorial Introduction
00:13 - Downloading Java JDK
00:41 - Downloading Java IDE (IntelliJ)
02:46 - Installing Java JDK
04:29 - Installing IntelliJ IDEA
06:04 - Creating a new project
11:07 - Running first program
12:16 - Understanding our first program
17:54 - Comments
19:50 - Programming Basics
21:54 - Variables
40:13 - Primitive & Non-primitive data types
49:58 - Operators
01:07:04 - Taking user input
01:12:37 - String Methods
01:23:25 - Math class in Java
01:27:59 - Conditional Statements (If-else)
01:39:24 - Switch Statements
01:43:48 - Quick Quiz
01:45:05 - Loops (Iterative statements)
01:56:20 - Break & Continue statements
02:01:10 - Arrays
02:11:30 - Try-Catch
02:16:48 - Methods
02:19:25 - Mini-project (Calculator)
02:29:08 - Sum-up & where to go from here
iska kya kam??????
why??????
@Anushtubh Kale kya?
@Anushtubh Kale uska old version ka application hoga tabhi use nhi pata...😅
Thanks
Most important one
20:58 😂
Ganda ishara 🥴😂
Good and quick tutorial for people learning java after learning python and knowing basics like comments and all
System.out.print("enter any number according to days ");
int day = sc.nextInt();
switch (day)
{
case 1:System.out.println ("Today is Sunday");
break;
case 2:
System.out.println ("Today is Monday");//note if we do not use break then all casess will print
break;
case 3:System.out.println ("Today is Tuesday");
break;
case 4:System.out.println ("Today is Wednesday");
break;
case 5:System.out.println ("Today is Thursday");
break;
case 6:System.out.println ("Today is Friday");
break;
case 7:System.out.println ("Today is Saturday");
break;
default:
System.out.println("give your suggestion");
}
LOO HARRY BHAI ,YOUR QUIZ.
YOU ARE A GOOD TEACHER.
Apke charan kaha hai prabhu 🙏🏻
Thank u so much 😭
Idhar hai
@@SK-jf3mm 🤣🤣 🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣 🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣 🤣🤣 🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣 🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣
😂🤣
@Fact World Bhai hath bhi le ate ashirwaad mil jata 🙂
@@helloitshecker 🤣🤣🤣😇🙄🙄🙄😂😂😂😂😂🙄🙄⚽
TimeStamps:
00:00 - Tutorial Introduction
00:13 - Downloading Java JDK
00:41 - Downloading Java IDE (IntelliJ)
02:46 - Installing Java JDK
04:29 - Installing IntelliJ IDEA
06:04 - Creating a new project
11:07 - Running first program
12:16 - Understanding our first program
17:54 - Comments
19:50 - Programming Basics
21:54 - Variables
40:13 - Primitive & Non-primitive data types
49:58 - Operators
01:07:04 - Taking user input
01:12:37 - String Methods
01:23:25 - Math class in Java
01:27:59 - Conditional Statements (If-else)
01:39:24 - Switch Statements
01:43:48 - Quick Quiz
01:45:05 - Loops (Iterative statements)
01:56:20 - Break & Continue statements
02:01:10 - Arrays
02:11:30 - Try-Catch
02:16:48 - Methods
02:19:25 - Mini-project (Calculator)
02:29:08 - Sum-up & where to go from here
thank you for coping time stamps from description to comments
@@rabbanali9782 yes 😂😂
02:47
Hk
@@rabbanali9782 🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣
Best youtuber who gave us everything fir free 🙏🏻🙌🏻🙌🏻🙌🏻
Manish pandey
3 months ago
Brother pls full course of java ,
Advance java
Humble request 🙏
Hats off to u
Brother! I am Navneet from Mumbai.I am in 9th Class and I am learning Java programming in school. This Java programming video it helps me a lot!! Thank you brother for making this video!! 🙂👍🏻🙏🏻
Bro can you send me email
Herry sir be honest you are a good teacher ❤️❤️🙏🙏 for us.
God bless you ❤️❤️❤️
Thank you so much for this awesome video
class Test {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("TYPE YOUR NUMBER");
int a = sc.nextInt();
switch(a){
case 1 : System.out.println("sunday"); break;
case 2 : System.out.println("monday");break;
case 3 : System.out.println("tuesday");break;
case 4 : System.out.println("wednesday");break;
case 5 : System.out.println("thursday");break;
case 6 : System.out.println("friday");break;
case 7 : System.out.println("saturday");break;
}
}
}
❤️Pata hai unlike wala kon hai
🙄🙄Wh junior,byjus,vedentu.
❤️❤️Love you Harry❤️❤️ bhaiya 🙏👍
Thanks a lot Harry bhai.....It's just because of you that I was able to slove all programs in my exam
By just seeing your video in one day
Things my teacher takes to teach whole year he only tought me in Just 2:30 hours
thats right
Which class u r in.
@@rohitprasad5730 ukg
@@ReflexWalaXD studying java in ukg 😂😂😂
@@Depressed_soul01 typical icse board
HARRY BHAIYA MENE EKDUM ACCURATE DAYS OF THE WEEK DALA OR RESULT OUTPUT EKDUM CORRECT AA RAHA HAI 🎉💝
Thank you, sir, I solved the quick quiz you told and it was great. As I had learned HTML from your channel so I came to this tutorial even after it was two years old
I just completed this java course and it took me around 7-8 hours in 4 day (2 hrs. per day). I have also make notes through this video and other websites for more resources.
This video helped me a lot.
Harry you are awesome and thanks for this valuable tutorial. I really appreciate your efforts.
Can we follow this video for beginners
@@weeest7869 yes
What after this? Does Harry maked video of Advance java in 2hour?
One advice:- if you want to enhance your typing speed and memory to learn all the code, you should not use extension.
Thanks, it may help me in the future :)
Yeah! I agree with that, but that's only reasonable when you are learning to code. After that, on advanced level, productivity matters more than anything and that's what these extensions ensure in the first place.
I think in beginner level we can use extension. The one who just start learning programming concepts will suffer a lot with such small small things and this will become scarry and promote to quite coding
op[[[[p
Thank you so much harry ..i understand java language .. I am live muzaffarnagar Uttar pradesh . UP 12🙏🏻
Thank You loved the course.This was my first programming language
you should have started with c and c++
at 2:14:00 mashum line print nahi ho paayi toh iss masum line ko aur masumiyat dene ke liye ..... this is so hilarious nailed it bro :) hahaha
Bro yeh java ki complete video h?
Bhai ye class 12 wale dekh sakte main kabi program nhi banaye main bahot pareshan hoon
@@harshchandel3408 don't worry...watch the complete series of java course (code with harry)
Never watched such an amazing tutorial on java by such a fantastic teacher 😍
@Raj Singh first go for c++ and learn the concets of classes and object
you are amazing bro thanks for this core java lecture now i can understand java very easily and helpfully
if you are a teacher in any of the institute then you will get the best teacher in the world
i learn HTML, C language from your videos
thank you bro love from kalyan.
**QUIZ**
Scanner scan = new Scanner(System.in);
System.out.println("Enter Day");
int day = scan.nextInt();
switch (day){
case 1:
System.out.println("the first day is sunday");
break;
case 2:
System.out.println("the second day is monday");
break;
case 3:
System.out.println("the third day is tuesday");
break;
case 4:
System.out.println("the fourth day is wednesday");
break;
case 5:
System.out.println("the fifth day is thursday");
break;
case 6:
System.out.println("the sixth day is friday");
break;
case 7:
System.out.println("the seventh day is saturday");
break;
default:
System.out.println("buy a calender");
}
System.out.println("Hello")
String name = "Antariksh"
System.out.println(name)
// I have done the quick quiz, works well.
Mam...java sikhe r ki sikhte hbe..job pate hole?
The best Java tutorial on RUclips.
Thank You sir.
I could Understand Everything.
I am Aditya Shukla.
From Lucknow UP.
Excellent short course for understanding and familiar with basic java. Thank you, Harry.
You have completed my whole class 9 computer syllabus in just 1 vedio😅😅......thanks a lot
Just amazing, never expected understanding java will be so easy and en-joyful.
Your delivery of concepts is so crystal and clear.. 🔝🔝
Hats off.. ❤️❤️
Bhai ye class 12 wale dekh sakte main kabi program nhi banaye main bahot pareshan hoon
@@harshchandel3408 ji bhai
@@harshchandel3408 main 9th main hun phir bhi dekh rha hun
Kya Baat hai Gurudev...
Gazab samjha rahe hain....
Main iss ka "J" v nahi janta, but lagta hain sikh sakta hun...
Baad me mujhe apne bachche ko sikhana hai
Sikh gya bhai, 2 ghante me
Create a variable name to store your name
Create a variable age to store your age
Print the values stored in the variable on one line followed by the type of the variable in the next line.
plzzz explain this....
Hey! Harry bhai i had done the task that you give (topic - Print Sunday To Monday)
Thank You Brother for giving us all these tutorials
Best Java Tutorial I have ever Watched! Explanations were very easy to understand! Thanks a lot Harry! :D
Scanner scan = new Scanner(System.in);
System.out.println("Enter week number ");
Int week = scan.nextInt();
System.out.println(week);
switch (week){
case 1:
System.out.println("Monday");
break;
case 2:
System.out.println("Tuesday");
break;
case 3:
System.out.println("Wednesday");
break;
case 4:
System.out.println("Thursday");
break;
case 5:
System.out.println("Friday");
break;
case 6:
System.out.println("Saturday");
break;
case 7:
System.out.println("Sunday");
break;
default:
System.out.println("Not Match");
Cool
Very lolololo coding you Nawaz Anwar style mat mar
@@bhaduaria wtf
Nice coding
@arvind Kumar👎👎👎
Harry bhai ..you r the best sach me ..
mai commerce se hu and average student hu.. bt jb se mai apke apke videos dekh rha hu ..mujhe lgne laga h mai v coding kr skta hu... thank u free me aise courses lake help krne k liye ..
kash k ekbar apse baat baat kr pata ...
%=
The %= operator is similar to the += operator we looked at earlier. It performs modulus division on a variable with a literal or another variable and returns the result into the variable on the left of the operator.
Yes you are right
51:40 - very presentable
whole code it is actually
I am Shubham Sawant from Satara,Maharashtra
Loved ur teaching
Int a= 25; int b=25;
System.out.println(a*b);
System.out.println(a/b);
System.out.println(a%b);
switch (day) {
case 1;
Sout("Today is Monday");
Break;
In case 1; remove that semi colon and add a :
@@RandomGuy-yl5im ah yes
@@tanmoypaul7698 worked?
And remove that sout and write System.out.println() or System.out.print() ... anything as ur choice
@@tanmoypaul7698 from your avatar I think you are a college student and I am a 13 years kid of India solving your doubts lol
Sir your teaching is too good 👍
Not a single part is their to skip in the lecture. Learn a lot from this java tutorial ❤thank u
ruclips.net/video/Q-JUcsSuY8E/видео.html
Can you please provide the link to the sourse code because now the link provided for source code is not working.
Oh my God the way you teach is fantastic really magical
He is the best teacher in my life.♥️♥️♥️
Love from Bangladesh 🇧🇩
Smooth. I want to learn like this effortlessly.
Thank you so much..💖💖💖
Bhai ye class 12 wale dekh sakte main kabi program nhi banaye main bahot pareshan hoon
Bro I am Ayush Swami From Jaipur Raj.
I am in class 10.....! I had learnt Python by watching your videos.....!!! They are very helpful.....!!!!!!!
really
i am in 12th still learning basics of programming
Enjoying this tutorial alot able to solve the quiz and feeling so satisfied thanks alott sir
@CodeRains Sk i can't understand
Cheat sheet bro😅😀...and thank you so much for such an amazing lecture.
I want say Thank You sir from Bottom of My heart ❤️
i learn lot's of things from you sir
Thankyou so much .. i really appreciate when you put java complete course on your channel...thanks
I was afraid of JAVA. After watching your video, I thought, why did I not started it before. Excellent dear.
Bhai, you are God to me, I dont have enough money for coachings....your videos increase my confidence
Switch (day){
case 1:
System.out.println("Today is Monday");
break;
case 2:
System.out.println("Today is Tuesday");
break;
case 3:
System.out.println("Today is Wednesday")
case 4:
System.out.println("Today is Thursday")
case 5:
System.out.println("Today is Friday")
case 6:
System.out.println("Today is Saturday")
case 7:
System.out.println("Today is Sunday")
use break in all cases
Athar Rasool from Pakistan ❤
You've earned my respect bro I'm a freshie CS student in 2nd semester learned a lot of stuff throughout your videos. Doing a great job keep it up. I would suggest you that your upcomings videos should be about AI, maybe machine learning or data science.
kashmir wapis krr
Switch (weekend)
Case 1: System.out.println(Monday)break;
Case 2: System.out.println(Tuesday)break;
Case 3: System.out.println(Wednesday)break;
Case 4: System.out.println(Thursday)break;
Case 5: System.out.println(Friday)break;
Case 6: System.out.println(Saturday)break;
Case 7: System.out.println(Sunday)break;
Default:System.out.println(Wrong choice)break;
Very good tutorial
Next time please use data input stream method
*= same variable mai assigned value ko multiply kar dega, fir /= same variable mai assigned value se divide kar dega aur %= same variable mai modulo operation perform karega with assgined variable
Thank you Harry for teaching java so well.
👍
Mechanica student l k liye easy hai a tutorial????
Muhammad PM
From Calicut, Kerala
I am from arts field, I was zero in programming
But now I can say any I know programming that’s only bcz of my Harry bhai
Thanks from the bottom of heart
awesome sir, Your way of teaching is very good. Sir, keep giving information related to Java.
Aoa. I am watching in 2022 from Pakistan and honestly saying it's really helpful.
I will be learning java with you.
Your tutorials are very long but they are worth watching. you really helped me to learn in a faster way.👍
switch (day)
{
caase 1:
sout("today is Sunday");
break;
case 2:
.........Monday........
break;
case3"........
.
.
.
.
.case 7:
sout("today is Saturday");
break;
default;
}
south("I remember that");
}
}
JAVA ka course abhe tak nahi aya?
By the way thanks for this Amazing JAVA crash course :)
ruclips.net/channel/UCrdSfU6svZJFZCQjJEWN9OQ
ruclips.net/video/HcKIrbH-jgg/видео.html
Thanks Harry bhaiya for such lecture video....it helped me in my interview and got selected.....you made my backbone for java ❤️
Best of luck bro for your self-dependency.....
@@samayharsh6027 thanks bro ❤️
Where u got placed bro!?
sout ("Ap Baooooot 😅 Achw sekhata ho Harry Bhi😍") Even i started from ABC of java and Now i am writing code BY myself after watching your tutorials... Love from Pakistan...😍
Just a Suggestion Harry, you should make quick revisions videos for interviews or exam vivas on programming languages like C, Java and python. A quick revisions of all Data types, variables, basics of that particular language, OOPS concepts(without programs). That will be so beneficial. I ALREADY refer you cheat sheets, this will work as a bonus for as!! 30min video of each programming language, for people who already knw the language this will just be a revision for them🤩
Where is cheatsheet?
Pls explain Indian missile technology prudvi official🍀🍀sir ya so much for sairam ITfor cse🙏🏿stnds
@@prateekrohatgi6100 is it sufficient to watch this video?
@@sayedtalhahusainipeerzade1880 no. you have to practice as well
My java completely washed away , Came for this course for quick revision , and its worth for both a beginner and one who looking for brushing up the dust On his JAVA core.
♥️ Thank you sir ♥️, I am a dumb student and even can't write a factorial program but this help me & place a seed of hope that i can be a coder.🙏🙇🙏
in which year are you cuurently studying?
@@sush9889 now i am in 3 year
@@raghav042 i m also in 3rd year....best wishes for future
@@sush9889 thank you
From which city are you
Sir how to use counter function in Java. Can you please help me out. However, this course was very helpful to me
hello im jons from gujarat, codding is very easy thanks for this.
Sir java par full tutorials
Banyo 🤗
Sir apny is video me kha tha k java ki aur full (Detail) video bnao gha
Sir please Reply ap kab bna ly gy ???
From
Adeel Ahmed
neeshant selukar nagpur
the way of teaching is so awesome.
Harry Bhaiya, Your teaching skills are awesome.
Switch (days) {
Case 1:
System.out.println("Sunday");
break;
Case 2:
System.out.println("monday");
break;
Case 3:
System.out.println("tuesday")
break;
Case 4:
System.out.println("wednesday")
break;
Case 5:
System.out.println("thursday")
break;
Case 6:
System.out.println("friday")
break;
Case 7:
System.out.println("saturday")
break;
default:
System.out.println("invalid data")
}
Sir I am kunal from Aurangabad.
Sir Java ke full tutorials ki jarurat hai aur usme theory bhi jaruri hai thodi faar so plzzzz sir .Mai aasha krta hu ki aap jarur banaoge
ruclips.net/video/HcKIrbH-jgg/видео.html
1:44:34
Scanner scan = new Scanner(System.in);
System.out.println("Enter Input");
int input = scan.nextInt();
switch (input) {
case 1:
System.out.println("Sunday");
break;
case 2:
System.out.println("Monday");
break;
case 3:
System.out.println("Tuesday");
break;
case 4:
System.out.println("Wednesday");
break;
case 5:
System.out.println("Thursday");
break;
case 6:
System.out.println("Friday");
break;
case 7:
System.out.println("Saturday");
break;
default:
System.out.println("You didn't match any of the Cases");
}
Harry Bhai maine aapka Quiz Question solve kiya hain... Alhamdulillah Bht Acha laga ye Solve Karke 🌹💓💝
25:08 Harry bhai in every tutorial yato aapko python aati hai ya nahi aati
Btw Thank you by your channel I learnt web developement, python, tkinter, pygame, django, flask and hope I will learn more from this channel in future,
A very big thanks to you.
Bro kuch implement kra ya nhi itna knowledge ka?
System.out.println("Thanks Harry Sir");
public static void great( ){
Teaching A+ = new.Teaching;
A+.greatestcoder( );
System.out.println("code with harry is" + A+.greatestcoder)
}
@@alvinmanoj70
Yaar Teaching class kis liye use hota hai
@@gopal_software applaud ko print karta hai
@@gopal_software System.out.print("THE BEST TECHER") woh
@@alvinmanoj70
Ok
Hello Sir, your videos are really good. I am very much new to software development and a fresher to Java. Can you please make a complete course video on Java same like how you made for Python
DONE WITH SWITCH CASE PROGRAM, Thank you Harry bhai
your channel is just awesome and thank you very much for sharing your
knowledge with us i'm so inspired from your channel that i've also started a
youtube channel to teach Android coding and one day i'll be as confident as you ...Love you Harry Bhai
Its a great session, Thank you Harry
1:29:00 se 1:34:00 tak so gaya tha mei. Fir dobara dekhna pada😁.
Bhai mai bhi soh gaya tha dekhte dekhte phir mujhe bhi dubara se dekhna pada
@@कत्यूषा same mere ko bhi neend agai ...esa lg raha tha maths phad raha hu
I need team member
@@xompguru720 ✋🏻
Nice
i have done this quick quiz of switch statement successfully.
thank you sir 🙏🙏