@BroCodez

Drinking game: Take a drink everytime I say the word 'VaRiAbLe'


//**********************************************
public class Main {

	public static void main(String[] args) {
		
		String x = "water";
		String y = "Kool-Aid";
		String temp;
		
		temp = x;
		x=y;
		y=temp;
		
		System.out.println("x: "+x);
		System.out.println("y: "+y);
	}
}
//**********************************************

@haroldw2823

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!!!!

@treebit

That's what I call visualisation!

@АлексейСоловьёв-ь3щ5ш

This is the most obvious explanation for beginners I've ever seen. Thank you, bro!

@yecreeper

Visual teaching is always great, its even better when the visuals are funny!

@laylachisom8996

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!!

@nailpluckers

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! :)

@huuloc8719

Today, I start learning OOP in Java. Thank you so much for this free course. I will comment on every video I have learned.

@GeoffreyofCastille

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!

@sushantlama9010

Best explanation in  the YouTube history......

@selerdem1391

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.

@mercycebu2896

I'm a begginer in java programming and your tutorials helps me a lot♥️

@drone-Eye

Bro, I had Java-phobia, but thanks to you that's faded. Simply, great work brooooo!!!

@snekeater980

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

@rekan_98

I have been started studying at the university for 3 years ,but this helped me a lot to understand the swapping logic thanks

@mansalek

that visual representation was genius bro

@JuliHoffman

Sorry about your floor, Bro. This visualization actually made sense! Thank you!!!

@kiwis2blue

Breathtaking visuals.

@theresillientone

best coding teacher cant express how good he teaches

@TheAnuNay

I am watching it in March 2024 and found the coolest way to understand.