Answer:
1) num1 = int(input("Enter the number to be checked: "))
if num1%2==0:
print("Your number is an even number!")
else:
print("Your number is not even!")
2) maths = int(input("Enter your maths mark: "))
english = int(input("Enter your english mark: "))
social = int(input("Enter your social mark: "))
science = int(input("Enter your science mark: "))
computer = int(input("Enter your computer mark: "))
Sum = maths + english + social + science + computer
average = Sum / 5
print("Sum of your marks are:",Sum)
print("average of your marks are:",average)
3) num = 0
while num <= 99:
num+=1
print(num)
Step-by-step explanation:
Welcome.