What does int number = 42; do?
int number = 42;
It declares an integer variable named number and initializes it to the whole number 42.
number
It immediately prints 42 without any output statement.
It creates a double-precision value whose required form is 42.0.
It stores the two characters 4 and 2 as a String.
4
2