wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

EDTS End of program assessment

Total questions: 27

Worksheet time: 14mins

Name
Class
Date
1.

Which SQL command is used to create a new table?

a)

UPDATE

b)

SELECT

c)

CREATE TABLE

d)

INSERT

2.

In SQL, which keyword is used to remove all rows from a table without deleting the table itself?

a)

ALTER

b)

DELETE

c)

DROP

d)

TRUNCATE

3.

What does a PRIMARY KEY ensure in a table?

a)

Foreign key relationship

b)

Uniqueness of each row

c)

Multiple identical values

d)

Allows NULL values

4.

What is the correct SQL code to select all columns from a table named students?

a)

SELECT ALL FROM students;

b)

SELECT * FROM students;

c)

GET * FROM students;

d)

SHOW ALL students;

5.

Which JOIN returns only rows that exist in both tables?

a)

FULL OUTER JOIN

b)

RIGHT JOIN

c)

INNER JOIN

d)

LEFT JOIN

6.

Which SQL function returns the year from a date column?

a)

DATE()

b)

DAY()

c)

YEAR()

d)

MONTH()

7.

If you want to show all rows from the left table and only matching rows from the right table, which JOIN should you use?

a)

FULL OUTER JOIN

b)

RIGHT JOIN

c)

LEFT JOIN

d)

INNER JOIN

8.

Which command is correct for adding a new column to an existing table?

a)

INSERT INTO employees ADD hire_year INT;

b)

MODIFY TABLE employees ADD hire_year INT;

c)

ALTER TABLE employees ADD hire_year INT;

d)

UPDATE TABLE employees ADD hire_year INT;

9.

What will this query return? SELECT hire_weekday, COUNT (*) FROM employees_table GROUP BY hire_weekday;

a)

Number of employees grouped by weekday hired

b)

All employees with NULL hire dates

c)

All weekdays in a year

d)

The total salary per weekday

10.

Which statement about FOREIGN KEYS is true?

a)

They always cascade deletes automatically.

b)

They allow duplicate primary keys.

c)

They connect rows in one table to rows in another.

d)

They must always be unique.

11.

What function removes extra spaces from a text string?

a)

REMOVE

b)

CLEAN

c)

TRIM

d)

SUBSTITUTE

12.

Which feature allows you to eliminate duplicate entries in a dataset?

a)

Flash Fill

b)

Sort

c)

Remove Duplicates

d)

Data Validation

13.

Which tool splits data into columns based on a delimiter?

a)

Column Break

b)

Data Split

c)

Separate Data

d)

Text to Columns

14.

Which function joins text from multiple cells?

a)

GROUP

b)

LINK

c)

SPLIT

d)

CONCATENATE

15.

What function counts numeric values in a range?

a)

COUNTIF

b)

SUM

c)

COUNTA

d)

COUNT

16.

What is used to refer to a fixed cell in a formula?

a)

INDIRECT

b)

Relative Reference

c)

Dynamic Range

d)

Absolute Reference

17.

Which chart is best to show parts of a whole?

a)

Bar

b)

Line

c)

Area

d)

Pie

18.

How do you apply a color scale to values?

a)

Use Themes

b)

Data Bars

c)

Use Cell Styles

d)

Conditional Formatting

19.

In a star schema, which type of table stores descriptive attributes like “product name” or “customer Name”?

a)

Report View

b)

Fact Table

c)

Bridge Table

d)

Dimension Table

20.

Which of the following is a valid DAX function for creating calculated columns or measures?

a)

SUM

b)

AVERAGE

c)

SUMX

d)

SUMSQ

e)

SUMIF

21.

What is the main purpose of normalization in database?

a)

To reduce data redundancy and improve data integrity

b)

To simplify database queries by combining tables

c)

To create complex data relationships between tables

d)

To create data redundancy and increase duplicates

22.

Which of the following is TRUE about DAX measures

a)

DAX measures are only gotten with calculated columns

b)

Dax measures are simplified context commands to derive a standing aggregation after a measure

c)

DAX measures are calculations used in data models to perform data aggregations based on filter context

d)

DAX measures are only gotten through basic mathematics functions and cannot be refreshed

23.

Which of the following are examples of fact tables fields?

a)

Customer name

b)

Sales date

c)

Sales amount

d)

Store Location

e)

Product category

24.

What is the similarity between Excel and Power Bi

a)

Both are for Word Processing.

b)

Both are Data analysis tools

c)

Power Bi has to do with Data-Modelling while Excel doesn’t.

d)

Both are Microsoft products for Pivot Tables and mathematics

25.

Which of the following is true in Data modelling

a)

Data modelling excludes relationship among data entities

b)

Data modelling involves creating a detailed representation of your data

c)

Data modelling has a limit to roes and columns imported into Power Bi

d)

Data modelling cannot work without data being normalized

26.

Which operation is typically performed during data cleaning in Power BI?

a)

Creating Null Values

b)

Adding Duplicates

c)

Removing Null Values

d)

Removing Duplicates

e)

Altering Duplicates

27.

Which table in a star schema contains numeric transactional records used for aggregations?

a)

Fact table

b)

Bridge table

c)

Dimension table

d)

Report view