What does this symbol represent [ ]?

A) either/or situation
B) optional
C) iteration
D) selection


A) either/or situation

Computer Science & Information Technology

You might also like to view...

Assuming the following pseudocode for the Fibonacci series, what is the value of the 5 th Fibonacci number (fibonacci (5))? fibonacci(0) = 0 fibonacci(1) = 1 fibonacci(n) = fibonacci(n – 1) + fibonacci(n

a. 1. b. 3. c. 5. d. 7.

Computer Science & Information Technology

Select the correct rules for encapsulation. If any rules need to be imposed in a particular order, then say so, mentioning which rules.

a) Make all class member variables public members of the class. b) Place the interface in the header file. What is the interface? c) Place the implementation in a separate code file (with file extension required by your compiler: .cpp, .cxx, etc), called the implementation file. What is the implementation? d) Having private members visible in the interface violates the philosophy of separating the interface from the implementation. Separate interface and implementation requires removal of all the private members from the class definition. You must put these in another part of the class definition in the implementation.

Computer Science & Information Technology

The keywords used in programming languages that use decisions to redirect the flow of a program are called ________

A) operators B) flowcharts C) pseudocode D) control structures

Computer Science & Information Technology

The ________ is the main pane in the PowerPoint window

A) Slide pane B) Design pane C) Slide/Outline pane D) Notes pane

Computer Science & Information Technology