Computer Science, asked by ishandragonballz, 8 months ago

Write the output of the following code fragment:

x = 25

if x > 30 :

print (“I am greater”)

else:

print (“I am smaller”) ​

Answers

Answered by BrainlyProgrammer
3

Answer:

I am smaller

Explanation:

Mark me brainliest brother

Answered by anindyaadhikari13
1

Question:-

Write the output of the following code.

Output:-

I am smaller.

As the value of x is less than 30 so, if part will not execute, else part will execute.

So,

"I am smaller" is printed.

Similar questions