Java 1
Java 2
Java 3
Java 4
Misc
100
This method is required in all Java programs: public static void ______ (String[] args) { ... }
What is main?
100

In Java, this method is used to generate a random number

What is Math.random?

100
'c' is an example of this primitive data type
What is char?
100

This is the index of the very first item in an array

What is 0?

100

Shift cypher is also known as ...

What is Ceaser Cypher?

200

Keyword used to define a constant in Java

What is final?

200

What is used to return a remainder?

 What is % Java 2 ?

200
This single symbol is known as the statement terminator

What is a "semicolon"?

200

Data type that stores a 32 bit (4 byte) whole number ... 

What is an int?

200

The highest award in computer science is named after him...

Who is Alan Turing?

300
this prints out something to the console
What is System.out.println (or System.out.print)?
300

Implicit conversion is also known as Widening/ Automatic conversions...

What is Java 2?

300

The Java syntax for creating a single line comment

What is "two forward slashes"? (//)

300

Data type that stores a 64 bits (8 byte) whole number...

 What is a long?

300

 Software kit required to develop Java applications ...

What is Java Development Kit (JDK) ?

400

The output of: 

if (5 * 7 < 4 * 9) return true; else return false;

What is true?

400

If you name your Scanner scanner, this piece of code will read a double entered by a user

What is "scanner.nextDouble()?

400

This is the process of converting a variable from one data type to another

What is "casting"/"type-casting"?

400

Keyword that allows for a method to be called without creating an object...

What is static ?

400

Runtime environment where Java bytecode is executed...

 What is JMV?  

500

The names of 3 primitive data types for numbers in Java

What is short/int/long/float/double?

500

An attempt to divide an integer by zero will result in an ...

What is Arithmetic Exception ?

500

Name all primitive data types ... 

What are byte, short, int, long, double, float, Boolean, char ?

500

The process of analyzing and decrypting ciphers, codes, and encrypted text without using the real key.

What is Cryptanalysis?

500

If something went wrong in your try block, which block of code does your program go to next?

What is Catch block?