Advertisements
Advertisements
Which command is correct to display the plot?
Concept: undefined >> undefined
Which of the following is not a valid plotting function of pyplot?
Concept: undefined >> undefined
Advertisements
Which function is used to find the most often appeared value from a set of numbers?
Concept: undefined >> undefined
The command used to draw a line graph is:
Concept: undefined >> undefined
Give the output of:
s=pd.Series([10,20,30,40,50],index =[‘a’,‘b’,‘c’,0,1])
print(s.loc[1])
Concept: undefined >> undefined
Which function is used to find the middle number from a set of numbers?
Concept: undefined >> undefined
By default, Series.tail() function display last ______ rows.
Concept: undefined >> undefined
Which function is used to find the average value from a set of numbers?
Concept: undefined >> undefined
William Jones has got a file that is replicating itself in order to spread to other computers using a computer network on its own, relying on security failures on the target computer to access it. It is consuming a lot of network bandwidth also. Which of the following type category of infection will it be considered?
Concept: undefined >> undefined
Which of the following is not a valid function that can be used with data frames?
Concept: undefined >> undefined
Given a Pandas series called “S”, the command which will delete the 1st row(index value 0) ______.
Concept: undefined >> undefined
______ divides the total distribution into four equal parts.
Concept: undefined >> undefined
Command to create empty Series is ______.
Concept: undefined >> undefined
The command used to give a heading to a graph is ______.
Concept: undefined >> undefined
Identify the malware which does not replicate or clone through an infection.
Concept: undefined >> undefined
A Series represents ______ column(s) in memory.
Concept: undefined >> undefined
Pandas Series is capable of holding ______ data type.
Concept: undefined >> undefined
Consider the following DataFrame df and answer the following query.
| City | Max temp | Min Temp | RainFall |
| Delhi | 40 | 32 | 24.1 |
| Bengaluru | 31 | 25 | 36.2 |
| Chennai | 35 | 27 | 40.8 |
| Mumbai | 29 | 21 | 35.2 |
| Kolkata | 39 | 23 | 41.8 |
Which of the following command will display the sum of every column of the data frame?
Concept: undefined >> undefined
Observe the following figure. Identify the coding for obtaining this as output.

Concept: undefined >> undefined
Write Python series to print scalar value “10” 5 times.
Concept: undefined >> undefined
