Class 12 Informatics Practices Online Test Set-C
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
- 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. Smita want to create a presentation for her project work, but she does not have PowerPoint installed on her computer. What free software she can download to complete her project?
Correct
Incorrect
-
Question 2 of 35
2. Question
2. Which of the following substance make e-waste hazardous in nature?
Correct
Incorrect
-
Question 3 of 35
3. Question
3. It refers to the proper manner and behavior we need to exhibit while being online?
Correct
Incorrect
-
Question 4 of 35
4. Question
4. Statement1: copyright grants legal right to protect our creative work as a property.
Statement2: Freeware source code is usually hidden from user.Correct
Incorrect
-
Question 5 of 35
5. Question
5.(i) ____________ is data trail you leave while surfing internet without knowing you are doing so
(ii)____________ usually granted for Inventions.Correct
Incorrect
-
Question 6 of 35
6. Question
6. Consider the following statements regarding Net etiquette and select which statements are TRUE:
Statement1: we should not use copyrighted material without permission of creator.
Statement2: we should not blindly believe in everything that we come across on social media
Statement3:we should respond to all mails and comments whether they have relevance or notCorrect
Incorrect
-
Question 7 of 35
7. Question
7. Which of the following is not an example of e-waste?
Correct
Incorrect
-
Question 8 of 35
8. Question
8. OSI stands for
Correct
Incorrect
-
Question 9 of 35
9. Question
9. loc uses ______ to access Series values.
Correct
Incorrect
-
Question 10 of 35
10. Question
10. What will be output of given code?
Import pandas as pd
s = pd.Series(2, index = range(3,9,3))
Print(S)Correct
Incorrect
-
Question 11 of 35
11. Question
11. Which among the following is not a library?
Correct
Incorrect
-
Question 12 of 35
12. Question
12. What will be output of given code?
Import pandas as pd
S = pd.Series([30,80,70,12], index = [50,60,70,80])
print(s[70]+s[80])Correct
Incorrect
-
Question 13 of 35
13. Question
13. Write the output of the given command:
import pandas as pd
S=pd.Series([8,2,6,1])
Print(S.sort_values().head())Correct
Incorrect
-
Question 14 of 35
14. Question
14. Value and Size of series is
Correct
Incorrect
-
Question 15 of 35
15. Question
15. Which of the statement is correct to display last element of a Series object ‘S’ of shape 8.
Correct
Incorrect
-
Question 16 of 35
16. Question
16. What will be output of given code?
Import pandas as pd
S = pd.Series([10,20,30,40,50], index = [4,3,2,1,0])
Print(S.iloc[1])Correct
Incorrect
-
Question 17 of 35
17. Question
17. Df.fillna(method = ‘pad’) will
Correct
Incorrect
-
Question 18 of 35
18. Question
18. To display row labels from Dataframe df we can use
Correct
Incorrect
-
Question 19 of 35
19. Question
19.Billu has created a dataframe ‘sale’ with data as given below. ID Name Jan Feb Mar Delhi 1 Ram kumar 45 78 89 Kolkata 2 Suraj singh 76 45 81 Mumbai 3 Jai Shankar 45 80 66
His Manager asked him to count total no of columns it consist. Which command he can write to find it?
Correct
Incorrect
-
Question 20 of 35
20. Question
20. In Q19, Billu has been again asked to find the total sale of all three months and add to new column ‘total’. He is unable to do so. Help him to select the correct command.
Correct
Incorrect
-
Question 21 of 35
21. Question
21. In Q19, Billu want to show sale of mar with names of all salesmans. What code he should write to get the values?
Correct
Incorrect
-
Question 22 of 35
22. Question
22. Which of the following can not be used to create a dataframe?
Correct
Incorrect
-
Question 23 of 35
23. Question
23. Statement 1: Boolean indexed elements can not be accessed with loc
Statement 2: To divide a dataframe in two subset best suitable indexing is Boolean indexingCorrect
Incorrect
-
Question 24 of 35
24. Question
24. To display total no of rows and columns which of the following can be used?
Correct
Incorrect
-
Question 25 of 35
25. Question
25. Chandu has created following datafame ‘party’
partyA partyB partyC
Shyam 78 87 56
Charan 67 54 51
Lalla 54 71 82
Karmu 66 80 93
Now he wants to rename all the indexes by 1, 2, 3 and 4. What code he should write?Correct
Incorrect
-
Question 26 of 35
26. Question
26. While merging two dataframes df1 and df2, we want to raise error if duplicate row labels are found. What code you think is most appropriate from given choices?
Correct
Incorrect
-
Question 27 of 35
27. Question
27. Sumit want to create (i) line and (ii) horizontal bar chart. But he is not getting the method name to create them. Help him to choose correct methods among given choices.
Correct
Incorrect
-
Question 28 of 35
28. Question
28. Which of the following is correct syntax to display histogram using DATAFRAME ‘df’?
Correct
Incorrect
-
Question 29 of 35
29. Question
29. Consider the two statements given below:
Statement 1: python pandas also have their own plot() for visualization as plot() of matplotlib.pyplot .
Statement 2: we can not create chart using dataframe containing data stored in CSV file.Correct
Incorrect
-
Question 30 of 35
30. Question
30. Bydefault, legend is located at _______ corner of plot.
Correct
Incorrect
-
Question 31 of 35
31. Question
31. Identify the chart type
Correct
Incorrect
-
Question 32 of 35
32. Question
32. To save a dataframe to a text or csv file we can use
Correct
Incorrect
-
Question 33 of 35
33. Question
33. Which among the following argument is used in read_csv() to avoid particular rows while reading
Correct
Incorrect
-
Question 34 of 35
34. Question
34. For given dataframe book
create csv file lib.csv with columns bname and price.
Correct
Incorrect
-
Question 35 of 35
35. Question
35. By default, read_csv() uses the value of first row as column header in dataframes. Which argument will you give to ensure that the top/first row’s data is used as data and not as column header?
Correct
Incorrect