题目内容

The following while statement will cause an infinite loop.-CODE---int count = 10;while (count <= 10)count = count - 1;-CODE---

A. 对
B. 错

查看答案
更多问题

An infinite loop will eventually exit from the while statement.

A. 对
B. 错

It is computer’s responsibility to detect and prevent infinite loops.

A. 对
B. 错

We can use compound statements in a while statement.

A. 对
B. 错

The while statement can express both counter-controlled loops and condition-controlled loops.

A. 对
B. 错

答案查题题库