Python Which of the following is invalid variable in Python? __a = 1 __str__ = 1 _a = 1 None of the mentioned __a = 1 __str__ = 1 _a = 1 None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Which of these about a dictionary is false? The values of a dictionary can be accessed using keys The keys of a dictionary can be accessed using values Dictionaries are mutable Dictionaries aren’t ordered The values of a dictionary can be accessed using keys The keys of a dictionary can be accessed using values Dictionaries are mutable Dictionaries aren’t ordered ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following results in a SyntaxError? ”’That’s okay”’ ‘3\’ ‘”Once upon a time…”, she said.’ “He said, ‘Yes!'” ”’That’s okay”’ ‘3\’ ‘”Once upon a time…”, she said.’ “He said, ‘Yes!'” ANSWER DOWNLOAD EXAMIANS APP
Python What is the result of cmp(3, 1) in python? False 1 True 0 False 1 True 0 ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.add(3, 5) list1.append(3, 5) list1.insert(2, 5) list1.insert(3, 5) list1.add(3, 5) list1.append(3, 5) list1.insert(2, 5) list1.insert(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python Which of following Python Network/Internet modules supports HTTP protocol? httplib xmlrpclib All of the mentioned urllib httplib xmlrpclib All of the mentioned urllib ANSWER DOWNLOAD EXAMIANS APP