0 of 20 Questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 20 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
Which of the following are python operators?
What is the error which violates the rules of writing syntax?
Errors which occur during the execution of the program are known as?
Which of the following does the source code go through before running the code?
Which of the operators is used for “exponentiation”?
What is the output for 7//3 ?
What is the output for 7%3 ?
What is the output for 7/3 ?
Say x=4 then what is the value of x if we perform “ x *= 2 “?
Say x=7 then what is the value of x if we perform the operation “x //=3” ?
X=8 and Y =8 what will be the outcome of “ x == y ”?
Which of the following are logical operators?
Which of the following is an identity operator?
Lets say list1 = [1,2,3,4,5,6,7] and x = 6 what is the output of “ x not in list1”?
Which of the following membership operators?
Which of the following fall under control flow statement?
Which of the following is not an operator?
“!=” falls under what operator?
Which of the following is not a membership operator?
Which of the following is not a logical operator?