Famous People
Conditional Statements
Math Class
User Classes
Misc Java
100

The inventor of the telephone

Who is Alexander G. Bell?

100

Used to check for String quality (not ==)

What is .equals?

100

The result of

int number1=-15
System.out.println(Math.abs(number1));

What is 15?

100

The template of the class when creating an object.

What is the default constructor?

100

Result of
true && true

What is true?

200

The Father of Computing

Who is Charles Babbage?

200

The counterpart to if

What is else?

200

  The result of ..
double mynumber = 144;
System.out.println(Math.sqrt(mynumber));

What is 12?

200

This template overloads the default instance.

What is the overload constructor?

200

The object, part of the java. util package, is commonly used for user input.

What is a Scanner class?

300

The inventor of Apple

Who is Steve Jobs!
300

The code runs when the condition is.

What is true?

300

The Math class method generates a random number.

What is the Math.random() method?

300

This method returns values when called.

What is the accessor method?

300

father of the Java programming language

Who is James Gosling?

400

Inventor of the WWW

Who is Tim Berners-Lee

400

The result when
int x = 10;
if (x >25)
{System.out.println("Hello");}
else
{System.out.println("Goodbye");}

What is Goodbye?

400

    The result of ..
  double x = 4;
    double y = 2;
    System.out.println(Math.pow(x,y));

What is 16?

400
This method type modifies or resets the private variables.

What is the mutator method?

400

The assignment operator

What is =?

500

Coined the term "debugging"

Who is Grace Hooper?

500

The result when..
int i= 25;
if (i>10 && i<30){
System.out.println("You got it");
else
{System.out.println("You do not got it");}

What is "You got it"?

500

The package that allows you to use predefined classes.

What is import java.lang.* or
What is import java.lang.Math?

500

These variables are not available outside of the class.

What are private instance variables?

500
The terms referring to the joining of two strings with the + operator

What is concatenation?