Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 1 2 4 0 1 2 4 0 ANSWER DOWNLOAD EXAMIANS APP
Python In order to store values in terms of key and value we use what Python core data type. dictionary list tuple set dictionary list tuple set ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] array tuple dictionary list array tuple dictionary list ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.match do? such a function does not exist none of the mentioned matches a pattern at the start of the string matches a pattern at any position in the string such a function does not exist none of the mentioned matches a pattern at the start of the string matches a pattern at any position in the string ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following statements is true? Overriding isn’t possible in Python A non-private method in a superclass can be overridden A subclass method can be overridden by the superclass A private method in a superclass can be overridden Overriding isn’t possible in Python A non-private method in a superclass can be overridden A subclass method can be overridden by the superclass A private method in a superclass can be overridden ANSWER DOWNLOAD EXAMIANS APP
Python To add a new element to a list we use which Python command? list1.addLast(5) list1.addEnd(5) list1.add(5) list1.append(5) list1.addLast(5) list1.addEnd(5) list1.add(5) list1.append(5) ANSWER DOWNLOAD EXAMIANS APP