PYTHON QUIZ 6 40 Created on June 10, 2020 By Sirjana GhimireAcharya PYTHON QUIZ 7 1 / 10 What is the output of the following codex = 100y = 50print(x and y) True 100 False 50 2 / 10 2. What is the output of the following codeprint(int(2.999)) ValueError: invalid literal for int() 3 2 3 / 10 3. What is the output of print(abs(-45.300)) 45.3 -45.3 -45.300 45.300 4 / 10 4. Select correct float number a = 10.1256 b = 10 c = 100 All of the above are correct 5 / 10 5. What is the output of the following code?sampleList = [10, 20, 30, 40]del sampleList[0:6]print(sampleList) [] list index out of range. [10, 20] 6 / 10 6. In Python, list is mutable True False 7 / 10 7. What is the output of the followingl = [None] * 20print(len(l)) 20 0 syntax error 8 / 10 8. What is the output of the followingaList = [5, 10, 15, 25]print(aList[::-2]) [15, 10, 5] [10, 5] [25, 10] 9 / 10 9. What is the output of the following codesampleSet = {"Yellow", "Ornage", "Black"}print(sampleSet[1]) Yellow Syntax Error Orange 10 / 10 10. The isdisjoint() method returns True if none of the items are present in both sets, otherwise, it returns False. True False Your score is The average score is 23% LinkedIn Facebook Twitter 0% Restart quiz