wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Data Science Quiz1

Total questions: 20

Worksheet time: 10mins

Name
Class
Date
1.

Which of the following best defines Data Science?

a)

a) The study of structured data only

b)

b) The process of collecting, analyzing, and interpreting large amounts of data to gain insights

c)

c) The use of hardware components to store data

d)

d) A subset of computer networking

2.

Which of these is NOT a component of Data Science?

a)

a) Data Engineering

b)

b) Data Visualization

c)

c) Web Designing

d)

d) Statistical Analysis

3.

Which of the following is NOT a core skill for a Data Engineer?

a)

a) Database Management

b)

b) Data Warehousing

c)

Data Analysis

d)

Graphic Design

4.

Which tool is commonly used for data visualization?

a)

SQL Server only

b)

MS Word

c)

Photoshop

d)

Tableau

5.

Why are communication skills important in data science?

a)

a) To create new programming languages

b)

b) To explain insights effectively to non-technical stakeholders

c)

c) To write essays

d)

d) To debug code only

6.

Which of the following is true about Python in data science?

a)

a) Python is not widely used for data science

b)

b) Python has libraries like NumPy and Pandas for data manipulation

c)

c) Python cannot handle large datasets

d)

d) Python is a database management system

7.

What will be the output of the expression x = 5 + 3?

a)

5+3

b)

8

c)

'5+3'

d)

Error

8.

What will len("Data") return in Python?

a)

3

b)

4

c)

5

d)

6

9.

Which statistical measure represents the middle value of a dataset?

a)

Mean

b)

Median

c)

Mode

d)

Range

10.

Which type of data analysis focuses on predicting future trends?

a)

a) Descriptive analysis

b)

b) Diagnostic analysis

c)

c) Predictive analysis

d)

d) Prescriptive analysis

11.

Business Intelligence mainly focuses on:

a)

a) Analyzing past data to support decision-making

b)

b) Only collecting raw data without analysis

c)

c) Creating operating systems

d)

d) Making computer hardware

12.

Which of the following is a valid Python variable name?

a)

a) 1variable

b)

b) data_value

c)

c) data-value

d)

d) class

13.

What is the data type of the value returned by input() function in Python 3?

a)

Integer

b)

String

c)

Float

d)

Boolean

14.

What is the output of 5 // 2 in Python?

a)

2.5

b)

2.0

c)

2

d)

1

15.

Which of the following is true about Python tuples?

a)

a) Tuples are mutable

b)

b) Tuples are immutable

c)

c) Tuples cannot store strings

d)

d) Tuples can be modified after creation

16.

Which function converts a string to uppercase in Python?

a)

a) toUpperCase()

b)

b)upper

c)

c) uppercase()

d)

d) upcase()

17.

What is the output of "data science". Replace("data", "AI")?

a)

a) AI science

b)

b) data science

c)

c) AI data science

d)

d) science AI

18.

What is the output of " ".join(['Python', 'is', 'fun'])?

a)

a) ['Python is fun']

b)

b) Python is fun

c)

c) Pythonisfun

d)

d) ['Python', 'is', 'fun']

19.

What is the output of "bananaa".count("a")?

a)

1

b)

2

c)

3

d)

4

20.

What does "hello".find("e") return?

a)

0

b)

-1

c)

2

d)

1