Python To add a new element to a list we use which Python command? list1.append(5) list1.addLast(5) list1.add(5) list1.addEnd(5) list1.append(5) list1.addLast(5) list1.add(5) list1.addEnd(5) ANSWER DOWNLOAD EXAMIANS APP
Python What is the maximum possible length of an identifier allowed by Python? 31 characters 63 characters 79 characters None of the mentioned 31 characters 63 characters 79 characters None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python In Python, which of these in not a core data type? Dictionary Class Tuples Lists Dictionary Class Tuples Lists ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] list tuple array dictionary list tuple array dictionary ANSWER DOWNLOAD EXAMIANS APP
Python What is the use of duck typing? Makes the program code smaller No restriction on the type values that can be passed to a given method More restriction on the type values that can be passed to a given method Less restriction on the type values that can be passed to a given method Makes the program code smaller No restriction on the type values that can be passed to a given method More restriction on the type values that can be passed to a given method Less restriction on the type values that can be passed to a given method ANSWER DOWNLOAD EXAMIANS APP
Python Which one of these is used for floor division in Python? None of the mentioned // % / None of the mentioned // % / ANSWER DOWNLOAD EXAMIANS APP