The for header__________ can be used to vary the control variable over the odd num- bers between 1 and 10.

```
a) for ( int i = 1; i <= 10; i += 1 )
b) for ( int i = 1; i <= 10; i += 2 )
c) for ( int i = 1; i <= 10; i -= 1 )
d) for ( int i = 1; i <= 10; i -= 2 )
```

```
b) for ( int i = 1; i <= 10; i += 2 )
```

Computer Science & Information Technology

You might also like to view...

Which of the following is required to pass traffic from one VLAN to another?

A. A layer three switch B. A layer two switch C. A server with NICs on both VLANs D. A layer one switch

Computer Science & Information Technology

Which digital signal modulation method is a binary modulation technique in which the carrier signal's frequency is changed to represent a 1 or 0 bit?

A. ASK B. FSK C. PSK D. FDM

Computer Science & Information Technology