Ha sir access to kar li..... Lekin Aap DS AND ALGO KI VEDIOS NHI LA RHE HO.................................🙏🙏🙏🙏🙏🙏 PLEASE sir daily upload kariye ds and algo .....
sir me course ke release ke 3 saal baad dekh rahi hoon too luckily aap sab daal chuke hain aur thumbnails bhi change ho gayen hain so thank u so much and keep up the good work
Never a problem Harry Bhai..... always take your time becuase we know if you are taking time in providing notes it means notes is going to be on another level......thank you all your effort....❤️❤️❤️❤️❤️❤️❤️
The trick about printf() you told at 10:12 solved the problem I was not able to solve in my miles and kilometer converter program. Thanks Harry sir, great course.
import java.util.Scanner; class Input { public static void main(String []args){ Scanner sc = new Scanner(System.in); System.out.println("Enter killometer"); float km = sc.nextFloat(); float sum = km / 1000; System.out.println(sum); } } import java.util.Scanner; class Input { public static void main(String []args){ Scanner sc = new Scanner(System.in); System.out.println("Enter killometer"); float km = sc.nextFloat(); float sum = km / 1000; System.out.println(sum); } }
Sir thaks a lot bcoz... Maine phle codding name hi suna tha or ab aapse hi phli baar sikhna start kiya h ...or bhut kuch samjh bhi a rha h, so thankyou sir❤️❤️❤️
I am in class 11 now and I am watching your Python Tutorial from beginning and wanted to say thanks for such quality tutorial. It's very good👍🏻 and I learnt many things about python from you. I commented here because you won't see there.
You just helped me a lot in my boards well I am in ICSE class 10 and I am really thinking that I should find you before but I found you today one night before my semester 2 computer exams 😁😁😁😁😁😁😁😁😁😁😁😁😁😁😁
3:27 I think it was updated in recent versions of Java Because this code works like intended: String a = new String("Check1"); System.out.println(a); a = "Check2"; System.out.println(a);
One thing to note : println() and print() both auto fix the float precision to user input --> 123.45 remains 123.45 Whereas in printf() , format() it auto add the remaining decimal vlaue as 0 --> 123.45 changes to 123.450001 . Imp when accepting user input . Thanks harry bhai 💗
01:35 Strings in Java are sequences of characters with special support. 03:10 Strings are instantiated using the 'new' keyword, and they are extensively used in Java. 04:45 Strings in Java are immutable 06:20 Difference between print and printf in Java 07:55 Using format specifiers in Java for different data types 09:30 Creating and using a Scanner object in Java 11:05 Strings in Java have various methods that add functionality 12:33 Java supports formatting decimal points.
int x = 10; int y = 20; float z = 30f; String str = "The value of z is "; System.out.printf("x = %d, y = %d%n %s z = %.2f ", x, y, str,z); output: x = 10, y = 20 The value of z is z = 30.00
Thanks alot...aapka python tutorial vedio course complete karke javape arahoo..aapne jesa serialse dekhne keliye kaha vesahi dekhrahoo..Thank You very much.. *** I can't comment every vedio.. ganvme signal nahi he..aapka sara vedio download karke me sahi se dekhta hoo..🙏🙏🙏🙏🙏
Herry vai app sab kuch bhoat simple karke bata taaa hoo...maja ata hai..abb Lag raha hai main java shik paunga....baki Sab logo ka RUclips video dhak karrr kuch nahi samaj main ata...main abb java kay shat shat..herry vai kaa website developed course vhi dhak raha huuu...herry vai sabkuch simple karke bata tai hai...
Sir,thoda programming deep mein smjayeee jaise scanner sab ..jo use kar rahe hai wo ku laga app to direct pura program bnna dete hai ... humlog jisko A....bhi nhi aati unhe samjhne mein problems hoti hai..plz sir🙏🙏
Thank 😊 you sir love you so much I appreciate your efforts for the students... Bahut maza aa rha hai apke sessions mai ... Wow u r my favourite teacher 😉
Harry sir hum 'String name = new String(original: "Harry");' Aisa hi kyu likhte hai? yaa Aisa hi kyu use karte hai? yaa kisliye use karte hai? ye thoda detail me samjao na please.
Hlw , why it is required to creat an object of scanner before for giving user input? and please give a brief explanation on the syntax of the java .... why we use (string [ ] args) and what is import.java.util. what does it states.. please give a response thank you...
Harry Bhai I have Accessed and Liked your Java as well as Python and C Language Playlist and have shared with my friends but I am 13 so I'm not on Instagram Sorry!
Sir there is a mistake in your notes of string chapter In String Methods Method 3 toUpperCase definition is incorrect which is : Returns a new string which has all the lowercase characters from the string name . In this in place of lowercase there should be uppercase Thanks Harry sir you are so helpful
Playlist access kar li na?
This playlist is a part of my Complete Java Course: ruclips.net/p/PLu0W_9lII9agS67Uits0UnJyrYiXhDS6q
Aree bilkul bhaiya ...access kya bookmark krli h
Ya sir ...I have access your playlist ♥️
Yes sir
Harry bhai are you from IIT KGP????
Ha sir access to kar li.....
Lekin Aap DS AND ALGO KI VEDIOS
NHI LA RHE HO.................................🙏🙏🙏🙏🙏🙏 PLEASE sir daily upload kariye ds and algo .....
i know already but at 10:29 i learned something new %8.2f.
that's why i watched your all videos.
love from gujarat.👌👌👌✔❤
Ha moj ha bhai ..
Same doubt here
I complete html and css then I started Java scripts and after learn nodejs
So no words and feelings explain for you
Bundal of thanks❤️❤️💯💯
Not understanding node js
And also I want to be front-end developer
Bhai ap k pass java notes han to plzz send me 🥺🙏
Teaches in the best possible way.. for free..
says "thank you for watching this video guys"!
Thanks a lot Harry for your efforts! GBU!
sir me course ke release ke 3 saal baad dekh rahi hoon too luckily aap sab daal chuke hain aur thumbnails bhi change ho gayen hain so thank u so much and keep up the good work
Never a problem Harry Bhai..... always take your time becuase we know if you are taking time in providing notes it means notes is going to be on another level......thank you all your effort....❤️❤️❤️❤️❤️❤️❤️
I am learn from your video afer 4 years latter . Thank you for maked java play list . Because it is very helpful for us .🥰🥰
The trick about printf() you told at 10:12 solved the problem I was not able to solve in my miles and kilometer converter program. Thanks Harry sir, great course.
can u show your code🤔
import java.util.Scanner;
class Input {
public static void main(String []args){
Scanner sc = new Scanner(System.in);
System.out.println("Enter killometer");
float km = sc.nextFloat();
float sum = km / 1000;
System.out.println(sum);
}
}
import java.util.Scanner;
class Input {
public static void main(String []args){
Scanner sc = new Scanner(System.in);
System.out.println("Enter killometer");
float km = sc.nextFloat();
float sum = km / 1000;
System.out.println(sum);
}
}
@@asur321 You made km to meter convertor not km to miles bro check question again
Sir thaks a lot bcoz... Maine phle codding name hi suna tha or ab aapse hi phli baar sikhna start kiya h ...or bhut kuch samjh bhi a rha h, so thankyou sir❤️❤️❤️
I am in class 11 now and I am watching your Python Tutorial from beginning and wanted to say thanks for such quality tutorial. It's very good👍🏻 and I learnt many things about python from you. I commented here because you won't see there.
nice idea bro ❤😂
😂😂
Neither here bro😭
@@sanafatima1759 Yep 🥲
Harry Sir,May God bless you!..bohot achhe se har topic ko explain karne k liye
You just helped me a lot in my boards well I am in ICSE class 10 and I am really thinking that I should find you before but I found you today one night before my semester 2 computer exams 😁😁😁😁😁😁😁😁😁😁😁😁😁😁😁
3:27 I think it was updated in recent versions of Java Because this code works like intended:
String a = new String("Check1");
System.out.println(a);
a = "Check2";
System.out.println(a);
so should I use string literals or string object ...which is more effiecient??....is string literals better than string object?
Thanks bro i got confused due to that 😅
Thanks for keeping this channel clean 👍 means you haven't do sponsored videos, which is good
Bohot achi video hai, aur bohot sari important concepts apne batayi hai....very nice ...You made Java way more interesting
One thing to note :
println() and print() both auto fix the float precision to user input --> 123.45 remains 123.45
Whereas in printf() , format() it auto add the remaining decimal vlaue as 0 --> 123.45 changes to 123.450001 .
Imp when accepting user input .
Thanks harry bhai 💗
%.2f use kar ne se thik hojayed extra nahni lage ga zero sirf do decimal value hi dikhega.
No need of University
😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂
Degree ho nahi dage harry bhai😅
😂😂
In this tutorial Harry sir we are learning a lot thank u sir and what we did not learn in college tym we are doing here In simple manner explaining
Harry sir apse accha to koi padha hi nhi sakta, thanks a looooooot.
01:35 Strings in Java are sequences of characters with special support.
03:10 Strings are instantiated using the 'new' keyword, and they are extensively used in Java.
04:45 Strings in Java are immutable
06:20 Difference between print and printf in Java
07:55 Using format specifiers in Java for different data types
09:30 Creating and using a Scanner object in Java
11:05 Strings in Java have various methods that add functionality
12:33 Java supports formatting decimal points.
The most important topics of java from an interview point of view
Harry sir aapse hi C bhi sikhi hai......... wo 15 hours wala video, maine puri dekhi hai!! Aap bohot kuch sikha rahe ho sir!!
It's awesome harry bhai.your python tutorial for absolutely beginners is wonderful and always watch video
int x = 10;
int y = 20;
float z = 30f;
String str = "The value of z is ";
System.out.printf("x = %d, y = %d%n %s z = %.2f ", x, y, str,z);
output:
x = 10, y = 20
The value of z is z = 30.00
I am in class 7 and i completed python. web development from your channel now java then android development then tailwind and nextjs
I am in class 10...and u r such an amazing teacher i understood everything .....btw i am learning string 10 days before my test
Notes which he has given in the description that link it is not opening.
Thanks alot...aapka python tutorial vedio course complete karke javape arahoo..aapne jesa serialse dekhne keliye kaha vesahi dekhrahoo..Thank You very much..
*** I can't comment every vedio..
ganvme signal nahi he..aapka sara vedio download karke me sahi se dekhta hoo..🙏🙏🙏🙏🙏
Great. Harry Bhai, you always make a smile on our face everytime. This revolution is going to be legendary.🙇🏻♂️🙇🏻♂️
Bhai dill se salam hai harry sir jaise teachars ki ❤
Like share sab hojaaega ..koi tension ki baat nhi h❤️
13th video Completed
10 Dec Sat 2022
BCA 2y 3rd Sem
You are best till now
7:18 imp consp
11:08 %8.2f menas
LOTS OF LOVE FROM MHARASHTRA 💕
yaaa
Herry vai app sab kuch bhoat simple karke bata taaa hoo...maja ata hai..abb
Lag raha hai main java shik paunga....baki Sab logo ka RUclips video dhak karrr kuch nahi samaj main ata...main abb java kay shat shat..herry vai kaa website developed course vhi dhak raha huuu...herry vai sabkuch simple karke bata tai hai...
Dil jeet lia harry bhai apne printf ke barre me bata kar ❤❤❤❤
One of best tutorial for all prog language
plz is playlist ko deep tak lejaana or hamko eak good java programmer bana na ........... Great job
Your are Amzing Harry bhai ....String str = ( "Tha way you teach is Amazing");
Finally itne dino baad mujhe solution mil hi gya
Nice Harry sir aapka bahut bahut shukriya aisa channel aur video bana ne ke liye
Knowledge = your video 🎉🎉
Best teacher for java❤❤
thank you bhai aap bahot acchi tarah coding sikhate ho
13 video was launch on 13 September ...
Good :) 😅
Yaaa😁
thanks you sir for the java classes
Sir when will you begin java programming for making apps
Harry sir, please upload notes of this chapter (Strings) Please. Notes helps us a lot in solving issues
Notes is in description of next vedio.
Uploaded in next video
Bhai plzz notes mil jay gy java k full 🥺
How I get cheat sheet notes..?😊
You are the bestest teacher❤
Thanks harry bhai❤❤
Bai accha lesson padathe ho
Thank you.
I really understand the un- understandables😁
Harry you are best ,aur bhi video ane do please
Sir,thoda programming deep mein smjayeee jaise scanner sab ..jo use kar rahe hai wo ku laga app to direct pura program bnna dete hai ... humlog jisko A....bhi nhi aati unhe samjhne mein problems hoti hai..plz sir🙏🙏
Best video again bhaiya
thanks for this information i am learning with good speed.
Thanks broo ooor aapki typing bhi aapki video ki traha hai fast nd fast
Very gud video!
Dhanya ho Guruji
Great playlist, dear.
Best JAVA Tutorial
Thank you Harry making the easy learning
Gajab batailu ho Harry bhaiyya, Maja aa gelo hamra ke
Way of teaching is superb 👌
harry bhai amazing course
1 millions hone wale hai
Printf(“brilliant harry bhai”);
very nice explantion of string
Bro you deserve something better maine sabke sath aapki video share ki ha
Harry sir plz make playlist of Advance java 🙂🙏🙏🙏
Thank 😊 you sir love you so much
I appreciate your efforts for the students...
Bahut maza aa rha hai apke sessions mai ...
Wow u r my favourite teacher 😉
Sir the time u make the videos plzz do zoom them up as many times people face difficulties is seeing the screeen
Thank you Harry bhaiya 🥰🥰❤️❤️
7:14 maja hi aa gaya dekh ke C or JAVA ka collab.
Sir please unity tutorial
we r thankful of u sir ji
guys if you all are asking for notes and want that then please go to CodeWithHarry website and download them from there. I am doing from there only.
THANKS A LOTT BHAYYA
Best java course ❤
Nice teaching
Harry bhai agar m har roz apke 3 videos dekhoonga to me kitne time m java master kar sakta hu please reply to me
Apne coding kab start kari harry bhai please batao
❤️❤️ awesome tutorial for beginner
Thank you so so so so much bhai....🥰
this video is very helpfull
The people disliking are the "teachers" who "teach" us java at schools
Harry sir hum
'String name = new String(original: "Harry");'
Aisa hi kyu likhte hai? yaa Aisa hi kyu use karte hai? yaa kisliye use karte hai? ye thoda detail me samjao na please.
is this suitable in 2022 ?
Sir please one tutorial on NetBeans , start to end .... beginning to master
Love the way of your teaching ❤️
Sir you are great
Your videos are so helpful..
Thank you soo much..
Lots of love from Andhra Pradesh harry bhayya :)
Applets,swing aur AWT ka videos bee dalo plz.
Hlw , why it is required to creat an object of scanner before for giving user input?
and please give a brief explanation on the syntax of the java ....
why we use (string [ ] args)
and what is import.java.util. what does it states..
please give a response thank you...
Harry Bhai I have Accessed and Liked your Java as well as Python and C Language Playlist and have shared with my friends but I am 13 so I'm not on Instagram Sorry!
Sir there is a mistake in your notes of string chapter
In String Methods
Method 3 toUpperCase definition is incorrect which is :
Returns a new string which has all the lowercase characters from the string name .
In this in place of lowercase there should be uppercase
Thanks Harry sir you are so helpful
congrats for 1M subscribers ...soon
public class Main
{
public static void main(String[] args) {
String name = new String( "TAHA");
System.out.println(name);
}
}
This course is very good :)
sir plzzz provide us with the notes they help a lot