Python 1-Mark Quiz 2

Share with others

Welcome to your Python 1-Mark Quiz 2

Q11. Rearrange the following terms in increasing order of data transfer rates

Gbps, Mbps, Tbps, Kbps, bps

Q12. Write expanded form of Wi-Fi

Q13. Write full form of GSM.

Q14. Which command is used to display structure of table in MySQL?

Q15. Fill in the blank :

a = "Python MCQ Questions?
print(a[______]

OUTPUT : MCQ

Q16. Write the output of the following :

def m():
    M=[11, 22, 33, 44]
    Q=M
    M[2]+=22
    L=len(M)
    for i in range (L):
         print("SO$", Q[L-i-1], "#", M [i])
m()

Q17. Which of the following is not the constraint in MySQL?

Q18. Write the output of the following :

a = "Python MCQ Questions"
print(a[:-1])

Q19. Which command will remove table 'emp' from database?

Q20. Write the output of the following:

print(6 * 3 + 4**2 // 5 - 8)


Share with others

Leave a Reply

error: Content is protected !!