English

Give the output of the following when num1 = 4, num2 = 3, num3 = 2. print(5 % 10 + 10 < 50 and 29 <= 29) - Computer Science (Python)

Advertisements
Advertisements

Question

Give the output of the following when num1 = 4, num2 = 3, num3 = 2.

print(5 % 10 + 10 < 50 and 29 <= 29)

Short Note

Solution

print(5 % 10 + 10 < 50 and 29 <= 29)
Taking the above statement in two separate parts

LHS :
5 % 10 + 10 < 50
5 + 10 < 50
15 < 50
True

RHS:
29 <= 29
True

Now, the complete equation can be written as
print(True and True)
Therefore, the output will be 'True'.

shaalaa.com
Operators in Python - Operators - Arithmetic Operators (-,+,*,/,%)
  Is there an error in this question or solution?
Chapter 5: Getting Started with Python - Exercise [Page 117]

APPEARS IN

NCERT Computer Science [English] Class 11
Chapter 5 Getting Started with Python
Exercise | Q 7. m) | Page 117

RELATED QUESTIONS

Write a logical expression corresponding to the following statement in Python and evaluate the expressions (assuming variables num1, num2, num3, first, middle, and last are already having meaningful values):

The sum of 20 and –10 is less than 12.


Write a Python program to convert temperature in degrees Celsius to degrees Fahrenheit. If the water boils at 100 degrees C and freezes at 0 degrees C, use the program to find out what is the boiling point and freezing point of water on the Fahrenheit scale. (Hint: T(°F) = T(°C) × 9/5 + 32)


Write a Python program to calculate the amount payable if money has been lent on simple interest. Principal or money lent = P, Rate of interest = R% per annum and Time = T years. Then Simple Interest (SI) = (P × R × T)/100.

Amount payable = Principal + SI.

P, R, and T are given as input to the program.


Write a program to calculate how many days of work will be completed by three people A, B, and C together. A, B, and C take x days, y days, and z days respectively to do the job alone. The formula to calculate the number of days if they work together is xyz/(xy + yz + xz) days where x, y, and z are given as input to the program.


Write a program to enter two integers and perform all arithmetic operations on them.


The volume of a sphere with radius r is `4/3πr^3`. Write a Python program to find the volume of spheres with radii 7cm, 12cm, and 16cm, respectively.


Write a program that asks the user to enter their name and age. Print a message addressed to the user that tells the user the year in which they will turn 100 years old.


The formula E = mc2 states that the equivalent energy (E) can be calculated as the mass (m) multiplied by the speed of light (c = about 3 × 108 m/s) squared. Write a program that accepts the mass of an object and determines its energy.


Give the output of the following when num1 = 4, num2 = 3, num3 = 2.

print(10 + 6 * 2 ** 2 != 9 // 4 - 3 and 29 >= 29/9)


Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×