Python Say s=”hello” what will be the return value of type(s) in Python? String int bool str String int bool str ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 2 1 0 4 2 1 0 4 ANSWER DOWNLOAD EXAMIANS APP
Python To add a new element to a list we use which Python command? list1.add(5) list1.append(5) list1.addLast(5) list1.addEnd(5) list1.add(5) list1.append(5) list1.addLast(5) list1.addEnd(5) ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is invalid variable in Python? __str__ = 1 _a = 1 __a = 1 None of the mentioned __str__ = 1 _a = 1 __a = 1 None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is the use of id() function in python? Every object doesn’t have a unique id None of the mentioned All of the mentioned id returns the identity of the object Every object doesn’t have a unique id None of the mentioned All of the mentioned id returns the identity of the object ANSWER DOWNLOAD EXAMIANS APP
Python The expression a{5} will match _____________ characters with the previous regular expression. 5 or less exactly 5 exactly 4 5 or more 5 or less exactly 5 exactly 4 5 or more ANSWER DOWNLOAD EXAMIANS APP