Which of the following would be used to check if a number stored in a variable named eights is divisible by 8?

a.
```
if(eights/8 == 0);
```

b.
```
if((eights/8)!= parseInt(eights/8));
```

c.
```
if(eights/8 != 0);
```

d.
```
1, 2, 3, 4, or 5
```


a.
```
if(eights/8 == 0);
```

Computer Science & Information Technology

You might also like to view...

The dequeue function in the linked list implementation of the queue does not depend on the number of elements because:

A. we only work with the front of the linked list B. it has a O( n ) time complexity C. a linked list doesn’t have any elements D. we can easily use the back pointer

Computer Science & Information Technology

A switch statement must have

a. a default case b. more than one non-default case c. a break statement d. none of the above e. all of the above

Computer Science & Information Technology

You can select a range using the keyboard by pressing the _____ key and then an ARROW key.

A. F2 B. F4 C. F6 D. F8

Computer Science & Information Technology

Select the command that can be used to check an ext2, ext3, or ext4 filesystem:?

A. ?mke2fs B. ?ext2fsck C. ?fdisk D. ?e2fsck

Computer Science & Information Technology