An exception is ____________ a special function a module a standard module an object TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following results in a SyntaxError? “He said, ‘Yes!'” ”’That’s okay”’ ‘”Once upon a time…”, she said.’ ‘3\’ TRUE ANSWER : ? YOUR ANSWER : ?
In Python, which of these in not a core data type? Dictionary Class Lists Tuples TRUE ANSWER : ? YOUR ANSWER : ?
All keywords in Python are in _________ lower case Capitalized None of the mentioned UPPER CASE TRUE ANSWER : ? YOUR ANSWER : ?
What does the function re.match do? none of the mentioned matches a pattern at any position in the string such a function does not exist matches a pattern at the start of the string TRUE ANSWER : ? YOUR ANSWER : ?
Which module in Python supports regular expressions? regex none of the mentioned re pyregex TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is invalid variable in Python? _a = 1 __a = 1 None of the mentioned __str__ = 1 TRUE ANSWER : ? YOUR ANSWER : ?
Is Python case sensitive when dealing with identifiers? None of the mentioned machine dependent no yes TRUE ANSWER : ? YOUR ANSWER : ?
What arithmetic operators cannot be used with strings in Python? * All of the mentioned – + TRUE ANSWER : ? YOUR ANSWER : ?