An exception is ____________ a module an object a special function a standard module TRUE ANSWER : ? YOUR ANSWER : ?
In which of the following field, we can put our Button? Frame Window All of the mentioned Label TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is invalid variable in Python? _a = 1 __str__ = 1 None of the mentioned __a = 1 TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is not a standard exception in Python? ValueError IOError AssignmentError NameError TRUE ANSWER : ? YOUR ANSWER : ?
Which Python is used by client to opens a TCP connection to hostname? All of the mentioned s.accept() s.bind() s.connect() TRUE ANSWER : ? YOUR ANSWER : ?
Which one of these is used for floor division in Python? / % None of the mentioned // TRUE ANSWER : ? YOUR ANSWER : ?
What does the function re.match do? none of the mentioned such a function does not exist matches a pattern at any position in the string matches a pattern at the start of the string TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following blocks will be executed whether an exception is thrown or not? Else except Assert finally TRUE ANSWER : ? YOUR ANSWER : ?
What error occurs when you execute the following Python code snippet? apple = mango ValueError SyntaxError TypeError NameError TRUE ANSWER : ? YOUR ANSWER : ?