answer please give me
Answers
1. (a) F5 2. (b) Input 3. Control 4. Computer Network 5. E-mail 6. (a) True (b) False (c) True
13. #program to input two numbers depending upon user's choice add, subtract, multiply or divide the numbers.
a = int (input ( "enter the first number"))
b = int (input ( "enter the second number"))
operator = str (input ( "enter the operator"))
if operator == "+":
ans = a + b
print ( "sum of", a, "and", b, "is :", ans)
elif operator == "-":
ans-a-b
print ( "difference of", a, "and", b, "is :", ans)
elif operator == "*":
ans = a * b
print ( "product of", a, "and", b, "is :", ans)
elif operator == "/":
ans = a/b
print ( "after dividing", a, "by", b, "the ans is :", ans)
else:
print ( "please choose some other operator")
14. ..... MY APOLOGIES BUT I DUNNO ANSWER OF THIS QUESTION THUS, PLS PARDON THIS LITTLE BIRD. (╥﹏╥)
.
.
.
ALL ANSWERS FROM 2 - 12 ARE IN ATTACHMENT AS BRAINLY WASN'T ALLOWING ME TO WRITE THE WHOLE.