WGU Comptia Data+ D492 Part 2 Latest updated version with accurate solutions 2026

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/96

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 2:27 AM on 6/11/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

97 Terms

1
New cards

____ ____ language is used to define the structure of a the database

data definition language

2
New cards

_____ _____ language is used to add, remove, retrieve, and change data in the database

data manipulation language

3
New cards

the DDL command _____, creates new tables and databases

CREATE

4
New cards

the DDL command _____, is used to change the structure of an existing database and tables

ALTER

5
New cards

the DDL command ______ is use to delete entire tables and databases

DROP

6
New cards

the DML command _____ is used to retrieve information from a database

SELECT

7
New cards

the DML command ______ is used to add new information to a database

INSERT

8
New cards

the DML command _____ is used to modify information in a database

UPDATE

9
New cards

the DML command _____ is used to delete records from a database

DELETE

10
New cards

a ______ value in SQL represents missing or unknown data

NULL

11
New cards

aggregating data summarizes ______ datasets

large

12
New cards

_______ determines the number of records

COUNT

13
New cards

_____ adds up the values in a field

SUM

14
New cards

_____ finds the smallest value in a field

MIN

15
New cards

_____ finds the largest value in a field

MAX

16
New cards

______ calc the avg value in a field

AVG/MEAN

17
New cards

GROUP BY allows you to break data out into ______

sub categories

18
New cards

date _______ allows you to extract elements from a date value

deconstruction

19
New cards

date ______ allows you to create date values from text elements

construction

20
New cards

________ values are calculated from stored values

derived

21
New cards

the _______ operator returns all of the unique rows from both sets into one table

UNION

22
New cards

the _______ operator only returns the value that is shared on both tables

INTERSECT

23
New cards

the ______ operator returns all of he unique rows appear in the FIRST result set but not the second

EXCEPT

24
New cards

Only returns matched records from the tables that are being joined

INNER JOIN

25
New cards

Only returns non-matching records from the tables that are being joined

OUTER JOIN

26
New cards

________ queries embed one query inside of another

Nested queries

27
New cards

database _____ help us efficiently find information about a database

indexes

28
New cards

in a ______ query

indexes exist for all query columns

covered

29
New cards

______ tables store data for short term use during a database session

temporary table

30
New cards

what key word in a SQL query statement creates a temporary table

INTO

31
New cards

query _______ plan describes how the data will execute the query

query execution plan

32
New cards

what is he purpose of a query execution plan

to optimize query performance

33
New cards

in a _______ query, the SQL template is precompiled on the database server

parameterized query

34
New cards

a ______ procedure query template is stored on the database server and the application passes arguments

this type of query is maintained by the database admin

stored

35
New cards

a parameterized query is a template that is stored in the ______ code and the application passes the template and arguments to the database

the app developer maintains the parameterized query

application

36
New cards

_____ is data that is missing completely at random

MCAR

37
New cards

_____ is data that is missing at random

MAR

38
New cards

_____ is data that is missing not at random

MNAR

39
New cards

data ______ are data point that are distant from the norm

outliers

40
New cards

_______ group datapoints into bins representing ranges of a numerical value

histograms

41
New cards

______ display summary statistics about a dataset

boxplots

42
New cards

________ _______ removes the entire record from the dataset

remove row

43
New cards

______ ______ replaces the specific outlier values with NA

remove value

44
New cards

______ ______ replaces the outlier values with the correct values obtained from other sources

correct values

45
New cards

_________ replaces missing values with the mean, median, or mode

imputation

46
New cards

________ is a set a maximum and minimum values the dataset and replace outliers with those values

capping

47
New cards

______ replaces the outlier values with values predicted by a model

prediction

48
New cards

when ______ datasets it add the new data as a new row

appending

49
New cards

when ____ datasets it adds the new data as new columns

merging

50
New cards

_______ changes data to a different unit of measurment

conversion

51
New cards

______ adjusts the magnitude of data for comparison

scaling

52
New cards

______ adjusts the data so that it has a mean of 0 and a standard deviation of 1

standardization

53
New cards

________ ______ allow you to search for patterns in text

regular expressions (regex)

54
New cards

the metacharacter ______ in regex matches any single character

.

55
New cards

the metacharacter ______ in regex define a range of characters

[ ]

56
New cards

the metacharacter ______ in regex means one or more of the previous element

+

57
New cards

the metacharacter ______ in regex means zero or more of the previous element

*

58
New cards

the metacharacter ______ in regex represents a word boundary

\b

59
New cards

______ divides a continuous variable into discrete intervals

binning

60
New cards

______ groups data based upon similarity

clustering

61
New cards

data _______ enhances a dataset with additional features

data augmentation

62
New cards

data augmentation

_______ fields are created by calculations/logic on existing data

derived fields

63
New cards

data augmentation

_____ create summary data

aggregations

64
New cards

_________ data break down complex fields for analysis

exploding data

65
New cards

when presenting data to stakeholders make sure you ______ your audience

know

66
New cards

when presenting your data ensure to handle _____ and ____ data appropriately

sensitive and non-sensitive

67
New cards

________ applies mathematical techniques to data to help us analyze, interpret and present that data

statistics

68
New cards

______ statistics describe our data by summarizing it and providing us with visible features

descriptive

69
New cards

_______ statistics draw conclusions from our data by making generalizations and predictions

inferential

70
New cards

_______ statistics make forecasts about the future based upon our data

predictive

71
New cards

______ statistics recommend actions to optimize future results

prescriptive

72
New cards

descriptive statistics are also known as _______ statistics

summary

73
New cards

the ___________ _______ ______ ______ summarize data using a single value that identifies the center of the dataset

measure of central tendency

74
New cards

what are the 3 types of measures of central tendency?

mean, median, mode

75
New cards

What is the mean?

the avg

76
New cards

What is the median?

middle value

77
New cards

what is the mode?

the value that

78
New cards

the measures of ______ describe how spread out the dataset is around the center

dispersion

79
New cards

_____ ______ data does not fit any statistical distribution

non-parametric

80
New cards

_______ the average of the squared differences of each value in the dataset from the mean

variance

81
New cards

how to calculate standard deviation

Square root of variance

82
New cards

what can you enable to assist in troubleshooting

logs

83
New cards

what are 3 techniques to validate that the data source was complete

header row for proper structure

footer row to count total number of added data

checksums to check that the data wasnt altered

84
New cards

what are the 2 most common ways to communicate data to stakeholders

reports and dashboards

85
New cards

_____ are paper or electronic documents that contain data from a given point in time

reports

86
New cards

_____ are dynamic presentation of data that allow users to explore the data interactively

dahsboards

87
New cards

what are the two main way users can access a report

pull or push report

88
New cards

a _____ report makes reports available to users on a self service/ on demand basis

pull report

89
New cards

a _____ report is sent to users on a scheduled basis

push report

90
New cards

a _________ _______ creates a first impression of your work

cover page

91
New cards

the _______ ______ provides an overview of its contents and distills key insights from the report

executive summary

92
New cards

well designed reports should convey information ____ and _____

clearly and efficiently

93
New cards

when designing your reports use a _______ report layout to communicate your message

thoughtful

94
New cards

the report ___ ____ is the date that the report was generated

report run date

95
New cards

the data ____ ____ is the date when the data was last updated

data refresh date

96
New cards

_______ _______ identify the template used to create a report or dashboard

version numbers

97
New cards

you should include _____ for all of the data that you use in your report

sources