ECP - Final

Is this your test? Login to manage it. If not, you can make a quiz just like it.

This is a non-interactive preview of the quiz content.

1.
1 point
How many Hellos will this loop display?

for (int p = 0; p <= 10; p++)
{
System.out.print("Hello");
}
2.
1 point
Word, PowerPoint and Excel are all examples of
3.
1 point
What is the output of this program segment?

for (int p = 3; p <= 30; p+=5)
{
System.out.print(p + " ");
}
4.
1 point
How many Hellos will this loop display?

for (int p = 0; p <= 10; p+=2)
{
System.out.print("Hello");
}
5.
1 point
Which of the following describes the binary system used by a computer?
6.
1 point
About how many bytes are in a gigabyte?
7.
1 point
Which of the following is a proper Number value?
8.
1 point
What is the output of this program statement?

System.out.println("Computer Science");
9.
1 point
Which of the following is erased when you turn off the computer?
10.
1 point
People use _______ numbers and computers use _______ numbers.
11.
1 point
What is the output of this program segment?

for (int p = 10; p <= 20; p++)
{
System.out.print(p + " ");
}
12.
1 point
A _______is a sequence of instructions, which enables a computer to perform a desired task.
13.
1 point
Which of the following can be entered into a Text variable?
14.
1 point
What is the output of the program segment below?

int number = 5 + 8 * (3 + 2);
System.out.println(number);
15.
1 point
How many BITs are in a byte?