Just have to say, you're a legend. Thanks for all the videos brother! You are helping a student in need.
@RandyDaGamer5 ай бұрын
Indeed. He’s helping a lot of students. He’s a good man.
@RandyDaGamer5 ай бұрын
You’re good at explaining. Concise and articulate.
@fabnsavvy Жыл бұрын
I am learning Loops right now and I thank you for explaining so well!
@cra_zy.cherry33303 жыл бұрын
Sir, you are teaching better than my teacher
@ramseycarolus2064 ай бұрын
I've been on for loops for almost 2 weeks now. You sir explained it brilliantly. I felt like a genius when the light bulb went on 😄.
@professionalprogrammer33244 жыл бұрын
I am understanding these concepts easily after learning C
@topperexam18265 ай бұрын
Why system .out +i
@vaibhavvarshithvaibhav85893 ай бұрын
MG bro😂😂😂🎉🎉
@vaibhavvarshithvaibhav85893 ай бұрын
MG bro🎉🎉🎉😂😂
@ashChad3 жыл бұрын
a better example of for loop than I got at uni........thanks bro
@rayonabs-c1j9 ай бұрын
That is best explanation I have ever seen
@sdilip5464 Жыл бұрын
thanks thanks thanks a lot these videos are a lot a lot clear and detailed the coomparision u did here is just awesome . we truly need this kind of videos
@najibassaadi55983 жыл бұрын
Great explanation!!! Thanks for helping me understand better!!!
@cristianvillalobos7701 Жыл бұрын
incredibly thorough video. Thank you!!
@YounisAlalwanyАй бұрын
Knowing the basics of dart made this super super super easy.. My friend a computer science graduate once told me that if you know one programming language, The other's are going to be so easy to learn. You are only going to struggle with the first one.
@florenti15292 жыл бұрын
Great explanation, excellent work.
@deepositive2 жыл бұрын
Tq..you made it more easier
@rodicaidu21668 ай бұрын
you explain better than my professor, thank you
@zain289511 ай бұрын
Such a life saver!!! THANK YOU THANK YOU THANK YOU
@squeekygee8322 Жыл бұрын
thank you.
@4ce8933 ай бұрын
simply legendary.
@ControllerCrusade6753 жыл бұрын
this helps a lot
@lyncker334311 ай бұрын
Excellent discusssion it was really clear. tho at 7:05 will adding a return i; to the body of the loop be redundant or add no additional value?
@Noahmurphy518 Жыл бұрын
Thank you pal! God bless you
@nishak6826 Жыл бұрын
Great sir. Really useful
@yasodyapanditha5071 Жыл бұрын
Well explained .Thank you .keep it Up !
@jimcarryomambak7871 Жыл бұрын
damn I never even thought that I could understand loop in just 8 minutes, better than my prof
@Noahmurphy518 Жыл бұрын
I swear me too!
@parbatbudha11504 жыл бұрын
can we d use float/double variable for looping purpose ???
@theblindprogrammer4 жыл бұрын
double[] inches = {1.3,4.2,59.4, 112.9, 88.7}; float[] bigNumbers = {1000000000,2000000000, 300000000, 400000000}; System.out.printf("%4s%15s", "Index", "Value"); System.out.println(); for (int i = 0; i < bigNumbers.length;i++){ System.out.printf("%4s%16s ", (i+1), bigNumbers[i]); } for (int i = 0; i < inches.length;i++){ System.out.printf("%4s%16s ", (i+1), inches[i]); }
@khaniesmakeuptutorials8649 Жыл бұрын
Thank you so much for teaching you're amazing and may Allah bless you Jazakallah
@sithumdilshan58783 жыл бұрын
Thank you so much this helps me lot
@miragon1768 Жыл бұрын
"As you can see" gets me too much🤣 though thank you for making it easy to understand!
@theakshatgupta_2 жыл бұрын
Excellent Explaination
@topperexam18265 ай бұрын
Why out put is hello 6
@Altair.11879 ай бұрын
++i != i++ my friend, in Java the precedence starts from left to right, so ++i means that i will be incremented by one and then used in the equation, i++ means you'll use the old i first in the equation then get it incremented by 1.
@LearnJava_Programming3 ай бұрын
True but that's in an equation. If you're looking at i++ as itself it is the same as ++i, both will increase i by 1. In an equation, it matters because the i value used might be different.
@Altair.11873 ай бұрын
@@LearnJava_Programming So you are proving what I was saying, they are not the same.
@LearnJava_Programming3 ай бұрын
@@Altair.1187 true but only in an equation.
@sanjubhaskar77448 ай бұрын
Thanks, I got it so nicely😊😉
@ishakeshri4849 Жыл бұрын
Well explain thnku for this video
@ashraf68504 жыл бұрын
Data type variable:type
@st4yclutch3912 жыл бұрын
Thanks
@Midy7552 жыл бұрын
Best explanation ever!
@Empower_UU Жыл бұрын
I don;t know what to say. Very helpful indeed
@madikarim264 Жыл бұрын
Right!
@BituKumar-fn4fe3 ай бұрын
Helpful
@adityaWZM8 ай бұрын
incredible video
@njabznmasikane3596 ай бұрын
Thanks so much!
@mr.shuklashukla32594 жыл бұрын
Sir.. I'm doing BTech form electronic and communications branch but I interested in android devlopment that's why I'm learning java but I confused that what i learn first opps or core java ,and i have no programing experience instead of c language . Plz sugges me .. and also sugges if you have any playlist related to opps or core . And I'm watching your java playlist sir your teaching style is very osm And you are great sir 💝😍
@theblindprogrammer4 жыл бұрын
If you are good at C, Java will be very easy for you. Learn Core Java first, like Primitives, Objects, Classess, Inheritance, Data structures, and those stuff. It will take you couple weeks since you know C. If you have any challenging questions about Java, please post, I might be able to help you.
@professionalprogrammer33244 жыл бұрын
If you want to learn Java ..First u need to learn the OOP's and then go for core Java ..it might be easy for u if u have knowledge in C..
@arunks8162 Жыл бұрын
thanks man
@souparno5065 Жыл бұрын
7:25 i have a problem like if i want to print "Hello" say, 15 times how do i do it? i wrote the code as: for( ; i
@suswithcherry92529 ай бұрын
if you are using a condition then the variable should be initialized first.
@ghita2003able2 жыл бұрын
Best explanations !
@khaledalsayeh12312 жыл бұрын
Are there power point documents for subscribers on the site ?
@ruthiie.y86964 ай бұрын
Wonderful ✨🙏🏾
@gyangaha1093 жыл бұрын
Thank you.
@officialzyloАй бұрын
the outputs you gave were wrong
@thesupergamer58948 ай бұрын
I missed class the day we went over this, and was totally confused about how this worked... now that I see it, I feel stupid for not understanding it sooner
@joshuaokafor88992 жыл бұрын
Bro!!!!!! your too good
@pudabear47652 жыл бұрын
great video! thank you
@richatiwari73832 жыл бұрын
You are just awesome!! 😭
@EdwinFlores-y6l Жыл бұрын
ur explanation is Fucking incredible
@charlieagyei2925 Жыл бұрын
Very good tutorial. but the output "Hello" will be printed five times not six times.
@yvngrxxd9078 Жыл бұрын
Yes hello will be printed five times, but it was print ( " hello " + I) where I = 6. It's because when it reached 6 in the loop, the loop stopped printing stuff
@ljaykhan5209 ай бұрын
A great video ❤
@ashraf68504 жыл бұрын
Make a video for each loop
@theblindprogrammer4 жыл бұрын
Yes, for each loop is shorter form of the long for loop. Here is an example String[] names = {"Bob", "John", "Adam", "Sarah"}; // long for loop System.out.printf("%4s%15s ", "Index", "Name"); System.out.println(); for (int i = 0; i < names.length;i++){ System.out.printf("%4s%15s ", i, names[i]); } // For each form for (String name : names ){ System.out.println("Name: " + name); }
@ritwiksaha80244 жыл бұрын
can you please make a video on "for each " loop.....????
@theblindprogrammer4 жыл бұрын
Yes, for each loop is shorter form of the long for loop. Here is an example String[] names = {"Bob", "John", "Adam", "Sarah"}; // long for loop System.out.printf("%4s%15s ", "Index", "Name"); System.out.println(); for (int i = 0; i < names.length;i++){ System.out.printf("%4s%15s ", i, names[i]); } // For each form for (String name : names ){ System.out.println("Name: " + name); }
@Arfisto4 жыл бұрын
You can find it on arfisto! Wish you happy learning
@melitajm4286 Жыл бұрын
@@theblindprogrammercan u say which programming language u have used here ?
@melitajm4286 Жыл бұрын
In java for(int i = 0 ; i
@theblindprogrammer Жыл бұрын
@@melitajm4286 I used Java, which language do you want me to write?
@sachithrawijesundara88413 жыл бұрын
Superb..
@usamashakeel97473 жыл бұрын
Good 👌
@Swagway1772 жыл бұрын
Idk how to say Thank You, but thanks well explained
@normangasan4 жыл бұрын
Thanks, but I have exam on April 1, please download videos before it🥺
@theblindprogrammer4 жыл бұрын
What problems do you have?
@normangasan4 жыл бұрын
The Blind Programmer I already done with exams, passed from all, thanks for asking🥳
@theblindprogrammer4 жыл бұрын
@@normangasan Good to hear, I just wanted to help. If you have any Java-related question/challange feel free to ask.