The following SAS program is submitted: proc datasets lib = testdata; modify one; label num = 'Number'; format num 4.; quit; Which one of the following SQL programs produces the same results as the above DATASETS procedure?
A.
proc sql; modify table testdata.one num format = 4. label = 'Number'; quit;
B.
proc sql; alter table testdata.one modify num format = 4. label = 'Number'; quit;
C.
proc sql; modify table testdata.one alter num format = 4. label = 'Number'; quit;
D.
proc sql; alter table testdata.one modify num (format = 4. label = 'Number');
Currently there are no comments in this discussion, be the first to comment!
This section is not available anymore. Please use the main Exam Page.A00-212 Exam Questions
Log in to ExamTopics
Sign in:
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Comments