Python Say s=”hello” what will be the return value of type(s) in Python? bool str String int bool str String int ANSWER DOWNLOAD EXAMIANS APP
Python config() in python Tkinter are used for configure the widget destroy the widget place the widget change property of the widget configure the widget destroy the widget place the widget change property of the widget ANSWER DOWNLOAD EXAMIANS APP
Python What arithmetic operators cannot be used with strings in Python? + * All of the mentioned – + * All of the mentioned – ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 2 4 1 0 2 4 1 0 ANSWER DOWNLOAD EXAMIANS APP
Python All keywords in Python are in _________ None of the mentioned lower case UPPER CASE Capitalized None of the mentioned lower case UPPER CASE Capitalized ANSWER DOWNLOAD EXAMIANS APP
Python To add a new element to a list we use which Python command? list1.addEnd(5) list1.addLast(5) list1.add(5) list1.append(5) list1.addEnd(5) list1.addLast(5) list1.add(5) list1.append(5) ANSWER DOWNLOAD EXAMIANS APP