Correctly indent the following statement.

```
if (i > 0) if
(j > 0)
x = 0; else
if (k > 0) y = 0;
else z = 0;
```


```
if (i > 0)
if (j > 0)
x = 0;
else if (k > 0)
y = 0;
else z = 0;
```

Computer Science & Information Technology

You might also like to view...

If a user wants to switch to another shell, the shell must be in the ____ configuration file.

A. /etc/group B. /etc/protocols C. /etc/shells D. /etc/temp/shells

Computer Science & Information Technology

Searches take place faster in personal folders than any others on the PC

Indicate whether the statement is true or false

Computer Science & Information Technology

In a dual axis chart, one or more ________ is plotted on a secondary vertical axis

A) data points B) data series C) columns D) rows

Computer Science & Information Technology

The function ____ (if possible) evaluates an expression.

A. evaluateOpr B. evaluateOperand C. evaluateExpression D. evaluateAll

Computer Science & Information Technology