Sometimes you want to take action when one or the other of two conditions is true, this type of compound condition is called a(n) ____ decision.

A. AND
B. OR
C. NOR
D. NOT


Answer: B

Computer Science & Information Technology

You might also like to view...

Which of the following statements will display the maximum value that a double can hold?

a. System.out.println(Double.MAX_VALUE); b. System.out.println(Double.MAXIMUM_VALUE); c. System.out.println(Double.MAX_VAL); d. System.out.println((MAX_VALUE));

Computer Science & Information Technology

The StringBuilder contents at the end of this segment will be ________.

Consider the statements below: StringBuilder sb = new StringBuilder("a toyota"); sb.insert(2, "landrover"); sb.delete(11, 16); sb.insert(11, " "); a. a landrovertoyota b. a landrover a c. a landrov a d. a landrover toy a

Computer Science & Information Technology

Once an array is instantiated, its size cannot be changed.

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

Computer Science & Information Technology

Case-Based Critical Thinking Questions ? Case 1-2 Ted is asked to create a page containing his family photos for a family reunion website. He will has about 20 pictures to post, with a caption that he wants to display before each one. Each picture is a group photo of a particular family. ? Which tag will Ted need to use to display the pictures?

A. ?


B. ?
C. ?



D. ?

Computer Science & Information Technology