Python – Post Assessment Name* Email* Phone Number* – 1. How can you create an empty set – Myset=set()Myset=()Myset={ }A set does not allow empty values. 2. If within a class/function if you do not want to write any coding then still you have to write- returnpassimportFunction 3. Which of the following is immutable in nature? tuplelistdictionaryset 4. Myname=”Rashmi rao” Which string function is to be used to convert the characters into Proper case- capitalize()upper()title()proper() 5. What is the command to install a package in your system? Pip packagenameInstall packagenameinstall pip packagenamepip install packagename 6. Mystr=”ABCD” – Howcan you make it reverse? Mystr[::-1]Mystr[:-1]Mystr[1::]Mystr[1:] 7. Which of the following module or package can be used to connect python application with a Database which is running in MS SQL Server? cx_oraclepyodbcpysparkpandas 8. Which particular component in a Python application holds the records when you fetch some records from the database? cursorconnectiondictionaryarray 9. Which symbol is used to print any decimal values upto 3 Decimal Places? %d%.3f%.3F%f 10. Which function is used to determine no of characters from a string? maxchars()count()length()len() 11. Which function can be used to send the data from a Dataframe object to an Excel File? save_excel()to_excel()write_excel()write() 12. Which of the following represents a constructor inside a Python Class? __init__()__Init()init__()–init—() Submit Should be Empty: