A00-240 Exam QuestionsBrowse all questions from this exam

A00-240 Exam - Question 14


The question will ask you to provide a missing statement. Given the following SAS program:

Which SAS statement will complete the program to correctly score the data set NEW_DATA?

Show Answer
Correct Answer: AD

In a SAS logistic regression procedure, the correct syntax to score a new dataset would use the SCORE statement specifying the data to be scored and the output dataset. The correct statement should be 'Score data=MYDIR.NEW_DATA out=scores;'. This matches option A. The other options either contain syntax errors or do not follow the correct format for the SCORE statement in SAS.

Discussion

3 comments
Sign in to comment
PerkDizzzleOption: D
Oct 25, 2020

D is correct. https://documentation.sas.com/?cdcId=statcdc&cdcVersion=14.2&docsetId=statug&docsetTarget=statug_logistic_syntax31.htm&locale=en

UnorichOption: A
Oct 8, 2020

Correct answer is A.

KristytOption: D
Apr 11, 2021

A is incorrect. There's an extra data word in the first line. D is correct, but there are some obvious grammatical errors