Python
To insert 5 to the third position in list1, we use which Python command?

list1.append(3, 5)
list1.add(3, 5)
list1.insert(3, 5)
list1.insert(2, 5)

ANSWER DOWNLOAD EXAMIANS APP

Python
Which of the following statements is true?

All raised standard exceptions must be handled in Python
If any exception is thrown in try block, else block is executed
When there is a deviation from the rules of a programming language, a semantic error is thrown
The standard exceptions are automatically imported into Python programs

ANSWER DOWNLOAD EXAMIANS APP