Sir ji your videos are like a superfood. They have all the nutrients required for learning. I understand all the concepts in the 1st time itself. Please keep making such videos.
Apki video ko explain bahut acha karte ho maine jab se apki java 8 or spring boot ki video dekhi hai abb koi v dout nahi reh gaya hai thanks Ek react ki v achi video bana dijiye bhaiya
System.out.println("Length [ obj.lenghth() ] : "+name.length()); System.out.println("Character at Index 3 [ obj.charAt() ] : "+name.charAt(3)); System.out.println("Compare String [ obj.equals(obj2) ] : "+name.equals(name2)); System.out.println("Compare String and Ignore Case [ obj.equalsIgnoreCase(obj2) ] : "+name.equalsIgnoreCase(name2)); System.out.println("Compare String and Return Differnce ASCII value of 1st Mismatched character [ obj.compareTo(obj2) ] : "+name.compareTo(name2)); System.out.println("Compare String and Return Differnce ASCII value of 1st Mismatched character and Ignore Case [ obj.compareToIgnoreCase(obj2) ] : "+name.compareToIgnoreCase(name2)); System.out.println("Substring with BeginingIndex [obj.substring(4)] : "+name.substring(4)); System.out.println("Substring with BeginingIndex to EndIndex (**exclude the end index) [obj.substring(4,8)] : "+name.substring(4,8)); System.out.println("Substring with BeginingIndex to EndIndex (**exclude the end index) [obj.substring(4,8)] : "+name.substring(4,8)); System.out.println("Convert to Lower Case [obj.toLowerCase()] : "+name.toLowerCase()); System.out.println("Convert to Upper Case [obj.toUpperCase()] : "+name.toUpperCase()); System.out.println("Trim White Spaces from Starting and Ending [obj.trim()] : "+name.trim()); System.out.println("Replace the String [obj.replace(targetString,replacementString)] : "+name.replace("kunal","KUNAL")); System.out.println("Check String if it contains a Character or String [obj.contains(string)] : "+name.contains("kunal")); System.out.println("String Starts with string [obj.startsWith(string)] : "+name.startsWith("ku")); System.out.println("String Ends with string [obj.endsWith(string)] : "+name.endsWith("ma")); System.out.println("String is Empty or Not **consiedr WhiteSpaces [obj.isEmpty()] : "+name.isEmpty()); System.out.println("Check a Character/String Present on which Index Number **return index of 1st encounter of Character/String [obj.indexOf(character/String)] : "+name.indexOf('a')); System.out.println("Check a Character/String Present on which Index Number **return last encounter index of Character/String [obj.lastIndexOf(character/String)] : "+name.lastIndexOf('a')); int a=10; System.out.println("convert Integer to String [String.valueOf(integer)] : "+String.valueOf(a));
// FORMATING STRING USING STRING CLASS FUNCTION String formattedName=String.format("My Name is %s and Age %d . ","Kunal Sharma ",21); System.out.println(formattedName);
ASCII codes are assigned to every known alphabets, numbers, Special Characters etc. When it comes to UNICODE it is having a variety of them let suppose an emoji like 🤩 is having a UNICODE but not a ASCII code. UNICODE more likely to have all of Unique values for everything you use but ASCII have only limited for mainly based on key purposes...
bahot hi sundar content hai bhai mere. bahot kuch learn kiya. Thank you so much. Please ignore foolish comments.
Sir ji your videos are like a superfood.
They have all the nutrients required for learning.
I understand all the concepts in the 1st time itself.
Please keep making such videos.
Your comments are correct, and I don't feel bored reading them.
बोहोत ही सुंदर explanation sir😂❤
Apki video ko explain bahut acha karte ho maine jab se apki java 8 or spring boot ki video dekhi hai abb koi v dout nahi reh gaya hai thanks
Ek react ki v achi video bana dijiye bhaiya
Thanks and sure
Bhaiya Aap Aur videos banao Concept clear ho jata hai ❤❤❤🎉
thanks and bilkul
please make more videos on how to be discipline and maintain consistency
its a fun learning the you way tech
Bhaiya please make a deep video on spring data jpa mapping concept....one to one, onetomany , manyto many and bidirectional mapping
System.out.println("Length [ obj.lenghth() ] : "+name.length());
System.out.println("Character at Index 3 [ obj.charAt() ] : "+name.charAt(3));
System.out.println("Compare String [ obj.equals(obj2) ] : "+name.equals(name2));
System.out.println("Compare String and Ignore Case [ obj.equalsIgnoreCase(obj2) ] : "+name.equalsIgnoreCase(name2));
System.out.println("Compare String and Return Differnce ASCII value of 1st Mismatched character [ obj.compareTo(obj2) ] : "+name.compareTo(name2));
System.out.println("Compare String and Return Differnce ASCII value of 1st Mismatched character and Ignore Case [ obj.compareToIgnoreCase(obj2) ] : "+name.compareToIgnoreCase(name2));
System.out.println("Substring with BeginingIndex [obj.substring(4)] : "+name.substring(4));
System.out.println("Substring with BeginingIndex to EndIndex (**exclude the end index) [obj.substring(4,8)] : "+name.substring(4,8));
System.out.println("Substring with BeginingIndex to EndIndex (**exclude the end index) [obj.substring(4,8)] : "+name.substring(4,8));
System.out.println("Convert to Lower Case [obj.toLowerCase()] : "+name.toLowerCase());
System.out.println("Convert to Upper Case [obj.toUpperCase()] : "+name.toUpperCase());
System.out.println("Trim White Spaces from Starting and Ending [obj.trim()] : "+name.trim());
System.out.println("Replace the String [obj.replace(targetString,replacementString)] : "+name.replace("kunal","KUNAL"));
System.out.println("Check String if it contains a Character or String [obj.contains(string)] : "+name.contains("kunal"));
System.out.println("String Starts with string [obj.startsWith(string)] : "+name.startsWith("ku"));
System.out.println("String Ends with string [obj.endsWith(string)] : "+name.endsWith("ma"));
System.out.println("String is Empty or Not **consiedr WhiteSpaces [obj.isEmpty()] : "+name.isEmpty());
System.out.println("Check a Character/String Present on which Index Number **return index of 1st encounter of Character/String [obj.indexOf(character/String)] : "+name.indexOf('a'));
System.out.println("Check a Character/String Present on which Index Number **return last encounter index of Character/String [obj.lastIndexOf(character/String)] : "+name.lastIndexOf('a'));
int a=10;
System.out.println("convert Integer to String [String.valueOf(integer)] : "+String.valueOf(a));
// FORMATING STRING USING STRING CLASS FUNCTION
String formattedName=String.format("My Name is %s and Age %d . ","Kunal Sharma ",21);
System.out.println(formattedName);
17:43 pan khate h 😂😂😂😂
r u from LPU?
Sir, please make a video on debugging as well
ASCII or UNICODE confuse about it
Please tell difference?
Your videos are awesome.
ASCII codes are assigned to every known alphabets, numbers, Special Characters etc. When it comes to UNICODE it is having a variety of them let suppose an emoji like 🤩 is having a UNICODE but not a ASCII code. UNICODE more likely to have all of Unique values for everything you use but ASCII have only limited for mainly based on key purposes...
sir please continue java series i am total beginner
Hmare ezsnippet ho aap
Excllent❤
Sir 12th me less than 60 percent ho toh kya placement ni milti skills ho fir bhi plss reply🙏🏻🙏🏻
Sir ji Very good ❤❤❤
Sir ITS or Dronacharya both in greater noida or IPEC gajiyabad which is best for btech cse plss sir reply🙏🏻🙏🏻😔
Dronacharya better than ITS wese or bhi best option why these???
"Your voice is beautiful. Where are you from? Uttar Pradesh, Madhya Pradesh, or somewhere else?"
sir notes
Bhaiya python ka bhi start karenge aap next month sai?
yes
❤❤