Computer Science, asked by s132511avansh8102, 3 months ago

print( 7**2 > 32//2 and 5**2==25)​

Answers

Answered by Anonymous
1

 {\boxed{\underline{\purple{\bf\tt{Code:} } }}}

print( 7**2 > 32//2 and 5**2==25)

 {\boxed{\underline{\green{\bf\tt{Evaluation :} } }}}

7**2>32//2

= 49>16 will give true

And

5**2==25

=25==25 will give true

And if both are True, then the and operator will evaluate to True.

=7**2 > 32//2 and 5**2==25

=49>16 and 25==25

= True and True

=True

 {\boxed{\underline{\orange{\bf\tt{Output :} } }}}

True

Similar questions