Python To add a new element to a list we use which Python command? list1.add(5) list1.addEnd(5) list1.addLast(5) list1.append(5) list1.add(5) list1.addEnd(5) list1.addLast(5) list1.append(5) ANSWER DOWNLOAD EXAMIANS APP
Python Is Python case sensitive when dealing with identifiers? yes None of the mentioned machine dependent no yes None of the mentioned machine dependent no ANSWER DOWNLOAD EXAMIANS APP
Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ caret (^) newline percentage symbol (%) ampersand (&) caret (^) newline percentage symbol (%) ampersand (&) ANSWER DOWNLOAD EXAMIANS APP
Python Why are local variable names beginning with an underscore discouraged in Python Programming? they are used to indicate global variables they confuse the interpreter they are used to indicate a private variables of a class they slow down execution they are used to indicate global variables they confuse the interpreter they are used to indicate a private variables of a class they slow down execution ANSWER DOWNLOAD EXAMIANS APP
Python In which of the following field, we can put our Button? Frame Window All of the mentioned Label Frame Window All of the mentioned Label ANSWER DOWNLOAD EXAMIANS APP
Python Which are the advantages of functions in python? Decomposing complex problems into simpler pieces All of the mentioned Reducing duplication of code Improving clarity of the code Decomposing complex problems into simpler pieces All of the mentioned Reducing duplication of code Improving clarity of the code ANSWER DOWNLOAD EXAMIANS APP