Python Which one of these is used for floor division in Python? / None of the mentioned % // / None of the mentioned % // ANSWER DOWNLOAD EXAMIANS APP
Python Which are Server Socket Methods provided by Python? s.bind() s.accept() s.listen() All of the mentioned s.bind() s.accept() s.listen() All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? Invalid type Array of tuples List of tuples Tuples of lists Invalid type Array of tuples List of tuples Tuples of lists ANSWER DOWNLOAD EXAMIANS APP
Python What is the maximum possible length of an identifier allowed by Python? 63 characters 31 characters 79 characters None of the mentioned 63 characters 31 characters 79 characters None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python To add a new element to a list we use which Python command? list1.add(5) list1.addLast(5) list1.append(5) list1.addEnd(5) list1.add(5) list1.addLast(5) list1.append(5) list1.addEnd(5) ANSWER DOWNLOAD EXAMIANS APP
Python In order to store values in terms of key and value we use what Python core data type. set dictionary list tuple set dictionary list tuple ANSWER DOWNLOAD EXAMIANS APP