In java, when you divide an int by another int, the result will be an correct answers int
In java, functions are called correct answers methods
The Java statement counter++ will correct answers add 1 to the variable count
To help us collect information from the user through the keyboard in Java, we use a correct
answers Scanner
Every Java program consists of at least one correct answers class definition
Which of the following are characteristics of the python programming language correct answers
compiled
interpreted
A name defined in an outer scope is also available in all blocks nested inside that scope correct
answers True
Operation are things an object correct answers does
An object's attributes are implemented as correct answers variables
In Java class members are declared with the keyword correct answers static
A default constructor takes _____ arguments correct answers 0
Java boolean literal values are expressed in all lowercase correct answers True
, The java expression like the one below will evaluate to ________.
new Bunny("Flopsy", 8) correct answers an object reference
A reference type variable stores a _____________ correct answers reference
If a reference type variable does not store a reference to an object, then it stores __________.
correct answers a null reference
All of the Java primitive types are _______. correct answers value types
The two kinds of types in the Java programming language are ___________. correct answers
value and reference types
The differences between value types and reference types applies to parameters correct answers
True
Which of the following would declare an array of integers in Java? correct answers int[]
my_array;
We cannot delete individual elements from an array in Java correct answers True
We can use a variable as an index expression to access an array element in Java correct answers
True
Which of the following would declare and instantiate an array of 5 integers in Java? correct
answers int[] my_array = new int[5];
In java, a two dimensional array in Java is really an "array of arrays." correct answers True