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 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 config() in python Tkinter are used for configure the widget place the widget destroy the widget change property of the widget configure the widget place the widget destroy the widget change property of the widget ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? Tuples of lists List of tuples Array of tuples Invalid type Tuples of lists List of tuples Array of tuples Invalid type ANSWER DOWNLOAD EXAMIANS APP
Python Which of these about a dictionary is false? Dictionaries are mutable Dictionaries aren’t ordered The values of a dictionary can be accessed using keys The keys of a dictionary can be accessed using values Dictionaries are mutable Dictionaries aren’t ordered The values of a dictionary can be accessed using keys The keys of a dictionary can be accessed using values ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 4 1 0 2 4 1 0 2 ANSWER DOWNLOAD EXAMIANS APP