Python In Python, which of these in not a core data type? Lists Dictionary Class Tuples Lists Dictionary Class Tuples ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.insert(2, 5) list1.insert(3, 5) list1.append(3, 5) list1.add(3, 5) list1.insert(2, 5) list1.insert(3, 5) list1.append(3, 5) list1.add(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following results in a SyntaxError? ”’That’s okay”’ ‘3\’ “He said, ‘Yes!'” ‘”Once upon a time…”, she said.’ ”’That’s okay”’ ‘3\’ “He said, ‘Yes!'” ‘”Once upon a time…”, she said.’ ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 0 2 1 4 0 2 1 4 ANSWER DOWNLOAD EXAMIANS APP
Python What arithmetic operators cannot be used with strings in Python? * + All of the mentioned – * + All 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 Dictionaries are mutable The keys of a dictionary can be accessed using values Dictionaries aren’t ordered The values of a dictionary can be accessed using keys Dictionaries are mutable The keys of a dictionary can be accessed using values Dictionaries aren’t ordered ANSWER DOWNLOAD EXAMIANS APP