For Daily Memes and other Factual Content Follow: instagram.com/codewithharry/ Jo Jo instagram use karte ho aa jao. Waha maze karte hain! Like button yaad se chatkaa dena! Next kis topic par video banau? Code With Harry par aap agla one video konsa dekhna chahte ho?
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"); }
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
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.
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
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
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"); }
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!! 🙂👍🏻🙏🏻
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 😀😀😀😀
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
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.
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.
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 ...
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.
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.
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🤩
Harry bhai bht badiya tha sab clear hogayab my mindset before this lecture was I used to hate java but now its interesting... ThankYou so much for this brother keep doing keep growing
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
%= 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.
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");
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
Quick quiz Answer:👇 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner x = new Scanner(System.in); int ent; System.out.print("Enter number between 1 to 7: "); ent = x.nextInt(); switch (ent){ 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("Invalid input"); //Credit: codewithharry // I am 14 years old and watching your videos. Now I understood lot of things!! Thanks a lot. } } }
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
@@harshchandel3408 aaram se dekho bhai. Koi tension nhi. Harry bhai ki video playlist pr jao aur jo programming achi lgti h ja kr dekh lo. Har ek bhut bdhiya h.
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
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"); }
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...😍
1:44:42 package test; import java.util.Scanner; public class main { public static void main(String[] args){ Scanner scan = new Scanner(System.in); System.out.println("Enter The Day Key"); int date = scan.nextInt(); switch (date){ 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("Please enter a number from 1 to 7"); } } }
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")
For Daily Memes and other Factual Content Follow: instagram.com/codewithharry/
Jo Jo instagram use karte ho aa jao. Waha maze karte hain!
Like button yaad se chatkaa dena!
Next kis topic par video banau? Code With Harry par aap agla one video konsa dekhna chahte ho?
Haris bhai jesy python for absolute beginners bnaai hai wsy hi Java ki b full series bna dain please...
Ya agr ho saky to data sciences aur artificial intelligence py series bna dain
sir java with DS and Algorithum par purii series ban do bhai bhot demand hai college placements ke liye please bhai please bhai
Aise topic par video banao jiski is time par demand ho aur bhai tum great ho bhai aise tarike se koi nhi padhata love u bhai
android development with java and android studio
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 ??
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 🥴😂
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
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 🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣
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)
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
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");
}
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
You explain it quite good that everyone can understand even the person who know nothing about programming.
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
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...
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.
Best Java Tutorial I have ever Watched! Explanations were very easy to understand! Thanks a lot Harry! :D
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.
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
HARRY BHAIYA MENE EKDUM ACCURATE DAYS OF THE WEEK DALA OR RESULT OUTPUT EKDUM CORRECT AA RAHA HAI 🎉💝
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
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
Best tutorial for the people who already know any one programming language and want to switch into java. Well explained 💯✅
Agree
Excellent short course for understanding and familiar with basic java. Thank you, Harry.
Just amazing, never expected understanding java will be so easy and en-joyful.
Thank You loved the course.This was my first programming language
you should have started with c and c++
Herry sir be honest you are a good teacher ❤️❤️🙏🙏 for us.
God bless you ❤️❤️❤️
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
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
Apke charan kaha hai prabhu 🙏🏻
Thank u so much 😭
Idhar hai
@@SK-jf3mm 🤣🤣 🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣 🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣 🤣🤣 🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣 🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣
😂🤣
@Fact World Bhai hath bhi le ate ashirwaad mil jata 🙂
@@helloitshecker 🤣🤣🤣😇🙄🙄🙄😂😂😂😂😂🙄🙄⚽
Great efforts by harry bhai, I was struggling to find a nice java tutorial for a month and finally I discovered your video
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
The best Java tutorial on UA-cam.
Thank You sir.
I could Understand Everything.
I am Aditya Shukla.
From Lucknow UP.
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
ua-cam.com/video/Q-JUcsSuY8E/v-deo.html
Can you please provide the link to the sourse code because now the link provided for source code is not working.
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");
}
Oh my God the way you teach is fantastic really magical
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
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
Iam following from yesterday sir., Explanation is soo clear. Iam frm hyderabad...aaj mera assessment hai for my company...so iam following ur videos
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
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
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
Best youtuber who gave us everything fir free 🙏🏻🙌🏻🙌🏻🙌🏻
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?
awesome sir, Your way of teaching is very good. Sir, keep giving information related to Java.
Thank you Harry for teaching java so well.
👍
Mechanica student l k liye easy hai a tutorial????
Thank you so much harry ..i understand java language .. I am live muzaffarnagar Uttar pradesh . UP 12🙏🏻
Enjoying this tutorial alot able to solve the quiz and feeling so satisfied thanks alott sir
@CodeRains Sk i can't understand
❤️Pata hai unlike wala kon hai
🙄🙄Wh junior,byjus,vedentu.
❤️❤️Love you Harry❤️❤️ bhaiya 🙏👍
i am a nontechnical,with help of your videos i am able to unerstan java very eaisly...Great Video.
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
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
I want say Thank You sir from Bottom of My heart ❤️
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 ...
Your tutorials are very long but they are worth watching. you really helped me to learn in a faster way.👍
I am Shubham Sawant from Satara,Maharashtra
Loved ur teaching
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.
Good and quick tutorial for people learning java after learning python and knowing basics like comments and all
Its a great session, Thank you Harry
♥️ 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
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
Bhai your video is so helpful and no boring . easily understand .bhai good work. keep it up
thank you 🙂❤️
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?
15:49 haha, thanks for taking my name ✌ 😁😁
😂
😂😂
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
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!?
Manish pandey
3 months ago
Brother pls full course of java ,
Advance java
Humble request 🙏
Hats off to u
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
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
Cheat sheet bro😅😀...and thank you so much for such an amazing lecture.
At 20:59 He said ae aa ekdum pyarr se i don"t control my laughing ...........
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?
JAVA ka course abhe tak nahi aya?
By the way thanks for this Amazing JAVA crash course :)
ua-cam.com/channels/rdSfU6svZJFZCQjJEWN9OQ.html
ua-cam.com/video/HcKIrbH-jgg/v-deo.html
i have done this quick quiz of switch statement successfully.
thank you sir 🙏🙏
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.
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
Harry bhai bht badiya tha sab clear hogayab my mindset before this lecture was I used to hate java but now its interesting... ThankYou so much for this brother keep doing keep growing
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
ua-cam.com/video/HcKIrbH-jgg/v-deo.html
%=
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
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👎👎👎
He is the best teacher in my life.♥️♥️♥️
Love from Bangladesh 🇧🇩
34:18
Harry:You can't name your child $%
Elon Musk: Allow me to introduce x-æ-a-xii
Bhai ye class 12 wale dekh sakte main kabi program nhi banaye main bahot pareshan hoon
@@harshchandel3408 koi bhi dekh sakta hai
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
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
Harry Bhai maine aapka Quiz Question solve kiya hain... Alhamdulillah Bht Acha laga ye Solve Karke 🌹💓💝
Quick quiz Answer:👇
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner x = new Scanner(System.in);
int ent;
System.out.print("Enter number between 1 to 7: ");
ent = x.nextInt();
switch (ent){
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("Invalid input");
//Credit: codewithharry
// I am 14 years old and watching your videos. Now I understood lot of things!! Thanks a lot.
}
}
}
It's same like c++
@WARRIOR X GAMING ya
ABE MAT BOL
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
If I would be Hagrid I would come to you and say,"You are a wizard harry! A wizard."
Bhai ye class 12 wale dekh sakte main kabi program nhi banaye main bahot pareshan hoon
@@harshchandel3408 aaram se dekho bhai. Koi tension nhi. Harry bhai ki video playlist pr jao aur jo programming achi lgti h ja kr dekh lo. Har ek bhut bdhiya h.
Its awsome I am trying to learn the Java, hoping for the best.
great Work.
Bundle of thanks from Pakistan.
🤩
I was afraid of JAVA. After watching your video, I thought, why did I not started it before. Excellent dear.
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
Harry Bhaiya, Your teaching skills are awesome.
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");
}
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...😍
1:44:42
package test;
import java.util.Scanner;
public class main {
public static void main(String[] args){
Scanner scan = new Scanner(System.in);
System.out.println("Enter The Day Key");
int date = scan.nextInt();
switch (date){
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("Please enter a number from 1 to 7");
}
}
}
Replace int to byte save memory
@@SohailKhan-ng7oh doesn't java have a garbage collection so no memory waste.
@@bhavikpatel4109 thnk u guru ji
Bhai, you are God to me, I dont have enough money for coachings....your videos increase my confidence
Name-ganesh karande
From - sangli Maharashtra
Your are nice teacher
Tq so much sir ❤😘😘😘
i am from belgaum
ashta mi
I will try to be as productive as you 😇
i am just can't define the word which is thankful to you, you are great bro ,you are the legend of coding world keep going.
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