IP June Month MCQ
IP June Month MCQ
WEEK1
WORKSHEET 1
9. In SQL equi joins, which clause is used to specify the columns for joining?
a) GROUP BY
b) ORDER BY
c) HAVING
d) ON
10. Which of the following statements is true regarding equi joins in SQL?
a) Equijoins are also known as outer joins
b) Equijoins are used to combine rows based on a
specified condition
c) Equijoins always include all rows from both tables
d) Equijoins do not require a common column between the
tables
WEEK 2
WORKSHEET 2
1. A __________ is a collection of data values and operations that can be
applied to that data.
a) Data Structure
b) Data Frame
c) Table
d) Database
a) NumPy
b) Pandas
c) Matplotlib
d) All of the above
10. ____________is the most popular open-source python library used for
doing data analysis.
a) Pandas
b) Mysql
c) Dataframe
d) Series
WEEK 3
Worksheet-3
1. A _______________ is a one-dimensional array.
a) Data Frame
b) Series
c) Both of the above
d) None of the above
6.The data label associated with a particular value of Series is called its
______________
a) Data value
b) Index
c) Value
d) None of the above
a) series( )
b) Series( )
c) createSeries( )
d) None of the above
8.When you print/display any series then the left most column is showing
_________ value.
a) Index
b) Data
c) Value
d) None of the above
a) 0
b) 1
c) 2
d) 3
a) size,data
b) data,size
WEEK 4
WORKSHEET 4
a)
0 10
1 20
2 30
dtype: int64
b)
10
20
30
dtype: int64
c)
0
1
2
dtype: int64
3. Python library numpy is added for creating numpy array and generating
___________
a) random number
b) array
c) python modules
d) columns
4. Which of the following statement will create an empty series named “S1”?
a) S1 = pd.Series(None)
b) S1 = pd.Series( )
c) Both of the above
d) None of the above
5. How many values will be there in array1, if the given code is not returning any
error?
series4 = pd.Series(array1, index = [“Jan”, “Feb”, “Mar”, “Apr”])
a) 1
b) 2
c) 3
d) 4
print(S1)
a)
a 14
b7
c7
dtype: int64
b)
a 14
b7
dtype: int64
c)Error
d)None of the above