Python What arithmetic operators cannot be used with strings in Python? – + All of the mentioned * – + All of the mentioned * ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following results in a SyntaxError? ‘”Once upon a time…”, she said.’ ”’That’s okay”’ ‘3\’ “He said, ‘Yes!'” ‘”Once upon a time…”, she said.’ ”’That’s okay”’ ‘3\’ “He said, ‘Yes!'” ANSWER DOWNLOAD EXAMIANS APP
Python Methods provided by Python for receiving and sending TCP messages. s.recv(), s.send() Both (A) and (B) s.recvfrom(),s.sendto() None of the mentioned s.recv(), s.send() Both (A) and (B) s.recvfrom(),s.sendto() None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Which are the advantages of functions in python? All of the mentioned Improving clarity of the code Decomposing complex problems into simpler pieces Reducing duplication of code All of the mentioned Improving clarity of the code Decomposing complex problems into simpler pieces Reducing duplication of code ANSWER DOWNLOAD EXAMIANS APP
Python To add a new element to a list we use which Python command? list1.addEnd(5) list1.addLast(5) list1.add(5) list1.append(5) list1.addEnd(5) list1.addLast(5) list1.add(5) list1.append(5) ANSWER DOWNLOAD EXAMIANS APP