CBSE Class 9 Computer Applications Question 11 of 16

Introducing Python — Question 11

Back to all questions
11
Question

Question 9

Write a program that generates the following output :

5
10
9

Assign value 5 to a variable using assignment operator (=). Multiply it with 2 to generate 10 and subtract 1 to generate 9.

Answer
Solution
a = 5
print(a)
a = a * 2
print(a)
a = a - 1
print(a)
Output
5
10
9
Get the Bright Tutorials app Stuck on a question? Ask Bright Buddy — your AI tutor — for step-by-step help in the app.