Which of the following will set the variable num to the value 8?

a.
```
num = pow(2, 3);
```
b.
```
num = sqrt(64);
```
c.
```
num = Math.pow(64, 2);
```
d.
```
num = Math.sqrt(64);
```

d.
```
num = Math.sqrt(64);
```

Computer Science & Information Technology

You might also like to view...

Answer the following questions true (T) or false (F)

1. True/False: If X = 2, the assignment statement Set Y = X + 4 will put the value of 6 into both X and Y. 2. True/False: The expression 43 % 1 = 0 is correct. 3. True/False: Computers perform all arithmetic operations in order, from left to right.

Computer Science & Information Technology

A ____ is a description that normally does not display as part of the slide show.

A. flag B. comment C. ScreenTip D. dialog box

Computer Science & Information Technology