NEW
Font size
WorksheetsData Science Quiz 1
Total questions: 17
Worksheet time: 9mins
Which of the following is a key advantage of Python?
Limited libraries
Low-level memory access
Easy to read and write
Platform dependency
What type of language is Python?
Compiled
Assembly
Interpreted
Machine
Which of the following is NOT a Python feature?
Object-Oriented
Strongly Typed
Case-insensitive
Dynamic Typing
What is the output of print(type([1,2,3]))?
<type 'tuple'>
<type 'list'>
<type 'dict'>
<type 'array'>
Which of these is not a Python data type?
int
char
list
dict
Which character is used for single-line comments in Python?
//
/*
<!--
#
Which of the following is the correct file extension for Python files?
.pt
.pyt
.py
.python
Which library provides data structures and data analysis tools?
NumPy
TensorFlow
Pandas
SciPy
Which Pandas function reads a CSV file?
Which method in Pandas gives a statistical summary of a DataFrame?
info()
summary()
describe()
details()
Jupyter Notebooks are mainly used for:
Website building
Gaming
Data analysis and visualization
App development
Which feature does Jupyter Notebook NOT support?
Markdown
Inline plots
Audio editing
Code execution
Which shortcut runs a cell in Jupyter Notebook?
Shift + Enter
Ctrl + R
Alt + R
Ctrl + Shift
What is an IDE?
Internal Data Editor
Integrated Debugging Environment
Integrated Development Environment
International Developer Editor
Which IDE is web-based and used extensively in data science?
VS Code
PyCharm
Jupyter Notebook
Thonny
In VS Code, the extension used for Python development is:
Python Tools
PyDev
Python Extension
Code Python
Which function can be used to sort values in Pandas?
sort()
order()
sort_values()
arrange()
