01. Using SAS Visual Analytics Explorer, a content developer would like to examine the relationship between two measures with high cardinality.
Which visualization should the developer use?
a) Scatter Plot
b) Heat Map
c) Scatter Plot Matrix
d) Treemap
02. A sample of data has been clustered and found to contain many multi-row clusters. To construct a "best" record for each multi-row cluster, you need to select information from other records within a cluster.
Which type of rule allows you to perform this task?
a) Clustering rules
b) Record rules
c) Business rules
d) Field rules
03. How are the Field name analysis and Sample data analysis methods similar?
a) They both utilize a match definition from the Quality Knowledge Base.
b) They both require the same identification analysis definition from the Quality Knowledge Base.
c) They both utilize an identification analysis definition from the Quality Knowledge Base.
d) They both require the same match definition from the Quality Knowledge Base.
04. A Data Quality Steward creates these items for the Supplier repository:
- A row-based business rule called Monitor for Nulls
- A set-based business rule called Percent of Verified Addresses
- A group-based rule called Low Product Count
- A task based on the row-based, set-based, and group-based rules called Monitor Supplier Data
Which one of these can the Data Quality Steward apply in an Execute Business Rule node in a data job?
a) set-based business rule called Percent of Verified Addresses
b) row-based business rule called Monitor for Nulls
c) group-based rule called Low Product Count
d) task based on the row-based, set-based, and group-based rules called Monitor Supplier Data
05. Which option in the properties of a Clustering node allows you to identify which clustering condition was satisfied?
a) Condition matched field prefix
b) Cluster condition field matched
c) Cluster condition field count
d) Cluster condition met field
06. How do you access the Data Management Studio Options window?
a) from the Tools menu
b) from the Administration riser bar
c) from the Information riser bar
d) in the app.cfg file in the DataFlux Data Management Studio installation folder
07. A linear model has the following characteristics:
- a dependent variable (y)
- one continuous predictor variables (x1) including a quadratic term (x12)
- one categorical predictor variable (c1 with 3 levels)
- one interaction term (c1 by x1)
Which SAS program fits this model?
a) proc glm data=SASUSER.MLR;
class c1;
model y = c1 x1 x1sq c1byx1 /solution;
run;
b) proc reg data=SASUSER.MLR;
model y = c1 x1 x1sq c1byx1 /solution;
run;
c) proc glm data=SASUSER.MLR;
class c1;
model y = c1 x1 x1*x1 c1*x1 /solution;
run;
d) proc reg data=SASUSER.MLR;
model y = c1 x1 x1*x1 c1*x1;
run;
08. When selecting variables or effects using SELECTION=BACKWARD in the LOGISTIC procedure, the business analyst's model selection terminated at Step 3.
What happened between Step 1 and Step 2?
a) DF increased.
b) AIC increased.
c) Pr > Chisq increased.
d) - 2 Log L increased.
09. A financial analyst wants to know whether assets in portfolio A are more risky (have higher variance) than those in portfolio B.
The analyst computes the annual returns (or percent changes) for assets within each of the two groups and obtains the following output from the GLM procedure:
Which conclusion is supported by the output?
a) Assets in portfolio A are significantly more risky than assets in portfolio B.
b) Assets in portfolio B are significantly more risky than assets in portfolio A.
c) The portfolios differ significantly with respect to risk.
d) The portfolios do not differ significantly with respect to risk.
10. In SAS Visual Analytics Explorer, when a date data item is dragged onto an Automatic Chart visualization either a bar chart or a line chart will be created.
What determines the type of chart created?
a) The format applied to the date data item determines the type of chart displayed.
b) A bar chart is created if the Model property of the data item is set to Discrete, and a line chart is created if the Model property is set to Continuous.
c) The properties associated with the automatic chart determines the type of chart displayed.
d) A line chart is created if the Model property of the data item is set to Discrete, a bar chart is created if the Model property is set to Continuous.