Summer Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: exc65

A data analyst receives the following sales data for a convenience store:

Item

Quantity

Price

Chocolate Bars

7

$1.99

Vanilla Ice Bars

2

$4.99

Chocolate Wafers

6

$0.99

Peanut Butter

2

$2.99

Cups

3

$4.99

Strawberry Jam

3

$4.99

Chocolate Cake

9

$6.99

Milk Chocolate

2

$2.99

Almonds

5

$2.99

The analyst needs to provide information on the products that contain chocolate. Which of the following RegEx should the analyst use to filter the chocolate products?

A.

Chocolate!

B.

Chocolate$

C.

%Chocolate&

D.

#Chocolate#$

A database administrator needs to implement security triggers for an organization's user information database. Which of the following data classifications is the administrator most likely using? (Select two).

A.

Public

B.

Open

C.

Sensitive

D.

Non-Sensitive

E.

Private

F.

Encrypted

Which of the following is a NoSQL database?

A.

PostgreSQL

B.

MySQL

C.

Oracle

D.

MongoDB

A data analyst encounters an issue with new software and a code that they are using. The analyst includes print statements in the code to try to identify the issue, without success. An informal peer review of the code also produces the same result. The analyst confirms that the software is updated to the latest version and compatible with the code. Which of the following troubleshooting steps should the analyst take next?

A.

Use the old software and preexisting code, since both were functional.

B.

Contact the IT department and inform them that the software has a bug.

C.

Escalate to the department manager and ask for assistance.

D.

Research the issue online and see if a solution is available.

Which of the following tables holds relational keys and numeric values?

A.

Fact

B.

Graph

C.

Dimensional

D.

Transactional

A data analyst pulls a table similar to the following one:

ID

Type

TypeID

Phone

1

Full Time

Full Time 1

Mobile

2

Part Time

Part Time 2

Work

3

Full Time

Full Time 3

Mobile

Which of the following best explains the data issue with TypeID?

A.

Redundancy

B.

Outlier

C.

Missing data

D.

Duplication

Which of the following data repositories should a company use when structured data about the whole company needs to be stored in a predefined data structure?

A.

Data mart

B.

Data warehouse

C.

Data silo

D.

Data lake

A data analyst receives a request for the current employee head count and runs the following SQL statement:

SELECT COUNT(EMPLOYEE_ID) FROM JOBS

The returned head count is higher than expected because employees can have multiple jobs. Which of the following should return an accurate employee head count?

A.

SELECT JOB_TYPE, COUNT DISTINCT(EMPLOYEE_ID) FROM JOBS

B.

SELECT DISTINCT COUNT(EMPLOYEE_ID) FROM JOBS

C.

SELECT JOB_TYPE, COUNT(DISTINCT EMPLOYEE_ID) FROM JOBS

D.

SELECT COUNT(DISTINCT EMPLOYEE_ID) FROM JOBS

Given the following dataset:

Day

Number of Guests

Monday

455

Tuesday

346

Wednesday

382

Thursday

563

Friday

887

Saturday

934

Sunday

346

Which of the following is the mode?

A.

346

B.

446

C.

455

D.

559

A data analyst calculated the average score per student without making any changes to the following table:

Student

Subject

Score

123

Math

100

123

Biology

80

234

Math

96

123

Biology

80

345

Biology

88

234

Math

96

Which of the following exploration techniques should the analyst have considered before calculating the average?

A.

Duplication

B.

Redundancy

C.

Binning

D.

Grouping