MCQ FDS (1)
MCQ FDS (1)
a) Data Analysis
b) Data Science
c) Descriptive Analytics
d) Commerce
2. Which of the following is the most important language for Data Science?
a) Java
b) Ruby
c) R
d) Basic
a) Making predictions
b) Summarizing data characteristics
c) Testing hypotheses
d) d)Model deployment
14. Which of the following library in Python is used for plotting graphs and visualization.
a. Pandas
b. NumPy
c. Matplotlib
d. None of the above
20. Which of the following code will generate the following output?
Jan 31
Feb 28
Mar 31
dtype: int64
a.
import pandas as pd
S1 = pd.Series(data = [31,28,31], index=["Jan","Feb","Mar"])
print(S1)
b.
import pandas as pd
S1 = pd.Series([31,28,31], index=["Jan","Feb","Mar"])
print(S1)
c. Both of the above
d. None of the above
a. 8
b. 4
c. 0
d. 6
25.Write the output of the following code :
import pandas as pd
S1=pd.Series([1,2,3,4])
S2=pd.Series([7,8])
S3=S1+S2
print(S3.size)
a. 2
b. 4
c. 6
d. Error