Python What arithmetic operators cannot be used with strings in Python? – + All of the mentioned * – + All of the mentioned * ANSWER DOWNLOAD EXAMIANS APP
Python In Python, which of these in not a core data type? Dictionary Lists Tuples Class Dictionary Lists Tuples Class ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is invalid variable in Python? None of the mentioned _a = 1 __a = 1 __str__ = 1 None of the mentioned _a = 1 __a = 1 __str__ = 1 ANSWER DOWNLOAD EXAMIANS APP
Python To add a new element to a list we use which Python command? list1.add(5) list1.addLast(5) list1.append(5) list1.addEnd(5) list1.add(5) list1.addLast(5) list1.append(5) list1.addEnd(5) ANSWER DOWNLOAD EXAMIANS APP
Python In Python, which of the following cannot be a variable? on __init__ It in on __init__ It in ANSWER DOWNLOAD EXAMIANS APP
Python Say s=”hello” what will be the return value of type(s) in Python? String bool str int String bool str int ANSWER DOWNLOAD EXAMIANS APP