Python Which of the following creates a pattern object? re.regex(str) re.create(str) re.assemble(str) re.compile(str) re.regex(str) re.create(str) re.assemble(str) re.compile(str) ANSWER DOWNLOAD EXAMIANS APP
Python In which of the following field, we can put our Button? Frame All of the mentioned Window Label Frame All of the mentioned Window Label ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.append(3, 5) list1.insert(3, 5) list1.add(3, 5) list1.insert(2, 5) list1.append(3, 5) list1.insert(3, 5) list1.add(3, 5) list1.insert(2, 5) ANSWER DOWNLOAD EXAMIANS APP
Python What is the maximum possible length of an identifier allowed by Python? 79 characters 63 characters None of the mentioned 31 characters 79 characters 63 characters None of the mentioned 31 characters ANSWER DOWNLOAD EXAMIANS APP
Python Is Python case sensitive when dealing with identifiers? no machine dependent yes None of the mentioned no machine dependent yes None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is invalid variable in Python? __str__ = 1 None of the mentioned __a = 1 _a = 1 __str__ = 1 None of the mentioned __a = 1 _a = 1 ANSWER DOWNLOAD EXAMIANS APP