While
For
Strings
Java miscellaneous
miscellaneous
100
The outcome of a while loop whose block of code does not affect the condition at all.

What is infinite loop?

100

A while loop and a for loop are interchangeable. 

What is True?

100

A sequence of characters enclosed by double quotes.

What is a string?

100
An operator used to a manually convert a value's data type to another.
What is the casting operator?
100
Video game enemy that was drawn on the coding lab's wall
What is the creeper?
200
When a while loop stops

What is when the condition becomes false?

200

The order in which the lines run for the following:

1.  for(int i = 0;

2.     i < 2; 

3.     i++){

4.     System.out.println(i);

5. }

What is

1, 2, 4, 3, 2, 4, 3, 2?

200

The output of:

String name = "lopez";

System.out.println(name.length());

What is 5?

200

The class that the random method comes

What is Math?

200
Lopez is an advisor to this grade year

What is 9th?

300

The output of this:

while(x < 10){

      x + 1;

}

System.out.println(x);

What is INFINITE LOOP ERROR ERROR ERROR?

300

A for loop that lets you run code for each value of x in the series 3, 6, 9, 12, 15, ..., 33

What is
for(int n = 3; n <= 33; n += 3){


}?

300

The output of:

String name = "lopez";

System.out.println(name.substring(2, 4));

What is pe?

300

Key word that can be used to distinguish between parameters and fields of a class.

What is this?

300

2.71828...

What is e?

400

The output of this:


int n = 0;

while(n <= 10){

     n++;

}

System.out.println(n);

What is 11?

400

The output of this:
for(int i = 0; i < 13; i++){

    if(i % 4 == 0){

            System.out.println(i);

    }

}

What is
4
8

12
?

400

The output of:

String name = "lopez";

System.out.println(name.indexof("opez"));

What is 1?

400

Special method called when creating an object

What is the constructor?

400

Pink feminine yoshi type character in mario, wears bow on head, has big diamond ring

Who is Birdo?

500

int x = 20;

int y = 10;

while(y > 1){

     x -= y;

     y -= 2;

}

System.out.println(x);

What is -10?

500

The output of:

int x = 0;

for(int i = 0; i < 3; i++){

     for(int j = 0; j < 2; j++){

              x++;

     }

}

System.out.println(x);

What is 6?
500

The output of this:

String color = "red";

if(color == "red"){

     System.out.println("yay");

}

else{

     System.out.println("nay")

}

What is undefined?

500

Prerequisite to calling a non static method.

What is an object must be created of the method's class? The method is then called using the object's reference, <reference>.<method call>

500

Main character of the video game "Mother 3"

Who is Lucas?

M
e
n
u