Edit Game
Java Quiz
 Delete

Use commas to add multiple tags

 Private  Unlisted  Public



 Save

Delimiter between question and answer:

Tips:

  • No column headers.
  • Each line maps to a question.
  • If the delimiter is used in a question, the question should be surrounded by double quotes: "My, question","My, answer"
  • The first answer in the multiple choice question must be the correct answer.






 Save   21  Close
A sequence of four bits.
nibble
This type of loop has no way of ending and repeats until the program is interrupted.
infinite loop
What is the alternative expression of m += n?
m = m + n
What is the term that refers to a collection of related elements used to store the same type of data called?
Array
True of False: An array has a fixed length.
True
What value is stored in each of the 5 elements in the following array?
0
a sequence of characters
String
What is the output of the following code segment?
21
A sequence of statements that has a name, may have formal parameters, and may return a value
method
A sequence of eight bits.
byte
What is the output for the above code segment?
10
What is the expected output of the following expression? 19 % (2 + 3)
4
The keyword "method" is another name for ...
function
It is an access modifier used for variables, methods,and inner classes. It is accessible only within the same class.
private
It repeatedly executes a target statement as long as a given condition is true.
while
It refers to an expression or variable that can have only a true or false value.
boolean
It is an access modifier used for classes, attributes, methods and constructors, making them accessible by any other class.
public
It allows you to define a block of code to be executed if an error occurs in the try block.
catch
It is used to define a block of code to be tested for errors while it is being executed.
try
It is used at method declaration and definition to specify that the method does not return any type.
void
Java feature, which transmit the characteristic from parent class to the child class
Inheritance