Font size
WorksheetsData Frame1
Total questions: 10
Worksheet time: 4mins
pandas is a:
Data Structure
Series
Dataframe
Library
Series.tail(3) will return how many values.
3 values from front
3 values from last
5 values
none
Which among the following options can be used to create a DataFrame in Pandas?
A scalar value
An ndarray
A python dict
All of the above
DataFrame in pandas is
1. dimensional array
2. dimensional array
3.dimensional array
4.None of the above
All pandas data structures are ___ mutable but not always _______mutable.
a) size, value
b) semantic, size
c) value, size
d) none of the mentioned
Which of the following can be used to make a Dataframe?
Series
DataFrame
Structured ndarray
All of the above
Dataframe can contain multiple series
True
False
Series can be created from
Array
Dictionary
Scaler value
All of them
Give the output of the following code:
>>>import pandas as pd
>>>dict1 = {'AR' : 100, 'VR' : 200, 'AI' : 300}
>>>ser = pd.Series(dict1)
>>>print(ser[1])
AR
100
VR
200
