Câu 10: A00-211: SAS Base Programming for SAS 9
After a SAS program is submitted, the following is written to the SAS log:105 data WORK.JANUARY;106 set WORK.ALLYEAR(keep=Product Month Quantity Cost);107 if Month='JAN' then output WORK.JANUARY;108 Sales=Cost * Quantity;109 drop=Month Quantity Cost;-----ERROR 22-322: Syntax error, expecting one of the following: !,!!…
Nội dung câu hỏi
After a SAS program is submitted, the following is written to the SAS log:105 data WORK.JANUARY;106 set WORK.ALLYEAR(keep=Product Month Quantity Cost);107 if Month='JAN' then output WORK.JANUARY;108 Sales=Cost * Quantity;109 drop=Month Quantity Cost;-----ERROR 22-322: Syntax error, expecting one of the following: !,!!, , *, **, +, -,, , =, >, >=,AND, EQ, GE, GT, IN, LE, LT, MAX, MIN, NE, NG, NL,NOTIN, OR, ^=, |, ||, ~=.110 run;What data set option could be attached to WORK. JANUARY to replace the DROP statement that generated the error in the log?
Các lựa chọn
Đáp án được giữ gọn theo nhãn A, B, C, D trong phần bình chọn tương tác.
- A. (drop Month Quantity Cost)
- B. (drop Month, Quantity, Cost)
- C. (drop=Month, Quantity, Cost)
- D. (drop=Month Quantity Cost) — đáp án hiện tại
Cộng đồng
0 bình luận công khai. Tên thành viên được ẩn một phần.