What is a double?
boolean f = false;
What is a correct way to declare a boolean?
int number = 0;
System.out.println(number);
What is printing out a variable?
What is a boolean?
int num = 19.0;
What is an incorrect way to declare an integer?
System.out.println(2);
What is printing out a raw integer?
"0.0"
What is a double?
char z = 'z';
What is a correct way to declare a character?
System.out.println("test");
What is printing out a raw string?
'.'
What is a Character?
String = "My name is";
What is an incorrect way to declare a string?
System.out.println('n');
What is a correct way to print out a raw character?
"-833.125378"
What is a string?
int num = 29:
What is a correct way to declare an integer?
System.out.println("hello!")
What is an incorrect way to print out a raw string?