Which type of structure makes a decision based on one or more conditions?

A. looping
B. selection
C. iteration
D. question


Answer: B

Computer Science & Information Technology

You might also like to view...

Show the output of the following code:

``` public class Test { public static void main(String[] args) { int[] x = {1, 2, 3, 4, 5}; increase(x); int[] y = {1, 2, 3, 4, 5}; increase(y[0]); System.out.println(x[0] + " " + y[0]); } public static void increase(int[] x) { for (int i = 0; i < x.length; i++) x[i]++; } public static void increase(int y) { y++; } } ``` a. 0 0 b. 1 1 c. 2 2 d. 2 1 e. 1 2

Computer Science & Information Technology

The Recheck Document button, which resets the Spelling and Grammar checker to flag previously ignored errors, is located in the:

A) Navigation pane. B) Proofing group of the Review tab. C) Tracking group of the Review tab. D) Word Options dialog box.

Computer Science & Information Technology

What is the structure of the default host name suggested by YaST?

A. yast-xxxx B. host-xxxx C. linux-xxxx D. server-xxxx

Computer Science & Information Technology

Answer the following statements true (T) or false (F)

9. Raw speed is far more important than how a processor performs when executing a given application. 10. The cache holds recently accessed data. 11. Operations performed by a processor, such as fetching an instruction, decoding the instruction, performing an arithmetic operation, and so on, are governed by a system clock. 12. A common measure of performance for a processor is the rate at which instructions are executed, expressed as millions of instructions per second (MIPS).

Computer Science & Information Technology