CBSE Class 12
Computer Science
07 Understanding Data
30
Total
0
Attempted
0
Correct
0
Wrong
00:00:00
Q-1
Consider the dataset: [10, 20, 30, 40, 50]. What is the mean value?
Easy
Statistical Techniques for Data Processing
A
30
B
25
C
35
D
20
Answer: 30
Explanation: Mean = (10+20+30+40+50)/5 = 30.
Q-2
Which of the following best describes data processing?
Easy
Data Processing
A
Collecting data
B
Converting raw data into meaningful information
C
Storing data permanently
D
Deleting unwanted data
Answer: Converting raw data into meaningful information
Explanation: Data processing transforms raw data into useful information.
Q-3
What will be the output of the following code?
Easy
Statistical Techniques for Data Processing
Reference Code
```python
import statistics
data=[5,10,15]
print(statistics.mean(data))
A
10
B
5
C
10.0
D
Error
Answer: 10.0
Explanation: Mean is 10, returned as float 10.0.
Q-4
Which stage involves gathering raw facts from various sources?
Easy
Data Collection
A
Processing
B
Storage
C
Analysis
D
Collection
Answer: Collection
Explanation: Data collection is the process of gathering raw data.
Q-5
Which of the following is an example of structured data?
Medium
Data Storage
A
Database table
B
Images
C
Videos
D
Audio files
Answer: Database table
Explanation: Structured data is organized in rows and columns.
Q-6
What will be the median of the dataset [3, 7, 9, 11, 15]?
Medium
Statistical Techniques for Data Processing
A
7
B
9
C
11
D
8
Answer: 9
Explanation: Median is the middle value in sorted data → 9.
Q-7
What is the output?
Medium
Statistical Techniques for Data Processing
Reference Code
```python
import statistics
print(statistics.median([2,4,6,8]))
A
4
B
6
C
5.0
D
Error
Answer: 5.0
Explanation: Median of even set is average → (4+6)/2 = 5.0.
Q-8
Which of the following is used for storing large volumes of data?
Easy
Data Storage
A
Registers
B
Cache
C
RAM
D
Hard Disk
Answer: Hard Disk
Explanation: Hard disk stores large data persistently.
Q-9
What is the mode of dataset [2, 3, 3, 5, 7]?
Easy
Statistical Techniques for Data Processing
A
3
B
2
C
5
D
7
Answer: 3
Explanation: Mode is the most frequent value → 3.
Q-10
Which method is used to collect data directly from individuals?
Medium
Data Collection
A
Survey
B
Database
C
Storage
D
Processing
Answer: Database
Explanation: Survey is a primary data collection method.
Q-11
Which Python function calculates mean without using libraries?
Medium
Statistical Techniques for Data Processing
Reference Code
```python
data=[2,4,6]
print(sum(data)/len(data))
A
2
B
4
C
6
D
Error
Answer: 6
Explanation: Mean = (2+4+6)/3 = 4.
Q-12
Which process organizes raw data into meaningful form?
Easy
Data Processing
A
Collection
B
Storage
C
Transmission
D
Processing
Answer: Processing
Explanation: Processing converts raw data into useful information.
Q-13
Which of the following is an example of unstructured data?
Medium
Data Storage
A
Text document
B
Spreadsheet
C
Database table
D
CSV file
Answer: Text document
Explanation: Unstructured data includes text, images, etc.
Q-14
Which statistical measure is sensitive to extreme values?
Medium
Statistical Techniques for Data Processing
A
Median
B
Mean
C
Mode
D
Range
Answer: Mean
Explanation: Mean is affected by extreme values.
Q-15
What is the range of [5, 10, 15, 20]?
Medium
Statistical Techniques for Data Processing
A
5
B
10
C
15
D
20
Answer: 15
Explanation: Range = max - min = 20 - 5 = 15.
Q-16
Which of the following stores data temporarily?
Easy
Data Storage
A
Hard disk
B
SSD
C
ROM
D
RAM
Answer: RAM
Explanation: RAM is volatile memory.
Q-17
Which step involves cleaning and transforming data?
Medium
Data Processing
A
Processing
B
Storage
C
Collection
D
Input
Answer: Processing
Explanation: Processing includes cleaning and transformation.
Q-18
Which statistical measure represents the middle value?
Easy
Statistical Techniques for Data Processing
A
Mean
B
Median
C
Mode
D
Range
Answer: Median
Explanation: Median is the middle value.
Q-19
What will be printed?
Medium
Statistical Techniques for Data Processing
Reference Code
```python
data=[1,2,3,4]
print(max(data)-min(data))
A
2
B
3
C
3
D
4
Answer: 3
Explanation: Range = 4 - 1 = 3.
Q-20
Which step ensures data is stored for future use?
Easy
Data Storage
A
Collection
B
Processing
C
Analysis
D
Storage
Answer: Storage
Explanation: Storage preserves data.
Q-21
Which of the following is primary data?
Medium
Data Collection
A
Survey responses
B
Published reports
C
Internet data
D
Books
Answer: Survey responses
Explanation: Primary data is collected directly.
Q-22
Which tool is commonly used to store structured data?
Easy
Data Storage
A
Database
B
Image
C
Audio
D
Video
Answer: Image
Explanation: Databases store structured data.
Q-23
Which measure indicates most frequent value?
Easy
Statistical Techniques for Data Processing
A
Mean
B
Median
C
Mode
D
Range
Answer: Mode
Explanation: Mode represents frequency.
Q-24
Which process involves organizing data into charts or graphs?
Medium
Data Processing
A
Collection
B
Storage
C
Input
D
Processing
Answer: Processing
Explanation: Processing includes visualization.
Q-25
Which device is used for long-term data storage?
Easy
Data Storage
A
Hard Disk
B
RAM
C
Cache
D
Register
Answer: Hard Disk
Explanation: Hard disk is non-volatile storage.
Q-26
Which process collects data from surveys and experiments?
Easy
Data Collection
A
Processing
B
Collection
C
Storage
D
Analysis
Answer: Collection
Explanation: Collection gathers data.
Q-27
Which statistical measure shows spread of data?
Medium
Statistical Techniques for Data Processing
A
Mean
B
Median
C
Range
D
Mode
Answer: Range
Explanation: Range indicates spread.
Q-28
Which stage involves interpreting processed data?
Medium
Data Processing
A
Collection
B
Storage
C
Processing
D
Analysis
Answer: Analysis
Explanation: Analysis interprets data.
Q-29
Which type of data is organized in rows and columns?
Easy
Data Storage
A
Structured data
B
Unstructured data
C
Raw data
D
Processed data
Answer: Structured data
Explanation: Structured data is tabular.
Q-30
Which process converts raw data into useful information?
Easy
Data Processing
A
Collection
B
Processing
C
Storage
D
Retrieval
Answer: Processing
Explanation: Processing transforms data into information.
◀
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
▶