Dude that visual representation of switching content was the best I've seen. It actually has me thinking about programming in a different way now. Well done mate!!!!
That's what I call visualisation!
This is the most obvious explanation for beginners I've ever seen. Thank you, bro!
Visual teaching is always great, its even better when the visuals are funny!
It’s not very often I find a teacher I understand on YouTube for Java , but I now have Thanks for making it easy to understand!!
int a = 10, b = 20; int temp = 0 ; temp = a ; a = b ; b = temp; System.out.println(" The value of a is : " + a ) ; System.out.println(" The value of b is: " + b) ; Yay! Swapped the variable! :)
Today, I start learning OOP in Java. Thank you so much for this free course. I will comment on every video I have learned.
Found your channel looking for help in JavaFX - taking an online college course in Java and my instructor's idea of teaching is assigning a chapter to read, assigning a single program, assigning a quiz....and that's it. Watched your first JavaFX video and decided to start at the top because your videos are 1000% more useful than my class. Subscribed!
Best explanation in the YouTube history......
honestly bro ur videos are so helpful learning java because its not being presented as a robot professor who just reads out of the book in all of my courses. def gonna recommend u to all my classmates.
I'm a begginer in java programming and your tutorials helps me a lot♥️
Bro, I had Java-phobia, but thanks to you that's faded. Simply, great work brooooo!!!
public class SwitchingVariables { public static void main(String[] args) { String Mug = "Coffee"; String Glass = "Milk"; String ExtraCup; ExtraCup = Mug; Mug = Glass; Glass = ExtraCup; System.out.println("Mug with "+Mug); System.out.print("Glass with "+Glass); } } It was very easy to understand when you did the Water and Kool-aid showcase
I have been started studying at the university for 3 years ,but this helped me a lot to understand the swapping logic thanks
that visual representation was genius bro
Sorry about your floor, Bro. This visualization actually made sense! Thank you!!!
Breathtaking visuals.
best coding teacher cant express how good he teaches
I am watching it in March 2024 and found the coolest way to understand.
@BroCodez