Harry bhaiya, ch_2 ka pdf link dijiya na.. Mya printout karna chahatihu but part by part aap link nahi diya.. Or oprater ki jo video tha uchki link jarur dijiga mara bohot help hoge
public class main { public static void main ( String [] args) { String name = "Harry"; System.out.print(name + " Your teaching Skill is very awesome "); } }
Research I conducted a test I gave java to print to 10000000 I gave python to print to 10000000 Results Are Here: Java Takes: "28.30" Seconds In 8GB RAM And i3 Processor Python Takes: "04:25:85" Four Minute 25 Seconds & 85ms In 8GB RAM And i3 Processor Hense Proved: Java Is Better Than Python In Computation Time
i think the time that you mentioned is the time that it takes to print these numbers in the command line rather than of computation. in computation they both would be really close.
00:04 String methods in Java allow you to manipulate strings and perform operations on them. 02:26 The main point is to explain the usage of String methods in Java. 07:15 Understanding the meaning of uppercase and cleaning characters in a string 09:38 The trim() method removes whitespace before and after a string 14:10 String methods in Java: Using substring and replace 16:18 IntelliJ IDEA helps in replacing characters in a program. 20:37 String methods in Java 22:45 The index of a specified substring can be found using the indexOf() method in Java 27:31 String methods in Java - search and last index 29:28 The video explains about string methods in Java. 33:44 String methods and escape sequences in Java 35:48 Escape sequence characters are used to skip certain characters in Java.
Karliya ye wala video bhi Ab pehle ye sab kuch ek baar revise krna hoga, kaafi sare methods hain strings ke Uske baad jaunga practice set pe... thanks harry bhai best teacher
If this line comes when you write tlc or ulc then don't worry, it is the same just in a new version of jdk(I was using jdk 17) String lstring = name.toLowerCase(Locale.ROOT); and String ustring = name.toUpperCase(Locale.ROOT);
Harry Bhai explains very slowly and calmly, trust me write down whatever he says. Make you own notes and refer to his in the end for anything extra. Worked for me. Thanks Harry bhai you made this clear in my head
Ek Questions hai agar ap koi company me job krte ho wo apko java program mai kaise kam krna bolage (mean's) kon se type ka project bana bolage ek video chahiya And c++ , python , php , yeh sub pe job me kon kon se problem pe kam krna ka liye bolajayaga video please
Coming here from ur python tutorial, you explained all of these things in that tutorial, now its so much easier to understand things that I previously used to be afraid of... 🙏 Shat Shat Pranam...
wow just wow... not even paid courses are giving this amount of clarity explanation... just start if you are really interested then you will only complete the video...
00:04 String methods in Java allow you to manipulate strings and perform operations on them. 02:26 The main point is to explain the usage of String methods in Java. 07:15 Understanding the meaning of uppercase and cleaning characters in a string 09:38 The trim() method removes whitespace before and after a string 14:10 String methods in Java: Using substring and replace 16:18 IntelliJ IDEA helps in replacing characters in a program. 20:37 String methods in Java 22:45 The index of a specified substring can be found using the indexOf() method in Java 27:31 String methods in Java - search and last index 29:28 The video explains about string methods in Java. 33:44 String methods and escape sequences in Java 35:48 Escape sequence characters are used to skip certain characters in Java. Crafted by Merlin AI.
Why u getting less likes u know sir because we forgets all things and we r remembering and listening your teaching. We all r totally involved .and tq.....
16:13 if u want to replace the character with the blank then the following command to entre "System.out.println(name.replace ('any character' , ' '); mind that there should be space between apostrophe or else it will show error
// This Code has all the Methods in a Simple Way to make it Easy Scanner sc = new Scanner(System.in); System.out.print("Please Enter the String: "); String name = sc.nextLine(); System.out.print("Length of the String is: "); System.out.println(name.length()); System.out.print("Lowercase String: "); System.out.println(name.toLowerCase()); System.out.print("Uppercase String: "); System.out.println(name.toUpperCase()); System.out.print("Trimmed String: "); System.out.println(name.trim()); System.out.print("Substring (From 2): "); System.out.println(name.substring(2)); System.out.print("Substring (From 2 to 4): "); System.out.println(name.substring(2, 4)); System.out.print("r is replaced by p: "); System.out.println(name.replace('r', 'p')); System.out.print("Does Start with 'Ar': "); System.out.println(name.startsWith("Ar")); System.out.print("Does End with 'it': "); System.out.println(name.endsWith("it")); System.out.print("Character at Index 2: "); System.out.println(name.charAt(2)); System.out.print("Index of the Letter 'p': "); System.out.println(name.indexOf("p")); System.out.print("Index of the Letter 'p' w.r.t 3: "); System.out.println(name.indexOf('p', 3)); System.out.print("Last Index of 't': "); System.out.println(name.lastIndexOf('t')); System.out.print("Equate to 'Arpit': "); System.out.println(name.equals("Arpit")); System.out.print("Equate to 'arpit' w/ Ignore Case: "); System.out.println(name.equalsIgnoreCase("arpit"));
Bohot hi badiya tha video aapka jooo strings methods bataye oooh ekdam bhari the muze pahlese yaad nahi hote the par aab ekdam dimag main feet hooo gai jo prcatical aapke sath kiye tooo
A note on the replace method - You can replace both - characters and strings. Use single quotes (' ') for characters and double quotes for string. Replace a character with a string and vice versa is not allowed. Like str.replace('c', "cc") is invalid.
at 8:25mins there's how the toUpperCase worked and its mutable source code: String name2 = "manab"; System.out.println(name2.toUpperCase()); Output: MANAB
Harry bhai, First of All Thank you for this wornderfull ans Amazing Lectures. Tell me one thing na, I just participated in an online coding platform and it allows me to code in java, But what problem I face that there are various versions of java like java 8, java 15, etc. So What to choose to form them and what version we are working on your lectures. thank you 🤩
// Thank me later. All String Methods The String class has a set of built-in methods that you can use on strings. Method Description Return Type charAt() Returns the character at the specified index (position) char codePointAt() Returns the Unicode of the character at the specified index int codePointBefore() Returns the Unicode of the character before the specified index int codePointCount() Returns the Unicode in the specified text range of this String int compareTo() Compares two strings lexicographically int compareToIgnoreCase() Compares two strings lexicographically, ignoring case differences int concat() Appends a string to the end of another string String contains() Checks whether a string contains a sequence of characters boolean contentEquals() Checks whether a string contains the exact same sequence of characters of the specified CharSequence or StringBuffer boolean copyValueOf() Returns a String that represents the characters of the character array String endsWith() Checks whether a string ends with the specified character(s) boolean equals() Compares two strings. Returns true if the strings are equal, and false if not boolean equalsIgnoreCase() Compares two strings, ignoring case considerations boolean format() Returns a formatted string using the specified locale, format string, and arguments String getBytes() Encodes this String into a sequence of bytes using the named charset, storing the result into a new byte array byte[] getChars() Copies characters from a string to an array of chars void hashCode() Returns the hash code of a string int indexOf() Returns the position of the first found occurrence of specified characters in a string int intern() Returns the canonical representation for the string object String isEmpty() Checks whether a string is empty or not boolean lastIndexOf() Returns the position of the last found occurrence of specified characters in a string int length() Returns the length of a specified string int matches() Searches a string for a match against a regular expression, and returns the matches boolean offsetByCodePoints() Returns the index within this String that is offset from the given index by codePointOffset code points int regionMatches() Tests if two string regions are equal boolean replace() Searches a string for a specified value, and returns a new string where the specified values are replaced String replaceFirst() Replaces the first occurrence of a substring that matches the given regular expression with the given replacement String replaceAll() Replaces each substring of this string that matches the given regular expression with the given replacement String split() Splits a string into an array of substrings String[] startsWith() Checks whether a string starts with specified characters boolean subSequence() Returns a new character sequence that is a subsequence of this sequence CharSequence substring() Extracts the characters from a string, beginning at a specified start position, and through the specified number of character String toCharArray() Converts this string to a new character array char[] toLowerCase() Converts a string to lower case letters String toString() Returns the value of a String object String toUpperCase() Converts a string to upper case letters String trim() Removes whitespace from both ends of a string String valueOf() Returns the string representation of the specified value String
sir really really and too much thankyou for making these videos and notes for us. sir you teaching us for free and nhi aaj ke time koi free study karvata
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...
Please continue this playlist Dont look at the views that are decreasing videos by videos Please continue this for serious guys who wants to really learn from you. The viewrs in your last videos of playlist are your true fans
Thank you so much Harry bhai, u are such a gem💎. Dil se dua nikal rahi he aapke liye. Bohot taraqqi karo aap. You are helping us so much by ur knowledge and putting so much efforts👏. Thank you so much
Harry bhai you are the best. You do this much hardwork for teaching us programming language, when we will achiever our goal we will see at you , you the foundation of goal. Thankyou so much!
Harry Bhai at 6:30 I understood your point that no need to rote learn.....but in some coding interviews they literally ask the syntax so no choice but to memorize.
Sir ji , aap ka teaching concept bohot sahi hai since im from non technical background and i need this kind of teaching so that i can get things easily. Keep it sir ji
Harry Sir.. Thanks for teaching. I made a python bot to comment Thank you 100 times. But didn't use as this will create nuisance.. Thank you Sir once again
Prabhu aapke charan kha hai really sir you are explaining each and everything with transparency and i am really liking your tutorials alot and thanks for explaining each and everything and i am your fan sir.
thanks a lot to u , because i was so confuse regarding all these but your this video has cleared all my doubts . Actually u r doing a great job. thanks for helping a lot of students in their path of learning java.
Notes ka link description me daal diya hai. If you think this course is useful, do share it with your friends!
Sir, please make touriotal for qbasic.
I have learn my things from you. You are very dedicated. Thank You Sir
Full course of c#
If possible pleeease...
Harry bhaiya, ch_2 ka pdf link dijiya na.. Mya printout karna chahatihu but part by part aap link nahi diya.. Or oprater ki jo video tha uchki link jarur dijiga mara bohot help hoge
@@OverWeb_Technology harry bhai neh chapter 2 ka notes diya hai
Ek bar chapter 2 ka sareh videos ka description dekh loh mil jayega
Agar ye course paise de kar karu fir bhi itna sab kuch koi nahi sikhata hai. great sir👏👏👏
public class main {
public static void main ( String [] args) {
String name = "Harry";
System.out.print(name + " Your teaching Skill is very awesome ");
}
}
Harry bahi u should make a playlist for our teachers to learn teaching
🤣🤣🤣op
🤣🤣😂😂😂😂Sahi Bole Tum Banana Chahiye 😂🤣
Exactly 😂
😂
to tum sab yeha nahi aaoge😂😂😂
Research
I conducted a test
I gave java to print to 10000000
I gave python to print to 10000000
Results Are Here:
Java Takes: "28.30" Seconds In 8GB RAM And i3 Processor
Python Takes: "04:25:85" Four Minute 25 Seconds & 85ms In 8GB RAM And i3 Processor
Hense Proved: Java Is Better Than Python In Computation Time
Cool!
28 seconds lol
Only in time computation though!
i think the time that you mentioned is the time that it takes to print these numbers in the command line rather than of computation. in computation they both would be really close.
give same task to C and it will do much faster than any language
Ye chapter padhne sabse jyada maja aya 😍 mko lga string is difficult to understand.. Bt abhi to ek ek point dimag mein baith gya hai
Thank you sir
Mujhe bhot boring lag Raha hain ye chapter... Skip karne ki socha 4 baar lekin sala important hain skip bhi nii kar sakta
@@badguysky6311 🙂 as u wish ... Bt meine ye chapter game ki tarah samjh k padh liya.. To achese yaad hua😂
@@manalikoli7652 kitna time laga pura java khatam hone me??
00:04 String methods in Java allow you to manipulate strings and perform operations on them.
02:26 The main point is to explain the usage of String methods in Java.
07:15 Understanding the meaning of uppercase and cleaning characters in a string
09:38 The trim() method removes whitespace before and after a string
14:10 String methods in Java: Using substring and replace
16:18 IntelliJ IDEA helps in replacing characters in a program.
20:37 String methods in Java
22:45 The index of a specified substring can be found using the indexOf() method in Java
27:31 String methods in Java - search and last index
29:28 The video explains about string methods in Java.
33:44 String methods and escape sequences in Java
35:48 Escape sequence characters are used to skip certain characters in Java.
Bhai ek baat batao class 12th ki computer ke lie sahi badhata hai????
Man ! You got some serious skills in teaching and full of knowledge. Thanks alot for such a awesome content
Karliya ye wala video bhi
Ab pehle ye sab kuch ek baar revise krna hoga, kaafi sare methods hain strings ke
Uske baad jaunga practice set pe...
thanks harry bhai
best teacher
4:17 i heard new version of "ek do teen"song.
love from gujarat..🌹🌹🌹🌹❤✔✔✔
😁
If this line comes when you write tlc or ulc then don't worry, it is the same just in a new version of jdk(I was using jdk 17)
String lstring = name.toLowerCase(Locale.ROOT); and String ustring = name.toUpperCase(Locale.ROOT);
Harry Bhai explains very slowly and calmly, trust me write down whatever he says. Make you own notes and refer to his in the end for anything extra. Worked for me. Thanks Harry bhai you made this clear in my head
Am a fan of your sir, learn so many things from your channel. Lots of respect for you.
Best Video , Harry Sir ! You are life changer for many of NON - IITan Student like us :)
Harry Sir you are great. Mere collage me Java start ki par kuch samajh ni aa raha tha fir aapki playlist mili ab me sab samajh paa raha hu.
Ek Questions hai agar ap koi company me job krte ho wo apko java program mai kaise kam krna bolage (mean's) kon se type ka project bana bolage ek video chahiya
And c++ , python , php , yeh sub pe job me kon kon se problem pe kam krna ka liye bolajayaga video please
Coming here from ur python tutorial, you explained all of these things in that tutorial, now its so much easier to understand things that I previously used to be afraid of... 🙏 Shat Shat Pranam...
to be honest, this is the best explanation video of coading that I've ever watched ❤🔥
Really awesome course ❤️❤️❤️
Keep making such courses for those who can't afford to give fees of courses like this 😘😘😘😘
Im agree with your opinion
many of them can actually afford but they love how harry teaches them so they learn from him...
SIR AAP KA WORK BHUT HI ACHAA HAI 😊
ABHI MAI C COMPLETE KARNE WALA HU ..OR ONLY APKI WAJAH SE YE POSSIBLE HUA HAI 🥰🥰
Students who watch this video , after 3 years . give attendence here....😅
Me watching now
Lol only 2 😮💨💀💀
ME FR
✋️
Yes. I am also watching.
wow just wow... not even paid courses are giving this amount of clarity explanation... just start if you are really interested then you will only complete the video...
This channel should be best channel for the students of this generation , Harry bhai hats off to you for your efforts ❤️
Aise bhai mat bolo
Wo bhi ladka hai , bura lagta hoga usko bhi 😂
@@Anonymous-st9it 😑😑😑😑
@@soumitakar4373 😂
@@Anonymous-st9it That was so cringe dude💀
@@Anonymous-st9it . Sabhi tumare jasey akele nhi hote 🥶
bro.. bohot mehnat krta h ye bnda... no one even on paid courses does so much as it's all about selling the course. thank you so much
Thank you so much Harry sir for your hard work and the gift of your notes
Sir no need to say thank you for watching this video. Thank you for making it . Best Sir ❤️
I thought it's about to end,
But when (16) number method pops up from nowhere Kasam se bhai dil khush ho gaya.. 😀🔥
00:04 String methods in Java allow you to manipulate strings and perform operations on them.
02:26 The main point is to explain the usage of String methods in Java.
07:15 Understanding the meaning of uppercase and cleaning characters in a string
09:38 The trim() method removes whitespace before and after a string
14:10 String methods in Java: Using substring and replace
16:18 IntelliJ IDEA helps in replacing characters in a program.
20:37 String methods in Java
22:45 The index of a specified substring can be found using the indexOf() method in Java
27:31 String methods in Java - search and last index
29:28 The video explains about string methods in Java.
33:44 String methods and escape sequences in Java
35:48 Escape sequence characters are used to skip certain characters in Java.
Crafted by Merlin AI.
I am mechanical student and I have learnt C and and OOPs in python from Harry sir., cheers
me too bro
Why u getting less likes u know sir because we forgets all things and we r remembering and listening your teaching. We all r totally involved .and tq.....
Thanks for making this videos. You are great. This is the best channel even better than offline tutions.
16:13 if u want to replace the character with the blank then the following command to entre
"System.out.println(name.replace ('any character' , ' ');
mind that there should be space between apostrophe or else it will show error
Thanks Harry Bhai
generally do not prefer to watch videos(educational) more than 20 mins, but your knowledge and narration makes it easy to sit
This is a super & reliable java course...
Caution⚠️ : The content of this channel is highly addictive may lead u to become a good programmer in future 😌💕🔥🔥🔥🔥
OK
lol😂😂😂
wtf caution lmao
Ok
oh she is sarcastic
sir i am watching your video 2 years latter, still your video is the bast ,
love from odisha ..
System.out.println(" Thank u so much Harry bhai")
error dega last me semicolon
Pure you tube mai sbse acchi Java by Harry sir❤❤❤
Thank you sir i have completed your python playlist
His Mind blowing Playlist is Python Playlist
Yes
You will be able to complete 🙂🙂🙂👍👍all the best to you
Yes i will and thanks for subscribing my channel
Ap ka notes bohut helpful hai bhaiyaa😊😊
Thanks a lot ❤❤
Coding with Harry bhai 😍
Coding without Harry bhai💀
// This Code has all the Methods in a Simple Way to make it Easy
Scanner sc = new Scanner(System.in);
System.out.print("Please Enter the String: ");
String name = sc.nextLine();
System.out.print("Length of the String is: ");
System.out.println(name.length());
System.out.print("Lowercase String: ");
System.out.println(name.toLowerCase());
System.out.print("Uppercase String: ");
System.out.println(name.toUpperCase());
System.out.print("Trimmed String: ");
System.out.println(name.trim());
System.out.print("Substring (From 2): ");
System.out.println(name.substring(2));
System.out.print("Substring (From 2 to 4): ");
System.out.println(name.substring(2, 4));
System.out.print("r is replaced by p: ");
System.out.println(name.replace('r', 'p'));
System.out.print("Does Start with 'Ar': ");
System.out.println(name.startsWith("Ar"));
System.out.print("Does End with 'it': ");
System.out.println(name.endsWith("it"));
System.out.print("Character at Index 2: ");
System.out.println(name.charAt(2));
System.out.print("Index of the Letter 'p': ");
System.out.println(name.indexOf("p"));
System.out.print("Index of the Letter 'p' w.r.t 3: ");
System.out.println(name.indexOf('p', 3));
System.out.print("Last Index of 't': ");
System.out.println(name.lastIndexOf('t'));
System.out.print("Equate to 'Arpit': ");
System.out.println(name.equals("Arpit"));
System.out.print("Equate to 'arpit' w/ Ignore Case: ");
System.out.println(name.equalsIgnoreCase("arpit"));
Bohot hi badiya tha video aapka
jooo strings methods bataye oooh ekdam bhari the muze pahlese yaad nahi hote the par aab ekdam dimag main feet hooo gai jo prcatical aapke sath kiye tooo
Thank you for making this video. It helps me a lot. Please carry on.
A note on the replace method - You can replace both - characters and strings. Use single quotes (' ') for characters and double quotes for string. Replace a character with a string and vice versa is not allowed. Like str.replace('c', "cc") is invalid.
Great video with proper conceptual things on strings.
koi itna basic kese sikha sakta he bhai... Hats off to you Harry bhai🙏❤
It's very hard to help to other but you're doing a well and simple way
Thank you so much bro that course and also for ds and python
Lots of Success and Good Health to You Harry Sir. Aap aaj ke Zamane ke Guru Dronacharya hain. Shat Shat Naman Aapko.
Really feel grateful that I got your playlist and course. Amazing !!!!!😇😇😇
at 8:25mins there's how the toUpperCase worked and its mutable
source code: String name2 = "manab";
System.out.println(name2.toUpperCase());
Output: MANAB
Great. Harry Bhai, you always make a smile on our face everytime. This revolution is going to be legendary.🙇🏻♂️🙇🏻♂️
This tutorial such a very helpful , its clear all doubt about string method;
String name = "Abhishek";
System.out.println(name);
// first 1 st
System.out.println(name.length());
// second
System.out.println(name.toLowerCase());
// third
System.out.println(name.toUpperCase());
// fourth
String c = " abhishek";
System.out.println(c.trim());
// fifth
System.out.println(name.substring(2));
// sixth
System.out.println(name.substring(1,3));
// seventh
System.out.println(name.replace('A','b'));
System.out.println(name.replace("Abhi","king"));
// eighth
System.out.println(name.startsWith("Abhi"));
// ninth
System.out.println(name.endsWith("eK"));
// tenth
System.out.println(name.charAt(1));
// eleventh
String name2 ="happyppy";
System.out.println(name2.indexOf("p"));
// twelve
System.out.println(name2.indexOf( "ppy",3 ));
System.out.println("I am abhishek \" abhishek");
Gajab Bhai! Salute itna mehnat karne ke liye.
1 minute me revision kara diya tumne 🙏🏼❤️
Good bruh
Harry bhai before watching this video I was having a lot of doubt after watching this video all my doubts are solved thank you.
Harry bhai, First of All Thank you for this wornderfull ans Amazing Lectures. Tell me one thing na, I just participated in an online coding platform and it allows me to code in java, But what problem I face that there are various versions of java like java 8, java 15, etc. So What to choose to form them and what version we are working on your lectures.
thank you 🤩
package stringClass_Methods;
public class Method9
{
public static void main(String[] args)
{
String str = "ABCD";
for(int i=0; i
// Thank me later.
All String Methods
The String class has a set of built-in methods that you can use on strings.
Method Description Return Type
charAt() Returns the character at the specified index (position) char
codePointAt() Returns the Unicode of the character at the specified index int
codePointBefore() Returns the Unicode of the character before the specified index int
codePointCount() Returns the Unicode in the specified text range of this String int
compareTo() Compares two strings lexicographically int
compareToIgnoreCase() Compares two strings lexicographically, ignoring case differences int
concat() Appends a string to the end of another string String
contains() Checks whether a string contains a sequence of characters boolean
contentEquals() Checks whether a string contains the exact same sequence of characters of the specified CharSequence or StringBuffer boolean
copyValueOf() Returns a String that represents the characters of the character array String
endsWith() Checks whether a string ends with the specified character(s) boolean
equals() Compares two strings. Returns true if the strings are equal, and false if not boolean
equalsIgnoreCase() Compares two strings, ignoring case considerations boolean
format() Returns a formatted string using the specified locale, format string, and arguments String
getBytes() Encodes this String into a sequence of bytes using the named charset, storing the result into a new byte array byte[]
getChars() Copies characters from a string to an array of chars void
hashCode() Returns the hash code of a string int
indexOf() Returns the position of the first found occurrence of specified characters in a string int
intern() Returns the canonical representation for the string object String
isEmpty() Checks whether a string is empty or not boolean
lastIndexOf() Returns the position of the last found occurrence of specified characters in a string int
length() Returns the length of a specified string int
matches() Searches a string for a match against a regular expression, and returns the matches boolean
offsetByCodePoints() Returns the index within this String that is offset from the given index by codePointOffset code points int
regionMatches() Tests if two string regions are equal boolean
replace() Searches a string for a specified value, and returns a new string where the specified values are replaced String
replaceFirst() Replaces the first occurrence of a substring that matches the given regular expression with the given replacement String
replaceAll() Replaces each substring of this string that matches the given regular expression with the given replacement String
split() Splits a string into an array of substrings String[]
startsWith() Checks whether a string starts with specified characters boolean
subSequence() Returns a new character sequence that is a subsequence of this sequence CharSequence
substring() Extracts the characters from a string, beginning at a specified start position, and through the specified number of character String
toCharArray() Converts this string to a new character array char[]
toLowerCase() Converts a string to lower case letters String
toString() Returns the value of a String object String
toUpperCase() Converts a string to upper case letters String
trim() Removes whitespace from both ends of a string String
valueOf() Returns the string representation of the specified value String
Bhai kaha se copy kiya🤥😂
@@aniketpotbhare389 bhai jaha se bhi copy kiya apko agr help kr rha ha to be grateful
thanks brother
Thnks bro😍🥺
sir really really and too much thankyou for making these videos and notes for us.
sir you teaching us for free and nhi aaj ke time koi free study karvata
I'm also a small RUclipsr. I know how hard work u r doing sir. And how it feel when u get low views as I also get but thku sir
bhai tu edhar kaha se aagya😂😂
Thank you for providing best tutorial for java ... Your teaching skills are amazing...
Very nice explanation sir. Keep it up!
You are the most fabulous computer teacher 😃😃😃
This Java course is very good. :)
bhai ne jindgi me in chizo ko sikhne ke liye bahut struggle ki hai is liye bhai bhot shiddat se yaha hame videos de rhe h
System. out. print ("Thanks sir for your java playlist you are awesome");
respect++;
No
He deserves
++respect;
Bhai java ke notes Apke Pas ho to share kr skte ho kya plzz muje jarurt hai
Wp -6263713978
Share krdo Bhai plzz
@@GYANmandu yea ++infinityrespect to Harry bhaiya!!
Harry bayya this video is very clearly explained without leaving behind any ambiguity.
Thankyou
Kitne khusnasib honge wo log jin logo ne python ke vedios me sir se homework check kraya ho
this whole playlist is excellent
this playlist cover whole 80% of java in 20% of time
after watching replaced harry,s name with happy I was truly happy
Dil se bhai i love this video and very usefull.
Sir I have -
Downloaded notes
⏬
Printed the notes
⏬
After Binding
⏬
Framed the notes🙇
Question : Have I done everything in the right way
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...
Notes ka link nahi khul raha hai
Sir ji Apke liye to Dil se Sab kuch
I don't no earlier 😃 that anyone can teach it so easily 💜💜💜👍👍👍👍🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏
bro made sure noone will forget his name 🤣🤣
Literally you’re amazing no one can teach each and everything in such a detailed manner ❤
Hey I'm living in 26 June 2024 ❤ give a heart ❤
Please continue this playlist
Dont look at the views that are decreasing videos by videos
Please continue this for serious guys who wants to really learn from you.
The viewrs in your last videos of playlist are your true fans
mst he java
Thank you so much Harry bhai, u are such a gem💎. Dil se dua nikal rahi he aapke liye. Bohot taraqqi karo aap. You are helping us so much by ur knowledge and putting so much efforts👏. Thank you so much
Harry bhai you are the best. You do this much hardwork for teaching us programming language, when we will achiever our goal we will see at you , you the foundation of goal. Thankyou so much!
just OP man like Just how..... Just How Can you make All this Explanation so easy........ oh my goddd!!!!
Harry Bhai at 6:30 I understood your point that no need to rote learn.....but in some coding interviews they literally ask the syntax so no choice but to memorize.
Best video 🎉
Thank you so much 🥹🥹❤
Sir ji , aap ka teaching concept bohot sahi hai since im from non technical background and i need this kind of teaching so that i can get things easily. Keep it sir ji
Harry bhaiya aap great ho ,
Bohot aachi video banayi, bohot aache se easily samjh aaya
Thanks you so much 🥰❤️
Harry Sir.. Thanks for teaching. I made a python bot to comment Thank you 100 times. But didn't use as this will create nuisance.. Thank you Sir once again
IS VIDEO SE LEVEL BADNE LAGA GURU JI. GOOD JOB
you are the best programmer of this country so thankful for you
comment after one year of video best tutorials ever with amazing notes.
Prabhu aapke charan kha hai really sir you are explaining each and everything with transparency and i am really liking your tutorials alot and thanks for explaining each and everything and i am your fan sir.
thanks a lot to u , because i was so confuse regarding all these but your this video has cleared all my doubts . Actually u r doing a great job. thanks for helping a lot of students in their path of learning java.
THANK YOU SIR, NO DOUBT YOU ARE BEST SIR. YOU ARE PRIDE OF INDIA.❤❤❤♥♥
Sir ,I am learning under your guidance,i am following whatever you are saying , thanks sir
I get to learn too much in this vedio
U r Good Teacher Too Bro.......
It doesn't feels overwhelming..I can get through this video easily
33:49 jab tak suraj chand rahega harry bhai ka naam rahega
I am from non IT background but ur video is so helpful for me.... 😊so Thank u so much