The statement, when executed in a while loop, skips the remaining statements in the body of the statement and begins the next iteration of the loop.

a) continue
b) break
c) next
d) None of the above.

a) continue

Computer Science & Information Technology

You might also like to view...

Step 4 is to select the best way to solve the problem. This means:

a. To weed out unacceptable solutions. b. To specify pros and cons of each valid solution. c. Select one solution after weighing the pros and cons. d. All of the above.

Computer Science & Information Technology

If there is a NodePtr named toDelete whose value points to a valid node in the list, which of the following statements would remove the node that follows toDelete from the list and return that memory to the freestore?

a. toDelete -> link = toDelete -> link ->link; delete toDelete-> link; b. tmp = toDelete -> link; toDelete -> link = tmp -> link; delete tmp; c. tmp = toDelete -> link; toDelete -> link = toDelete->link->link; delete tmp; d. All of the above e. none of the above f. A and B g. B and C

Computer Science & Information Technology