Class 12 Informatics Practices Online Test Set-A
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-A
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
- Not categorized 0%
- IP Class 12 Online Mock Test Term-1 0%
-
Keep Learning..
Wish you all very best!!website: https://www.techtipnow.in
YouTube: http://www.youtube.com/c/techtipnow
email: techtipnow@gmail.com
support@techtipnow.in
- 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.Microsoft Office, Adobe Photoshop are
Correct
Incorrect
-
Question 2 of 35
2. Question
2. Which of the following method(s) is/are feasible for e-waste
Correct
Incorrect
Oops..Correct Answer is Option D. All of the above
-
Question 3 of 35
3. Question
3. Which of the following is not a good way to handle Cyber bullying?
Correct
Incorrect
-
Question 4 of 35
4. Question
4.I give owner authority to decide how much information he/she can share with user.
I encourage creators to invent new ideas, designs, and software.
I give owner right to get financial benefits against their creation/inventions.
Who am I?Correct
Incorrect
-
Question 5 of 35
5. Question
5. Protecting personal and sensitive information from unwanted attack or disclosure is called
Correct
Incorrect
-
Question 6 of 35
6. Question
6. The difference between copyright and patent is
Correct
Incorrect
-
Question 7 of 35
7. Question
7. GPL stands for General ___________ License
Correct
Incorrect
-
Question 8 of 35
8. Question
8. Which of the following you think comes under cyber-crime?
Correct
Incorrect
-
Question 9 of 35
9. Question
9. Jignesh was assigned a project to find information about ‘Emerging Technologies”. To do this he was asked to use Google Chrome and Docs. What technologies being used by Sunil?
Correct
Incorrect
-
Question 10 of 35
10. Question
10. Demerit of Social networking site is
Correct
Incorrect
-
Question 11 of 35
11. Question
11. Consider the following Series M and N:
M = pd.Series([3,8,1],index=[‘a’,’b’,’c’])
N = pd.Series([5,4,2], index = [‘b’,’c’,’d’])
Write the statement to multiply both Series M and NCorrect
Incorrect
-
Question 12 of 35
12. Question
12. What code should come in blank space to get the output displayed for given series:
S= pd.Series([78,90,11,23,456,67])
________________
Print(S)Output:
4 456
1 90
0 78
5 67
3 23
2 11Correct
Incorrect
-
Question 13 of 35
13. Question
13. What will be output of the following program?
import pandas as pd
a = 4
S = pd.Series(a,index[3,’a’,8])
print(S)Correct
Incorrect
-
Question 14 of 35
14. Question
14. Display the output for given code.
import pandas as pd
S1 = pd.Series([3,8,2])
S2 = pd.Series([4,5],index = [2,4])
print(S1 + S2)Correct
Incorrect
-
Question 15 of 35
15. Question
15. Ratnakar has created following Series ‘exp’
A 23
C 32
D 12
E 65
Now he wants to delete value against ‘C’. Help him to select correct code for it.Correct
Incorrect
-
Question 16 of 35
16. Question
16. To display last 2 element of Series ‘S’ of shape 5, we can write
Correct
Incorrect
-
Question 17 of 35
17. Question
17. Consider following series S and display the output of S[1:3]
1 40
2 50
3 60
4 35
5 52Correct
Incorrect
-
Question 18 of 35
18. Question
Correct
Incorrect
-
Question 19 of 35
19. Question
19. Command used to represent all elements of ‘S’ as Numpy Array?
Correct
Incorrect
-
Question 20 of 35
20. Question
20. Which of the following is correct?
Correct
Incorrect
-
Question 21 of 35
21. Question
21. Which of the following is suitable code to create empty dataframe?
Correct
Incorrect
-
Question 22 of 35
22. Question
22. For given dataframe, which of the following is correct statement to rename rows of dataframe?
Sports player
r1 kabaddi 7.0
r2 khokho 12.0
r3 volly ball NaNCorrect
Incorrect
-
Question 23 of 35
23. Question
23. consider the following dataframe df :
import pandas as pd
d = {‘eno’:[201,202,203],’ename’:[‘Sanjay’,’Sudesh’,’raman’],’sal’:[2300,3200,1390]}
df = pd.DataFrame(d, index = [100,200,300])write appropriate code to display
eno 202
ename sudesh
sal 3200Correct
Incorrect
-
Question 24 of 35
24. Question
24. To display the highest salary of employee of dataframe (Qno23), which of the following statement is correct?
Correct
Incorrect
-
Question 25 of 35
25. Question
25. If shape of passed values in index sequence of dataframe and length of dictionary’s values are not same, than python gives
Correct
Incorrect
-
Question 26 of 35
26. Question
26. For given dataframe df
coachid name rank
A 1 Jack 12
B 2 Kim 3
C 3 Rajan NaN
D 4 Juber 11
E 5 Hanuma NaNWhat will be output of df.size
Correct
Incorrect
-
Question 27 of 35
27. Question
27. We can add a new row in a dataframe using
Correct
Incorrect
-
Question 28 of 35
28. Question
28. Which is True
Correct
Incorrect
-
Question 29 of 35
29. Question
29. Display the output for given code:
Import pandas as pd
df1 = pd.DataFrame({‘a’:[10,20],’b’:[30,40]})
df2 = pd.DataFrame({‘a’:[50],’c’:[60]})
df1 = df1.append(df2)
print(df1)Correct
Incorrect
-
Question 30 of 35
30. Question
30. What the following statement will display?
df.iloc[1 : 4, : 2]Correct
Incorrect
-
Question 31 of 35
31. Question
31. Python package used for 2D graphics
Correct
Incorrect
-
Question 32 of 35
32. Question
32. Using pyplot ________ can be used to display information as series of data points
Correct
Incorrect
-
Question 33 of 35
33. Question
33. Write code to draw following chart with appropriate labels
Correct
Incorrect
-
Question 34 of 35
34. Question
34. Which of the following chart element is used to identify data series by its color patterns?
Correct
Incorrect
-
Question 35 of 35
35. Question
35. Which of the following is correct syntax for displaying title on chart?
Correct
Incorrect