Advertisements
Advertisements
प्रश्न
Find the output of the following program segment:
i = 0; sum = 0
while i < 9:
if i % 4 == 0:
sum = sum + i
i = i + 2
print (sum)
टीपा लिहा
उत्तर
The ‘while’ loop will run till the value of 'i' is 8, and the condition in the ‘if’ function will return true for two values i.e. 4 and 8, which will be added to ‘sum’. The last statement will print the value of the variable ‘sum’.
OUTPUT:
12
shaalaa.com
The ‘While’ Loop
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 6: Flow of Control - Exercise [पृष्ठ १४०]
APPEARS IN
संबंधित प्रश्न
Find the output of the following program segment:
a = 110
while a > 100:
print(a)
a -= 2
Find the output of the following program segment:
var = 7
while var > 0:
print ('Current variable value: ', var)
var = var -1
if var == 3:
break
else:
if var == 6:
var = var -1
continue
print ("Good bye!")
Write a program to find the sum of digits of an integer number, input by the user.
Write a function that checks whether an input number is a palindrome or not.
[Note: A number or a string is called palindrome if it appears the same when written in reverse order also. For example, 12321 is a palindrome while 123421 is not a palindrome.]