Python Which is the correct expression for power(xy ) in Python? x**y x^^y x^y None of the mentioned x**y x^^y x^y None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
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 What does the function re.search do? matches a pattern at any position in the string such a function does not exist matches a pattern at the start of the string none of the mentioned matches a pattern at any position in the string such a function does not exist matches a pattern at the start of the string none of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Which are the advantages of functions in python? Reducing duplication of code All of the mentioned Decomposing complex problems into simpler pieces Improving clarity of the code Reducing duplication of code All of the mentioned Decomposing complex problems into simpler pieces Improving clarity of the code ANSWER DOWNLOAD EXAMIANS APP
Python Say s=”hello” what will be the return value of type(s) in Python? str int String bool str int String bool ANSWER DOWNLOAD EXAMIANS APP
Python What is the result of cmp(3, 1) in python? True False 1 0 True False 1 0 ANSWER DOWNLOAD EXAMIANS APP