Python Is an example of which programming language category?
A. interpreted
B. assembly
C. compiled
D. machine
What is the expected output of the following code?

A. 0
B. 1
C. The code is erroneous.
D. 2
The result of the following addition: 123 + 0.0
A. cannot be evaluated
B. is equal to 123
C. is equal to 123.0
Which of the following statements is false?
A. The right argument of the % operator can not be zero.
B. The ** operator has right-to-left associativity.
C. Multiplication precedes addition.
D. The result of the / operator is always an integer value.
The // operator:
A. performs integer division
B. performs regular division
C. does not exist
What do you call a computer program which directly executes instructions written in a programming language?
A. A compiler
B. An interpreter
C. A translator
You are designing a decision structure to convert a student's numeric grade to a letter grade. The program must assign a letter grade as speci ed as followed:

For example, if the user enters a 90, the output should be Your letter grade is A. Likewise, if a user enters an 89, the output should be Your letter grade is B.

Which of the following should you insert on Line-3, Line-5, Line-7 and Line-9?

A. Option A
B. Option B
C. Option C
D. Option D