Python To add a new element to a list we use which Python command? list1.add(5) list1.addEnd(5) list1.addLast(5) list1.append(5) list1.add(5) list1.addEnd(5) list1.addLast(5) list1.append(5) ANSWER DOWNLOAD EXAMIANS APP
Python Which module in Python supports regular expressions? pyregex none of the mentioned regex re pyregex none of the mentioned regex re ANSWER DOWNLOAD EXAMIANS APP
Python Is Python case sensitive when dealing with identifiers? no yes machine dependent None of the mentioned no yes machine dependent None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Essential thing to create a window screen using tkinter python To define a geometry All of the mentioned create a button call tk() function To define a geometry All of the mentioned create a button call tk() function ANSWER DOWNLOAD EXAMIANS APP
Python Methods provided by Python for receiving and sending TCP messages. None of the mentioned s.recv(), s.send() s.recvfrom(),s.sendto() Both (A) and (B) None of the mentioned s.recv(), s.send() s.recvfrom(),s.sendto() Both (A) and (B) ANSWER DOWNLOAD EXAMIANS APP
Python Why are local variable names beginning with an underscore discouraged in Python Programming? they confuse the interpreter they are used to indicate global variables they are used to indicate a private variables of a class they slow down execution they confuse the interpreter they are used to indicate global variables they are used to indicate a private variables of a class they slow down execution ANSWER DOWNLOAD EXAMIANS APP