WorksheetsPython Basics
Total questions: 5
Worksheet time: 4mins
Which of the the following is a correct list of data types
Integer, float, boolean, list
Integer, float, string, list
Integer, float, boolean, tuple, dictionary
Integer, float, boolean, set, tuple
All of the above
What are operators
Special symbols that represent computation like ; (+, -,* , /, //, %, *)
They are types of data
They are used to create addition bot
They are used to create multiplication table
Which of the following OPERATORS are matched correctly.
Addition ( + )
Division ( / )
Remainder/Modulo ( / )
Multiplication ( * )
Exponentiation /Raise to power of somthing ( ** )
Addition ( + )
Division ( % )
Remainder/Modulo ( / )
Multiplication ( * )
Exponentiation /Raise to power of somthing ( ** )
Addition ( + )
Division ( / )
Remainder/Modulo ( % )
Multiplication ( * )
Exponentiation /Raise to power of somthing ( ** )
Addition ( + )
Division ( / )
Remainder/Modulo ( % )
Multiplication ( ** )
Exponentiation /Raise to power of somthing ( * )
Addition ( + )
Division ( // )
Remainder/Modulo ( % )
Multiplication ( ** )
Exponentiation /Raise to power of somthing ( * )
What is a loop in python
(a)
Which of the following is not a type of loop
While loop
For loop
Nested loop
Creative loop
