Category 1
Category 2
Category 3
Category 4
Category 5
100

A ______ is a structure that allows repeated execution of a block of statements....

what is loop

100

A loop that never ends is called a(n)  loop....

what is an infinite loop

100

What are these:

NOT, AND, and OR,

what is Logical operator

100

 What are these: 

<, >, <=, >=, ==, !=

what are Comparison Operators

100

In the expressions b = 8 and c = --b, what value will be assigned to the variable c?

what is 7

200

Use a(n) _____ loop to execute a body of statements continually as long as the Boolean expression that co...

what is a 'while loop'

200

It is important that the loop control ______ be altered within the body of the loop....

what is variable

200

an ordered collection of elements 



what is a list

200

One execution of any loop is called a(n) ____.

what is an iteration

200

this is a code structure that has within parentheses are three sections separated by exactly two semicolons

what is for loop

300

an individual value in a list that is assigned a unique index

what is Element

300

You use a unary minus sign preceding a value to make the value ....

what is negative

300

a common method for referencing the elements in a list or string using numbers



what is Index

300

a repetitive portion of an algorithm which repeats a specified number of times or until a given condition is met.



what is Iteration

300

What is wrong with the following code?

while (4>2)

 System.out.println ("Hi there");

what is infinite loop

400

This cab manage complexity in programs by giving a collection of data a name without referencing the specific details of the representation.

what is abstraction

400

A loop controlled by the user is a type of  loop....

what is indefinite

400

How many times will outputLabel be called?

what is 60

400

the process of accessing each item in a list one at a time

what is traversal

400

Assume d and x are integers:

d = 5;

x = 2 * ++d;

What is the value of x?

what is 12

500

A(n) ____ is a kind of indefinite loop.

what is event-controlled

500

____ is the process of ensuring that a value falls within a specified range....

what is Validating data 

500

What is wrong with the following code?

x=1;

while (x<5);

 { System.out.println (x);

   x++;

}

what is Semicolon at the end of the while expression 

500

What is the output of the following code:

  

what is 122122

500

What kind of loop is this: (not while loop)

response = keyboard.nextInt();

while (response == 1){

    System.out.print ("Enter 1 to continue; 0 to    stop");

    response = keyboard.nextInt();

}

what is event - driven