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

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

ANSWER DOWNLOAD EXAMIANS APP

Python
What is the use of duck typing?

Makes the program code smaller
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
Less restriction on the type values that can be passed to a given method

ANSWER DOWNLOAD EXAMIANS APP