Question1
Question1: What does the df. describe () function in Pandas provide?
A The number of rows and columns in the DataFrame
B Summary statistics of numerical columns in the Datafram
C The unique values in each column of the DataFrame
D The correlation matrix of the DataFrame
answer:D
Question2
Question2: How can you select a specific column named "age" from a Dataframe called "df" in Pandas?
A df.select column("age")
B df.get_column("age”)
C df.("age”)
D df.column("age")
answer:C
Question3
Question3: How can you add a title to a Matplotlib plot?
A plt.titie()
B pit.add_title()
C pit.set_title()
D plt.plot_title()
answer:A
Question4
Question4: Which Matplotlib function is used to create a line plot?
A plt.plot()
Bpit.scatter()
C plt.bar()
D plt.hist()
answer:A