I was thinking Java is difficult to learn. But you teach every concept friendly , like two friends are taking. Now I think Java is simple and fantastic programming language. Thank you 🙏 @navin reddy sir for teaching us java in simple way. My each concept of java is now clear.
@sriramb34111 ай бұрын
Java is easy if you are well versed in c or c++
@flymykim Жыл бұрын
"when you use else, there is a compulsion to use if." You have a very excellent way with words. It would be a crime if youre not a PHD. CS professor is one of your callings. Even the explanation of string immutability you have is excellent. Concise and also covering stack/heap memory. Perhaps the best explanations of java concepts on youtube.
@fezaiozcan2227 Жыл бұрын
I am learning Java , i have tried many tutorials and these are the best ones. thanks
@yomnakamal4988 Жыл бұрын
Best java course i could find for free thank u soooo much
@irfanshaik-j6n Жыл бұрын
Its really good example you have explained very well. thanks for the video.
@TG-DGTM4862 ай бұрын
Thank you very much sir... Excellent and compact explanation ❤
@debmalyamukherjee6332 Жыл бұрын
Sir thanku so much for this new playlist.. I learn lot from this new playlist.. sir one request to you that plz make one new playlist like this on spring boot from basic to advanced.plzz sir
@suryanaidu9193 Жыл бұрын
Thank you soo much Sir 😍❤️ For your videos and Efforts Sir 😍🥺 Can you please make Advance Java (jee).
@saiyadsakib5928 Жыл бұрын
Yes sir..
@RonaldoGoud4 ай бұрын
05:55 We don't do that here Avengers : Infinity War , Wakanda Scene 😂😂😂
@Vijay-zt4nx Жыл бұрын
your class is simply super but small request from my side explain syntax along with the example, it will be more useful.
@akshay7820 Жыл бұрын
5:55 We don't do that here
@jayasurya79273 ай бұрын
class Hello { public static void main(String[] args) { float a = 5.6f; float b = 5.5f; int x = 10; int y = 11; boolean c = true; if(a>b) { System.out.println(true); if (x < y) { System.out.println(false); } } else { System.out.println("Invalid input"); } } } Option: a) true b) false c) all the Above d) Invalid input Answers please😁😇
@user-qw2em4fu2tАй бұрын
c,)
@Fas832-f8rАй бұрын
Thanks for Telusko.
@gollacharanyadav55675 ай бұрын
Thank you so much sir for giving this lecture
@devanshusachdev7367 Жыл бұрын
Notification: Marvel studios wants to know your location (5:55)
@abhishekbasu78379 ай бұрын
Hi sir please make tutorial on Selenium with Java. For automation testing. Need your help
@christhelemaque4187 Жыл бұрын
Please sir update for SpringBOot
@DenyTheZeitgeist3 ай бұрын
I still don't understand what's going on here, but at least I understand it a little more than 0. Probably >0 &&
@Caped_Crusader7 Жыл бұрын
Do we not need curly brackets for if and else statements?
@Unknown-rt9vl Жыл бұрын
For larger Statment needed
@hritikyemde1014 Жыл бұрын
If your "if" or "else" block contains more than one statements then it requires curly braces, but if your "if" or "else" block contains single statement then it curly braces are optional
@AnuragRawat01 Жыл бұрын
When you have only one statement after the condition then it's optional to use curly brackets But when you have more than one statement after the condition then it becomes compulsion to use curly brackets 😃 Hope you understand it💯🙏
@umamaheswararao7175 ай бұрын
Why are u using public class hello And what does (String args[]) means
@jayasurya79273 ай бұрын
2) class Hello { public static void main(String[] args) { float a = 5.6f; float b = 5.5f; int x = 10; int y = 11; boolean c = true; if(a>b) { System.out.println(true); if(x < y) { System.out.println(false); if(ay)) { System.out.println(true); } } } else { System.out.println("Invalid input"); } } } Option: a) true b) false c) all the Above d) Invalid input Answers please😁😇
@krishnaraj.r-lw6kqАй бұрын
true false true
@venkyVenkatesh12345-r Жыл бұрын
how can i practice sir iam understood everything you tolled