A data analyst creates a report, and some of the fields are empty. Which of the following conditions should the analyst add to a query to provide a list of all the records with empty fields?
A company has a document that includes the names of key metrics and the standard for how those metrics are calculated company-wide. Which of the following describes this documentation?
A manager requests a report that returns results based on a user's profile. Which of the following best describes this type of report?
A sales analyst is using the following table to produce a report on January sales data:
Month
Sales
Year
Product
Jan
4324563
2024
Chair
Jan
23345
2024
Table
Jan
2456897
2024
Sofa
Jan
345456
2024
Desk
Jan
23345
2024
Table
Which of the following inconsistencies is present in the data set?
A data analyst needs to create and deliver a dashboard that displays the company's financial transactions as they are updated. Which of the following delivery methods should the analyst consider? (Select two).
An analyst needs to produce a final dataset using the following tables:
CourseID
SectionNumber
StudentID
MATH1000
1
10009
MATH1000
2
10007
PSYC1500
1
10009
PSYC1500
1
10015
StudentID
FirstName
LastName
10009
Jane
Smith
10007
John
Doe
10015
Robert
Roe
The expected output should be formatted as follows:
| CourseID | SectionNumber | StudentID | FirstName | LastName |
Which of the following actions is the best way to produce the requested output?
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?