When in Slide Show view, you can zoom into a section of the slide by clicking the:

A) forward arrow. B) magnifying glass icon button.
C) back arrow. D) zoom slider button.


B

Computer Science & Information Technology

You might also like to view...

What is wrong with this call statement? Print Name(string name);

A. It’s missing “void”. B. The datatype should be removed. C. The semicolon should be removed. D. Nothing is wrong with it.

Computer Science & Information Technology

In the following code, which lines make up the constructor(s)?0 public class Bus {1 private BankAccount ba;2 private double fuelLeft;3 private final double FUEL_MAX = 40.0;4 private final double FUEL_COST = 3.54;5 public Bus(BankAccount baRef) {6 fuelLeft = 0;7 ba = baRef;8 }9 public void fillTank() {10 double cost = (FUEL_MAX - fuelLeft) * FUEL_COST;11 if (ba.pay(cost) == true) {12 fuelLeft = FUEL_MAX;13 }14 }15 public double getFuelLeft() {16 return fuelLeft;17 }18 }

A. Lines 1-4 B. Lines 5-8 C. Lines 1-8 D. Lines 0-18

Computer Science & Information Technology

Which of the following statements about graph traversal is false?

A. Depth-first traversal of a graph requires a stack or a recursive algorithm. B. The breadth-first traversal of a graph requires a queue. C. A depth-first traversal processes the graph data in key sequence order. D. Because a vertex can have multiple parents, logic is requires to ensure that each vertex is processed only once. E. All traversals start at the first vertex of the graph.

Computer Science & Information Technology

Case Based Critical ThinkingCase 1You plan to add sound to your application. Answer the following questions regarding good design strategies. Which feature is not included as part of a standard user control plugin?

A. Start/stop B. Pause/play C. Increase/decrease the volume D. Select the background music to play

Computer Science & Information Technology