हिंदी

Give the output of the following when num1 = 4, num2 = 3, num3 = 2. num1 = 2 + 9 * ((3 * 12) - 8)/10 print(num1) - Computer Science (Python)

Advertisements
Advertisements

प्रश्न

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

num1 = 2 + 9 * ((3 * 12) - 8)/10
print(num1)

टिप्पणी लिखिए

उत्तर

num1 = 2 + 9 * ((3 * 12) - 8)/10

# The expression within inner brackets will be evaluated first

num1 = 2 + 9 * (36 - 8)/10 

# The expression within outer brackets will be evaluated next

num1 = 2 + 9 * 28/10

# * and / are of the same precedence, hence, left to right order is followed

num1 = 2 + 252/10

num1 = 2 + 25.2

num1 = 27.2

Therefore, the output will be 27.2.

shaalaa.com
Expressions
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 5: Getting Started with Python - Exercise [पृष्ठ ११७]

APPEARS IN

एनसीईआरटी Computer Science [English] Class 11
अध्याय 5 Getting Started with Python
Exercise | Q 7. f) | पृष्ठ ११७
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×