Given |x - 2| >= 4, which of the following is true?

a. x - 2 >= 4 && x - 2 <= -4
b. x - 2 >= 4 || x - 2 <= -4
c. x - 2 >= 4 && x - 2 < -4
d. x - 2 >= 4 || x - 2 < -4


b. x - 2 >= 4 || x - 2 <= -4 means x - 2 >= 4and x - 2 <= -4. So B is correct.

Computer Science & Information Technology

You might also like to view...

Suppose Stack is a generic class that has one type parameter. The assignment

Stack integerStack = new Stack(10); a. is illegal. b. is permitted and safe. c. is permitted but unsafe, the compiler issues a warning message. d. is permitted but unsafe, the runtime environment issues a warning message.

Computer Science & Information Technology

User applications run in ______ which is the least trusted area.

A) Ring 0 B) Ring 1 C) Ring 2 D) Ring 3

Computer Science & Information Technology

The middle star in the accompanying figure has a point size of ____.

A. 0 B. 0.5 C. 1 D. 5

Computer Science & Information Technology

What are the two elements used when accessing websites?

a. Internet name b. Private IP address c. Personal name d. Public IP address

Computer Science & Information Technology