Exam A00-240 All QuestionsBrowse all questions from this 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?

    Correct Answer: A

    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
PerkDizzzleOption: D

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

KristytOption: D

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

UnorichOption: A

Correct answer is A.