Which of the following is considered a multiple-alternative if statement?

```
a. if (x < y)
r = r + 1;
else if (x > y)
r = r - 1;
else

r = 0;

* b.if (x == y)
x = x + 1;
else

y = y + 1;

c. if (x == y)
cout << y;
if (x == t)
cout << t;

d. if (x == y)
if (t == m)
r = r + 1;

e. None of the above.
```


```
* b.if (x == y)
x = x + 1;
else
y = y + 1;
```

Computer Science & Information Technology

You might also like to view...

In the binary numbering system, each place value digit can have ________ possible values

Fill in the blank(s) with correct word

Computer Science & Information Technology

What is one way the user can tell that records cannot be deleted in a form?

A) There is no way to tell if records cannot be deleted. B) The Delete command is grayed out. C) The Delete command has a line through it. D) The Delete command is not visible.

Computer Science & Information Technology

The ________ error value indicates that the formula contains the wrong type of data

A) XVALUE! B) #VALUE C) VALUE! D) #VALUE!

Computer Science & Information Technology

In the classful addressing scheme, what range of network addresses is considered a Class B?

a. 1.x.y.z to 126.x.y.z b. 128.0.x.y to 191.255.x.y c. 192.0.0.x to 223.255.255.x d. 224.x.y.z to 255.x.y.z

Computer Science & Information Technology