Python Which of the following is not a standard exception in Python? IOError NameError AssignmentError ValueError IOError NameError AssignmentError ValueError 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(2, 5) list1.insert(3, 5) list1.append(3, 5) list1.add(3, 5) list1.insert(2, 5) list1.insert(3, 5) list1.append(3, 5) 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
Python In Python, which of the following cannot be a variable? in on It __init__ in on It __init__ ANSWER DOWNLOAD EXAMIANS APP
Python Say s=”hello” what will be the return value of type(s) in Python? str int bool String str int bool String ANSWER DOWNLOAD EXAMIANS APP
Python Which Python is used by client to opens a TCP connection to hostname? s.connect() s.accept() s.bind() All of the mentioned s.connect() s.accept() s.bind() All of the mentioned ANSWER DOWNLOAD EXAMIANS APP