#1
Which of the following statements is used to terminate the current iteration in a loop and proceed to the next iteration?
1 answered
#2
In Python, which looping construct is used when you want to iterate over a sequence of elements?
1 answered
#3
Which keyword is used to skip the rest of the code in the current iteration and jump to the next iteration in a loop?
1 answered
#4
In C programming, what does the 'break' statement do?
1 answered
#5
Which of the following looping constructs is more appropriate for situations where the number of iterations is unknown?
1 answered
#6
What does the 'do-while' loop guarantee in C/C++ programming?
1 answered
#7
Which of the following is NOT a valid loop control statement in Python?
1 answered
#8What is the output of the following code snippet in Python?
What is the output of the following code snippet in Python?
```
for i in range(3):
print(i)
else:
print('Loop executed successfully!')
```
1 answered
#9
In Java, which loop is ideal for situations when you want the loop to run at least once, even if the condition is false?
1 answered
#10What is the output of the following code snippet in Python?
What is the output of the following code snippet in Python?
```
for i in range(5):
if i == 3:
break
print(i)
else:
print('Loop executed successfully!')
```
1 answered
#11
In Java, what is the difference between 'continue' and 'break' statements?
1 answered
#12What will be the output of the following code snippet in Python?
What will be the output of the following code snippet in Python?
```
i = 5
while i > 0:
print(i)
i -= 2
```
1 answered
#13
In Java, what does the 'continue' statement do?
1 answered
#14What is the output of the following code snippet in Python?
What is the output of the following code snippet in Python?
```
i = 0
while i < 5:
print(i)
i += 1
```
1 answered
#15
What is the time complexity of finding an element in an unsorted array using linear search?
1 answered
#16
What is the time complexity of finding an element in a sorted array using binary search?
1 answered
#17
What is the worst-case time complexity of bubble sort algorithm?
1 answered
#18
What is the average-case time complexity of quicksort algorithm?
#19