题目
Fal25_CS003C_74229 Ch. 4 Pre-Quiz (Remotely Proctored)
单项选择题
How many times will the following loop run? i = 0 while i < 10 : print(i) i = i + 1
选项
A.0
B.9
C.10
D.8
查看解析
标准答案
Please login to view
思路分析
Consider the loop and how it changes the counter variable step by step.
Option 0: '0' — If the loop ran 0 times, the print statement would never execute. But the initial i is 0 and the condition i < 10 is true at the start, so the body executes at least once. Therefore this option is incorrec......Login to view full explanation登录即可查看完整答案
我们收录了全球超50000道考试原题与详细解析,现在登录,立即获得答案。
类似问题
Consider the following code : int i = 0; while (i < 5) { MessageBox.Show(i.ToString()); i++; } Which of the following is correct?
What is the output of the following code? int i = 2; int j = 4; while (i < j) { i++; j--; } MessageBox.Show(i.ToString());
What is the output of the code snippet given below? s = "abcde" i = 1 while i < 5 : if i > 1 : print(s[i])
How many times does the following code fragment display "Hi"? i = 10 while i >= 0 : print("Hi") i = i - 1
更多留学生实用工具
希望你的学习变得更简单
加入我们,立即解锁 海量真题 与 独家解析,让复习快人一步!