Computer Science - Online Test

Q1. Which of the following creates an object which maps data to a dictionary?
Answer : Option D
Explaination / Solution:
No Explaination.


Q2.

Identify the function call statement in the following snippet.

if __name__ =='__main__':

main(sys.argv[1:])

Answer : Option C
Explaination / Solution:
No Explaination.


Q3. Which of the following is called the master table?
Answer : Option B
Explaination / Solution:
No Explaination.


Q4. Which key is used to run the module?
Answer : Option D
Explaination / Solution:
No Explaination.


Q5. Which of the following carries out the instructions defined in the interface?
Answer : Option C
Explaination / Solution:
No Explaination.


Q6. Bundling two values together into one can be considered as
Answer : Option A
Explaination / Solution:
No Explaination.


Q7. Which of the following members of a class can be handled only from within the class?
Answer : Option A
Explaination / Solution:
No Explaination.


Q8. The Θ notation in asymptotic evaluation represents
Answer : Option B
Explaination / Solution:
No Explaination.


Q9. Which operator is also called as Comparative operator?
Answer : Option B
Explaination / Solution:
No Explaination.


Q10.

What is the output of the following snippet?

T=1

while T:

print(True)

break

Answer : Option B
Explaination / Solution:
No Explaination.