R4RIN
Articles
Java 8
MCQS
Python MCQ Quiz Hub
Python MCQS - Pandas
Choose a topic to test your knowledge and improve your Python skills
1. For what purpose a Pandas is used ?
To create a GUI programming
To create a database
To create a High level array
All of the above
2. In data science, which of the python library are more popular ?
Numpy
Pandas
OpenCv
Django
3. Way to install the pandas library ?
install pandas
pandas install python
python install pandas
None of the above
4. Best way to import the pandas module in your program ?
import pandas
import pandas as p
from pandas import *
All of the above
5. we can analyze the data in pandas with :
Series
DataFrame
Both of the above
None of the above
6. Series in Pandas is
1 dimensional array
2 dimensional array
3 dimensional array
None of the above
7. Minimum number of argument we require to pass in pandas series ?
0
1
2
3
8. DataFrame in pandas is
1 dimensional array
2 dimensional array
3 dimensional array
None of the above
9. What we pass in DataFrame in pandas ?
Integer
String
Pandas series
All of the above
Submit