Sagot :
Answer:
Algorithm C:
(Python Programming Language)
if 4 < 5:
result = 5 + 4
print(result)
else:
print("no")
questions for algorithm C:
1. if else condition
2. greater than( boolean operation )
3. 4 and 5
4. True
5.addition
6. 9
7. the result processed from the second statement
Algorithm D:
whole_number = input("Input A Whole Number: ")
result = int(whole_number) + 5
print(result)
questions for algorithm D:
8. variable value
9. addition
10. the result(printed) of int(whole_number) + 5