Computer Science, asked by adityapatel5767, 4 months ago

Q2) What will be the output of the following code:
1
age=45
If age >=18
print(“you can vote”)
else
print(" you Can not vote“)​

Answers

Answered by ravir099180
0

Answer:

whattttttttttttttttttttttt

Answered by parabatv
0

Answer:

You Can vote

Explanation:

here is age=45

when code performing task as if condition. then 48 >= 18 true. so that print you can vote.

suppose

if age=17 then 17 >= 18 fulse so that directly print you Can not vote

Similar questions