Python Methods provided by Python for receiving and sending TCP messages. None of the mentioned s.recvfrom(),s.sendto() Both (A) and (B) s.recv(), s.send() None of the mentioned s.recvfrom(),s.sendto() Both (A) and (B) s.recv(), s.send() ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.add(3, 5) list1.append(3, 5) list1.insert(3, 5) list1.insert(2, 5) list1.add(3, 5) list1.append(3, 5) list1.insert(3, 5) list1.insert(2, 5) ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? import tkinter as t All of the mentioned import tkinter from tkinter import * import tkinter as t All of the mentioned import tkinter from tkinter import * ANSWER DOWNLOAD EXAMIANS APP
Python Which are the advantages of functions in python? Reducing duplication of code All of the mentioned Decomposing complex problems into simpler pieces Improving clarity of the code Reducing duplication of code All of the mentioned Decomposing complex problems into simpler pieces Improving clarity of the code ANSWER DOWNLOAD EXAMIANS APP
Python What is the maximum possible length of an identifier allowed by Python? 31 characters None of the mentioned 63 characters 79 characters 31 characters None of the mentioned 63 characters 79 characters ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 0 4 1 2 0 4 1 2 ANSWER DOWNLOAD EXAMIANS APP