This is the first time when I feel proud to my decision to choose java language for coding, maam you really awesome teacher, I have decided to watch all your videos , your 16-20 vedios far far better than any playlist , Your great teacher🙏🙏 Love🙇🙇❤ from India.
@blinkypie2232 жыл бұрын
Before I used to fear java ma'am ,Thank you ma'am , now I became an expert to solve any question easily with simple logic just because of your efforts 💕
@highclassmafia5361 Жыл бұрын
Same bro
@deeptijain43272 жыл бұрын
Your the best teacher concerning java out there
@kumarsharad20272 жыл бұрын
These concept of string videos is something else, Thank you, Cant Express, So Awsome!!
@thekartikkandpal8 ай бұрын
Utterly beautiful explanation..!! Hats Off!!! 🤩🤩
@hashtag-ll3ic4 ай бұрын
extremely helpful as I'm an ICSE student ma'am , Hats off 💯
@monicajayakumar6113 Жыл бұрын
I wish I had a teacher like you in school..
@kritvipandey51069 ай бұрын
thank you so much you saving my boards 🙏🙏
@Harshad-um7xr10 ай бұрын
Thank you so much helped a lot!!
@simplivandcoding77892 жыл бұрын
veryvery wonderfuul teaching
@HrishabhKushwah8 ай бұрын
Wow what an explanation!
@subhashinisinha12802 жыл бұрын
Thanku man, i was finding this type of video
@rabh-ro6ce16 күн бұрын
looks like this is a simpler template compared to what you suggested, isn't it?..?? String name = "Saurabh Knows Java"; String words []= name.split(" "); for(int i=0; i < words.length; i++) { System.out.println(words[i]); }
@Zupiterr Жыл бұрын
what about if more white space between the word?
@saini4247 Жыл бұрын
Simply coding is love!!!!!!!!!
@saini4247 Жыл бұрын
She made coding really easy........Handsoff to you......our school teacher teaches so many logics but did not tell us wat to solve them ❤️❤️❤️❤️❤️
@Sudharsanprabu4574 ай бұрын
Mam i need this type of video for array also
@SimplyCoding4 ай бұрын
You can watch on playlist on arrays - kzbin.info/aero/PLWWFf_h_MQRo0CIdiYhNjAJAUudfoEYjt
@PlaxmiSrivastav Жыл бұрын
How to print a double letter sequence program in string? Please explain.
@smartstruggle983810 ай бұрын
Awesome 👍👍
@ddk10622 жыл бұрын
Excellent video, thanks for it 🙏🙏🙏
@umakantapradhan5745 Жыл бұрын
Underrated video
@wilsonvaboum13382 жыл бұрын
Excellent video, thanks for it 🙏🙏🙏 However, whe you said if (c !=' '); isn't ! You can write if(!Character.isWhitespace());
@maheshm65578 ай бұрын
Thank you ❤
@Rajanrajaram Жыл бұрын
No one Can think java program is so easy......
@SHIVAAY9442 ай бұрын
2,3 program is not working getting StringIndexOutOfBound CE
@jitendradhaka4780 Жыл бұрын
Thank you so so much
@sona12315 Жыл бұрын
Thank you soo much
@simon-iu2jb2 жыл бұрын
6:00 doesn't work if word contains 1 letter like "i am"
@himats7195 Жыл бұрын
try putting if condition (w.length()>1)
@indiancarowners73722 жыл бұрын
I was waiting for it thanks
@sanjeevhansanur62032 жыл бұрын
very good
@NeverStopLearning56 Жыл бұрын
How to print alternate characters ? And how to convert print convert the alternate characters to uppercase and print it
@SimplyCoding Жыл бұрын
Just add i%2 == 0 as a condition before print to print alternate characters. Use the same condition above and if true, convert to uppercase and and then print, else print as is.
@NeverStopLearning56 Жыл бұрын
@@SimplyCoding thank you
@NeverStopLearning56 Жыл бұрын
@@SimplyCoding can you please type both the logics and pin this comment, So that even others will get to know....
@sandhyak26572 жыл бұрын
only one word is getting read in the sentence. can someone help me with the working code
@eliaszeray7981 Жыл бұрын
Great! Thank u.
@varungola47202 жыл бұрын
Thank you mam🙂🙂🙂
@Sneha-gx3zw2 жыл бұрын
Thank you :)
@cherukurisagarteja793810 ай бұрын
explantion is awesome madam but the code doesn't give a correct output
@crewify54602 жыл бұрын
last coding not working mam
@ShivamSingh-gc6pm Жыл бұрын
Thanku mam🙏.
@muthuraja45232 жыл бұрын
Last program 15.45 doesn't work
@himats7195 Жыл бұрын
I have added if conditions to solve this. If there is any other better way please suggest. Thanks. else { char first = w.charAt(0); char last = w.charAt(w.length() - 1); if (w.length() == 1) { ns = ns + first + " "; } if (w.length()==2) { ns = ns + last + first + " "; } else if (w.length() > 2) { String middle = w.substring(1, w.length() - 1); ns = ns + last + middle + first + " "; }
@mouni-o-2 жыл бұрын
Mam please do it in python mam please mam and matrix method also in logical way
@naveenkumar-gw4nh3 ай бұрын
All the programs in this video are wrong!! I don’t know how people without even working on them and appreciating wrong info. simply coding please correct yourself, you are spoiling many people’s life’s.
@SimplyCoding3 ай бұрын
Why don't you paste your program over here, we can help you find the mistake you have done in copying from video
@pwseАй бұрын
At 6:00 shouldn't the iteration of i go from 0 to I