Variable types
Declaring variables
Printing variables
100
102.32

What is a double?

100

boolean f = false;

What is a correct way to declare a boolean?

100

int number = 0;

System.out.println(number);

What is printing out a variable?

200
false

What is a boolean?

200

int num = 19.0;

What is an incorrect way to declare an integer?

200

System.out.println(2);

What is printing out a raw integer?

300

"0.0"

What is a double?

300

char z = 'z';

What is a correct way to declare a character?

300

System.out.println("test");

What is printing out a raw string?

400

'.'

What is a Character?

400

String = "My name is";

What is an incorrect way to declare a string?

400

System.out.println('n');

What is a correct way to print out a raw character?

500

"-833.125378"

What is a string?

500

int num = 29:

What is a correct way to declare an integer?


500

System.out.println("hello!")

What is an incorrect way to print out a raw string?

M
e
n
u