Python Which Python keyword is used for function? Define Function Fun Def Define Function Fun Def ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following statements is true? A private method in a superclass can be overridden A non-private method in a superclass can be overridden A subclass method can be overridden by the superclass Overriding isn’t possible in Python A private method in a superclass can be overridden A non-private method in a superclass can be overridden A subclass method can be overridden by the superclass Overriding isn’t possible in Python ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is invalid variable in Python? __a = 1 __str__ = 1 None of the mentioned _a = 1 __a = 1 __str__ = 1 None of the mentioned _a = 1 ANSWER DOWNLOAD EXAMIANS APP
Python When will the else part of try-except-else be executed? when an exception occurs in to except block Always when an exception occurs when no exception occurs when an exception occurs in to except block Always when an exception occurs when no exception occurs ANSWER DOWNLOAD EXAMIANS APP
Python Which are Server Socket Methods provided by Python? s.listen() All of the mentioned s.accept() s.bind() s.listen() All of the mentioned s.accept() s.bind() ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 0 4 2 1 0 4 2 1 ANSWER DOWNLOAD EXAMIANS APP