Python All keywords in Python are in _________ None of the mentioned lower case Capitalized UPPER CASE None of the mentioned lower case Capitalized UPPER CASE ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] list tuple dictionary array list tuple dictionary array 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 Which are the advantages of functions in python? Improving clarity of the code All of the mentioned Reducing duplication of code Decomposing complex problems into simpler pieces Improving clarity of the code All of the mentioned Reducing duplication of code Decomposing complex problems into simpler pieces ANSWER DOWNLOAD EXAMIANS APP
Python An exception is ____________ a standard module a module an object a special function a standard module a module an object a special function ANSWER DOWNLOAD EXAMIANS APP
Python Which are Server Socket Methods provided by Python? s.listen() s.bind() s.accept() All of the mentioned s.listen() s.bind() s.accept() All of the mentioned ANSWER DOWNLOAD EXAMIANS APP