12. Given below the two sets of code,
which set will take longer time to
execute? *
#Set-1
#Set-2
per=45.6
if por>=60:
print("First Division")
If per>=45:
print("Second Division')
if per>=33:
print('Third Division")
if per<33:
print("Fail")
per=45.6
if per>=60:
print("First Division")
elif per>=45:
print("Second Division")
elif per>=33:
print("Third Division")
elif per<33:
print("Fail')
Answers
Answered by
0
Answer:
I think it will be set 33 am not mistaken
Similar questions