Computer Science, asked by hemaniahuja46, 3 months ago



16.Find the error and correct them
a=10
B==20
If a>b
Print(a)
Else if
print (b)
else
print("no number")
(2 Points)​

Answers

Answered by vikkychoudhary2004
0

Answer:

a = 10

b = 20

if a > b:

print (a)

elif:

print (b)

else:

print ("no number")

Answered by hritik1075
0

Answer:

It should be b=20

As == is used for comparison nd u r not providing any numerical entry in ur program

Similar questions