Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 0 2 4 1 0 2 4 1 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 tuple set dictionary list tuple set ANSWER DOWNLOAD EXAMIANS APP
Python Which Python is used by client to opens a TCP connection to hostname? s.accept() s.bind() All of the mentioned s.connect() s.accept() s.bind() All of the mentioned s.connect() ANSWER DOWNLOAD EXAMIANS APP
Python To add a new element to a list we use which Python command? list1.append(5) list1.addEnd(5) list1.addLast(5) list1.add(5) list1.append(5) list1.addEnd(5) list1.addLast(5) list1.add(5) ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following results in a SyntaxError? ‘3\’ ‘”Once upon a time…”, she said.’ ”’That’s okay”’ “He said, ‘Yes!'” ‘3\’ ‘”Once upon a time…”, she said.’ ”’That’s okay”’ “He said, ‘Yes!'” ANSWER DOWNLOAD EXAMIANS APP
Python Methods provided by Python for receiving and sending TCP messages. s.recv(), s.send() s.recvfrom(),s.sendto() None of the mentioned Both (A) and (B) s.recv(), s.send() s.recvfrom(),s.sendto() None of the mentioned Both (A) and (B) ANSWER DOWNLOAD EXAMIANS APP