Python To add a new element to a list we use which Python command? list1.append(5) list1.addLast(5) list1.add(5) list1.addEnd(5) list1.append(5) list1.addLast(5) list1.add(5) list1.addEnd(5) ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.match do? matches a pattern at any position in the string matches a pattern at the start of the string none of the mentioned such a function does not exist matches a pattern at any position in the string matches a pattern at the start of the string none of the mentioned such a function does not exist ANSWER DOWNLOAD EXAMIANS APP
Python Methods provided by Python for receiving and sending TCP messages. 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 s.recv(), s.send() ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 2 1 0 4 2 1 0 4 ANSWER DOWNLOAD EXAMIANS APP
Python What is the output of print 0.1 + 0.2 == 0.3 in python? Error True False Machine dependent Error True False Machine dependent ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? from tkinter import * import tkinter All of the mentioned import tkinter as t from tkinter import * import tkinter All of the mentioned import tkinter as t ANSWER DOWNLOAD EXAMIANS APP