Depending on the value previously assigned to the variable x, use an IF-THEN-ELSE statement to assign the appropriate text below to the variable answer.

"The value of x is less than zero."
"The value of x is greater than or equal to zero."

```
IF x < 0 THEN
LET answer = "The value of x is less than zero."
ELSE
LET answer = "The value of x is greater than or equal to zero." END IF
```

Computer Science & Information Technology

You might also like to view...

Click the ________ tab to begin a Word outline

A) Home B) Page Layout C) File D) Insert

Computer Science & Information Technology

The ____________ is a collection of information of all visits at all hospitals by a patient

a. Electronic medical record b. Electronic health record c. Datasheet d. None of the above

Computer Science & Information Technology