Write a for loop that counts now many times the number 17 appears in an array called randomData that has already been declared and initialized. The number of elements in the array is stored in an integer variable called SIZE.

int count = 0;

```
for (int i = 0; i < SIZE; i++)
if (randomData[i] == 17)
count++;
```

Computer Science & Information Technology

You might also like to view...

Windows 7 does not allow you to format a partition greater than _____ GB with the FAT32 file system

a. 16 b. 32 c. 64 d. 128

Computer Science & Information Technology

A company has implemented the capability to send all log files to a central location by utilizing an encrypted channel. The log files are sent to this location in order to be reviewed. A recent exploit has caused the company's encryption to become unsecure. Which o f the following would be required to resolve the exploit?

A. Utilize a FTP service B. Install recommended updates C. Send all log files through SMTP D. Configure the firewall to block port 22

Computer Science & Information Technology