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 means x - 2 >= 4and x - 2 <= -4 . So B is correct.
Computer Science & Information Technology
You might also like to view...
An array is one or more computers on which the online responder service is installed and managed from the Online Responder snap-in
Indicate whether the statement is true or false
Computer Science & Information Technology
Label the elements of three-by-five two-dimensional array sales to indicate the order in which they’re set to zero by the following program segment:
``` for (int row = 0; row < sales.length; row++) { for (int col = 0; col < sales[row].length; col++) { sales[row][col] = 0; } } ```
Computer Science & Information Technology