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 To insert 5 to the third position in list1, we use which Python command? list1.add(3, 5) list1.insert(3, 5) list1.append(3, 5) list1.insert(2, 5) list1.add(3, 5) list1.insert(3, 5) list1.append(3, 5) list1.insert(2, 5) 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 set tuple dictionary list set tuple ANSWER DOWNLOAD EXAMIANS APP
Python All keywords in Python are in _________ None of the mentioned lower case Capitalized UPPER CASE None of the mentioned lower case Capitalized UPPER CASE ANSWER DOWNLOAD EXAMIANS APP
Python Which Python is used by client to opens a TCP connection to hostname? s.connect() All of the mentioned s.accept() s.bind() s.connect() All of the mentioned s.accept() s.bind() ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following blocks will be executed whether an exception is thrown or not? except Else finally Assert except Else finally Assert ANSWER DOWNLOAD EXAMIANS APP