Class 12 Informatics Practices Online Test Set-B
Quiz-summary
0 of 35 questions completed
Questions:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
Information
Online Mock Test Set-B
Term-I 2021
Subject: Informatics Practices (Code-065)
Class – XII
Time Allowed: 90 minutes Maximum Marks: 35
General Instructions:
- Paper contains total 35 questions.
- Each questions contains 1 mark.
- No negative marking.
- Attempt all questions.
You must specify a text. |
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading...
You must sign in or sign up to start the quiz.
You have to finish following quiz, to start this quiz:
Results
0 of 35 questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 points, (0)
Average score |
|
Your score |
|
Categories
- IP Class 12 Online Mock Test Term-1 0%
-
Keep Learning..
Wish you all very best!!
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- Answered
- Review
-
Question 1 of 35
1. Question
1. Bank Account Details of a person is an example of
Correct
Incorrect
-
Question 2 of 35
2. Question
2. Techtipnow Computers made license agreement with Rohit and granted him freedom to run, study, share and modify the software, besides getting regular updates. What type of license agreement it is?
Correct
Incorrect
-
Question 3 of 35
3. Question
3. Suresh is making his Computer Project and for this he downloaded a project from Internet and with small changes he submitted it to Computer Department. What Illegal activity he has done?
Correct
Incorrect
-
Question 4 of 35
4. Question
4. Subhadra was assigned a project to develop a website for daily maintenance. To do this he has been asked to use Mozilla Firefox and Open Office. What technologies being used by Subhadra?
Correct
Incorrect
-
Question 5 of 35
5. Question
5. Indian law to deal with cyber crime is :
Correct
Incorrect
-
Question 6 of 35
6. Question
6. Burning E-waste causes
Correct
Incorrect
-
Question 7 of 35
7. Question
7. Process of conversion e-waste into something that can be used again and again in some or the other manner
Correct
Incorrect
-
Question 8 of 35
8. Question
8. When attacker gain unauthorized access to computer and blackmail victim to pay for getting access to data is :
Correct
Incorrect
-
Question 9 of 35
9. Question
9. Which of the following pandas data structure cannot grow in size?
Correct
Incorrect
-
Question 10 of 35
10. Question
10. Complete the following code to get the output as displayed:
import pandas as pd
s = pd.Series([12,34,45,65])
print(________)Output:
(4,)Correct
Incorrect
-
Question 11 of 35
11. Question
11. select the correct output for given code
s = pd.Series([12,34,np.NaN,65])
a=s.count()
b=len(s)
print(b,a)Correct
Incorrect
-
Question 12 of 35
12. Question
12. Select the incorrect statement regarding importing pandas library in user program
Correct
Incorrect
-
Question 13 of 35
13. Question
13. Suresh has written code to create and display a Series object ‘opd’ as given below
import pandas as pd
opd = pd.Series([12,34,56],[‘sun’,’mon’,’tue’])
print(s[‘wed’’])but when he executes the code he gets error. Identify the error type.
Correct
Incorrect
-
Question 14 of 35
14. Question
14. hasnans’ of Series object returns FALSE only when
Correct
Incorrect
-
Question 15 of 35
15. Question
15. While executing the following code what will happen?
import pandas as pd
import numpy as np
exp =pd.Series([8,np.NaN,12])
exp = pd.Series(exp)
print(exp)Correct
Incorrect
-
Question 16 of 35
16. Question
16. What will be output of given code?
import pandas as pd
s = pd.Series([20,40,60,80],[20,30,40,50])
print(s>40)Correct
Incorrect
-
Question 17 of 35
17. Question
17. Aastha foundation collected fund of 8900,4500,9200,6700 from the societies ‘Ravi’,’Jhelum’, ‘Chenab’ and ‘Vyas’. Help them to write code to store the record in form of Series object.
Correct
Incorrect
-
Question 18 of 35
18. Question
18. Mathematical operations on two Series objet is done by matching _____________
Correct
Incorrect
-
Question 19 of 35
19. Question
19. Raju has been asked to display first five items of Series ‘Marks’ by his teacher. What code he should execute to do so?
Correct
Incorrect
-
Question 20 of 35
20. Question
20. For given dataframe df
jan feb jan 10 20 feb 12 34
What will be output of following code?
Temp = df.drop(‘jan’)
print(Temp)Correct
Incorrect
-
Question 21 of 35
21. Question
21. Which of the following is incorrect about pandas?
Correct
Incorrect
-
Question 22 of 35
22. Question
22. Which of the following is correct code to display first three rows of a dataframe df with default indexes?
Correct
Incorrect
-
Question 23 of 35
23. Question
23. Attribute of dataframe used to display number of axis is:
Correct
Incorrect
-
Question 24 of 35
24. Question
24. To merge two dataframes df1 and df2 with no duplicate row labels, which command should be executed?
Correct
Incorrect
-
Question 25 of 35
25. Question
25. For a given dataframe df[:]=0 will
Correct
Incorrect
-
Question 26 of 35
26. Question
26. The values NAN/NAT/None are same in pandas
Correct
Incorrect
-
Question 27 of 35
27. Question
27. Which of the following is True about Dataframe?
i. can perform arithmetic operations on rows only.
ii. Columns can be of different types.Correct
statement ii is incorrect because we can perform arithmetic operation on both rows and columns
Incorrect
statement ii is incorrect because we can perform arithmetic operation on both rows and columns
-
Question 28 of 35
28. Question
28. For given dataframe df
a b c 1 10 40 90 4 12 50 NaN 6 23 60 22 8 NaN 2 4
What will be output of following code?
df.count()Correct
Incorrect
-
Question 29 of 35
29. Question
29. Which of the following command will display the column labels of a dataframe ‘sale’?
Correct
Incorrect
-
Question 30 of 35
30. Question
30. for a dataframe with columns eno, ename and salary, shilpa want to add a new column hra which will store 20% of salary. Help her to do this.
Correct
Incorrect
-
Question 31 of 35
31. Question
31. Which of the following is not a valid line style in matplotlob?
Correct
Incorrect
-
Question 32 of 35
32. Question
32. Suraj has been asked to plot the below given chart by his Manager to analyze the data trend.
He wrote following code for it but could not remember correct command and left blank space there.
import pandas as pd
import matplotlib.pyplot as plt
x=[2,4,6,8]
y=[20,40,10,20]
z=[30,20,10,10]
plt.plot(x,y)
plt.plot(___,z) #space1
plt.___() #space2Help him to complete the code by filling correct statement in line marked as space1 and space2.
Correct
Incorrect
-
Question 33 of 35
33. Question
33. Continuing with Q32, Now suraj wants to add marker on the same chart as depicted below.
Which of the following code he can select to do so?Correct
Incorrect
-
Question 34 of 35
34. Question
34. To specify width of bars of a bar chart we can use______ argument
Correct
Incorrect
-
Question 35 of 35
35. Question
35. To create histogram as depicted below, what code one should write?
Correct
Incorrect