Computer Science, asked by vishal9311, 6 months ago

Q: What will be the outcome of the following code?
count=40
print(count>=30 and count<39)
1.True
2.False
3.Error
4.None of the Above

with explanation?

Answers

Answered by sunnyrana9729
0

Explanation:

the outcome of the following code is 4th

Answered by pk154640
9

Answer:

2.False

Explanation:

as the count=40 it does not satisfies the condition print (count>= 30 and count <39) and hence false print

Similar questions