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 Which of the following statements is true? A private method in a superclass can be overridden A non-private method in a superclass can be overridden Overriding isn’t possible in Python A subclass method can be overridden by the superclass A private method in a superclass can be overridden A non-private method in a superclass can be overridden Overriding isn’t possible in Python A subclass method can be overridden by the superclass ANSWER DOWNLOAD EXAMIANS APP
Python How we install tkinter in system ? pip install python tkinter pip install tkinter install pip install tkinter pip install python tkinter pip install tkinter install pip install tkinter ANSWER DOWNLOAD EXAMIANS APP
Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ caret (^) newline ampersand (&) percentage symbol (%) caret (^) newline ampersand (&) percentage symbol (%) ANSWER DOWNLOAD EXAMIANS APP
Python Say s=”hello” what will be the return value of type(s) in Python? bool str int String bool str int String ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] dictionary tuple array list dictionary tuple array list ANSWER DOWNLOAD EXAMIANS APP