WorksheetsCIRCLE 7 WEEKLY QUIZ (MONTH 1)
Total questions: 25
Worksheet time: 13mins
What type of data is stored in JSON format?
Structured
Semi-structured
Unstructured
Raw
Which career role is responsible for implementing machine learning models?
Data Analyst
Data Engineer
Data Scientist
Machine Learning Engineer
Which of the following is NOT an example of unstructured data?
Video
Spreadsheet
Sound
Picture
The process of storing, extracting, and transforming data is the job of a:
Data Scientist
Data Analyst
Data Engineer
Business Analyst
Data is referred to as:
Final insight
Raw material for insights
Finished product
A backup storage
What is Python primarily used for?
Typing documents
Data analysis, automation, and development
Hardware design
File storage
Which of the following is NOT a programming environment for Python?
Jupyter Notebook
Anaconda
Sublime Text
Excel
Which of these is an example of system software?
MS Word
Google Chrome
Windows OS
PowerPoint
What is the core of the computer architecture?
Monitor
Keyboard
CPU
USB port
Which data type in Python holds a group of values?
Integer
Float
List
Boolean
Which of the following is a valid variable name in Python?
1variable
my_variable
my-variable
variable name
What will be the output of type(10) in Python?
<class 'float'>
B. <class 'integer'>
<class 'int'>
<class 'number'>
Which of these is NOT a Python data type?
String
Dictionary
Character
D. List
How do you create a list in Python?
{1, 2, 3}
B. (1, 2, 3)
[1, 2, 3]
<1, 2, 3>
What is the output of len([1, 2, 3, 4])?
3
4
5
Error
Which operator is used for exponentiation in Python?
What will be the result of 5 % 2 in Python?
In Python, which symbol is used to assign a value to a variable?
What type of data is stored in {"name": "John", "age": 25}?
List
B. Tuple
Set
Dictionary
What will be the output of type(True)?
<class 'bool'>
<class 'str'>
<class 'int'>
<class 'boolean'>
Which function is used to convert a string to an integer in Python?
int()
str()
float()
bool()
Which data structure stores only unique values in Python?
List
Tuple
Dictionary
Set
Which method is used to add an item to the end of a list?
insert()
add()
append()
push()
What is the index of the first element in a Python list?
0
1
-1
first
Which operator checks if two values are equal in Python?
==
=
=
===
