Choose a topic to test your knowledge and improve your Python skills
Which of the following are modules/libraries in Python?
NumPy stands for ____
Which of the following libraries allows to manipulate, transform and visualize data easily and efficiently.
PANDAS stands for _____________
____ is an important library used for analyzing data.
Important data structure of pandas is/are _
Which of the following library in Python is used for plotting graphs and visualization
Pandas Series can have _________________ data types
Which of the following command is used to install pandas?
A __________ is a collection of data values and operations that can be applied to that data.
A _______________ is a one-dimensional array.
Which of the following statement is wrong?
A Series by default have numeric data labels starting from ______________.
The data label associated with a particular value of Series is called its ______
Which of the following module is to be imported to create Series?
Which of the following function/method help to create Series?
When you print/display any series then the left most column is showing _________ value.
How many values will be there in array1, if given code is not returning any error? >>> series4 = pd.Series(array1, index = [“Jan”, “Feb”, “Mar”, “Apr”])
Which of the following statement will create an empty series named “S1”?
How many elements will be there in the series named “S1”? >>> S1 = pd.Series(range(5)) >>> print(S1)
When we create a series from dictionary then the keys of dictionary become ____
When we create a series from dictionary then the keys of dictionary become ____
When we create a series from dictionary then the keys of dictionary become ____
Write the output of the following : >>> S1=pd.Series(14, index = ['a', 'b', 'c']) >>> print(S1)
Write the output of the following: >>> S1=pd.Series(14, 7, index = ['a', 'b', 'c']) >>> print(S1)
What type of error is returned by following code? import pandas as pd S1 = pd.Series(data = (31, 2, -6), index = [7, 9, 3, 2]) print(S1)
We can imagine a Pandas Series as a ______________ in a spreadsheet
Which of the following statement is correct for importing pandas in python?
What type of error is returned by following statement? import pandas as pnd pnd.Series([1,2,3,4], index = [‘a’,’b’,’c’])
Which attribute is used to give user defined labels in Series
Fill in the blank to get the ouput as 3 import pandas as pnd S1=pnd.Series([1,2,3,4], index = ['a','b','c','d']) print(S1[___________])