ShowPer Page
The actual working area in Microsoft Excel is:
NETNUST Entry TestComputer ScienceSpreadsheet Processing
The intersection of a row and column form a:
NETNUST Entry TestComputer ScienceSpreadsheet Processing
Which of the following is a spreadsheet:
NETNUST Entry TestComputer ScienceSpreadsheet Processing
The keyword $'break'$ cannot be used within:
NETNUST Entry TestComputer ScienceLoops
What is the final value of x after executing the following code: for (int x=0;x<10;x++)
NETNUST Entry TestComputer ScienceLoops
When does the code block following while (x<100) execute?
NETNUST Entry TestComputer ScienceLoops
The body of for loop with single statement ends with:
NETNUST Entry TestComputer ScienceLoops
The body of while loop with multiple statements ends with:
NETNUST Entry TestComputer ScienceLoops
When is for loop more appropriate than while loop?
NETNUST Entry TestComputer ScienceLoops
Which of the following is a loop statement?
NETNUST Entry TestComputer ScienceLoops
Semicolon is placed at the end of the condition in:
NETNUST Entry TestComputer ScienceLoops
While loop is also called:
NETNUST Entry TestComputer ScienceLoops
If you want a user to enter exactly 20 values, which loop would be the best to use?
NETNUST Entry TestComputer ScienceLoops
This means to increase a value by one:
NETNUST Entry TestComputer ScienceLoops
This statement maybe used to stop a loop's current iteration and begin next one:
NETNUST Entry TestComputer ScienceLoops
In a for statement, this expression is executed only once:
NETNUST Entry TestComputer ScienceLoops
A for statement contains three expressions: initialization, test and:
NETNUST Entry TestComputer ScienceLoops
A special value that makes the end of a list of loop body?
NETNUST Entry TestComputer ScienceLoops
Which statement is used to move the control to the start of loop body?
NETNUST Entry TestComputer ScienceLoops
The loop which never ends is called:
NETNUST Entry TestComputer ScienceLoops
A loop within a loop is called:
NETNUST Entry TestComputer ScienceLoops
Which statement causes a loop to terminate early?
NETNUST Entry TestComputer ScienceLoops
This loop is a good choice when you know how many times you want the loop to iterate in advance of entering the loop?
NETNUST Entry TestComputer ScienceLoops
Which of the following loop is called counter loop?
NETNUST Entry TestComputer ScienceLoops
In which loop, the condition comes before the body of the loop?
NETNUST Entry TestComputer ScienceLoops