Assuming n >=1, indicate the number of iteration(s) for the following loop. int i = 0; while (i > n) { } O 0 time On times O n-1 times On+1 times O infinite time

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter15: Recursion
Section: Chapter Questions
Problem 20PE
icon
Related questions
Question
**Question:**
Assuming \( n \geq 1 \), indicate the number of iteration(s) for the following loop.

```cpp
int i = 0;
while (i > n) {
    i++;
}
```

**Options:**
 - ○ 0 time
 - ○ n times
 - ○ n-1 times
 - ○ n+1 times
 - ○ infinite time

**Explanation:**

- The loop initializes the integer variable `i` to 0 and increments it by 1 as long as the condition \( i > n \) is met.
- Since `i` is initially 0, and `n` is greater than or equal to 1, the condition `i > n` will never be true at the start.
- Therefore, the loop will not execute even once.

**Correct Answer:**
 - ○ 0 time
Transcribed Image Text:**Question:** Assuming \( n \geq 1 \), indicate the number of iteration(s) for the following loop. ```cpp int i = 0; while (i > n) { i++; } ``` **Options:** - ○ 0 time - ○ n times - ○ n-1 times - ○ n+1 times - ○ infinite time **Explanation:** - The loop initializes the integer variable `i` to 0 and increments it by 1 as long as the condition \( i > n \) is met. - Since `i` is initially 0, and `n` is greater than or equal to 1, the condition `i > n` will never be true at the start. - Therefore, the loop will not execute even once. **Correct Answer:** - ○ 0 time
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Types of Loop
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning