Python Which one of these is used for floor division in Python? % / None of the mentioned // % / None of the mentioned // ANSWER DOWNLOAD EXAMIANS APP
Python All keywords in Python are in _________ Capitalized None of the mentioned UPPER CASE lower case Capitalized None of the mentioned UPPER CASE lower case ANSWER DOWNLOAD EXAMIANS APP
Python What is the use of duck typing? Less restriction on the type values that can be passed to a given method More restriction on the type values that can be passed to a given method No restriction on the type values that can be passed to a given method Makes the program code smaller Less restriction on the type values that can be passed to a given method More restriction on the type values that can be passed to a given method No restriction on the type values that can be passed to a given method Makes the program code smaller ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following blocks will be executed whether an exception is thrown or not? Assert except finally Else Assert except finally Else ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following creates a pattern object? re.compile(str) re.create(str) re.regex(str) re.assemble(str) re.compile(str) re.create(str) re.regex(str) re.assemble(str) 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