CBSE Class 12 - Data Handling Using Pandas-Part -2 - Questions and Answers
(Informatics Practices)
Q1: When a Series is created, are the data values mutable or not?
Answer: Yes data values can be modified and are mutable.
Q2: When a Series is created, can it be resized?
Answer: No. Its size Immutable.
Q3: Consider the following snippet
>>> import numpy as np
>>> import pandas as pd
>>> series1 = pd.Series(np.arange( 10, 20, 1 ))
(a) What will the be output the following statement.
>>> print(series1.head())









