QUESTION NO: 20
Given the SAS data set PRICES:
PRICES Prodid price producttype sales returns
K125 5.10
NETWORK 15 2 B132S 2.34
HARDWARE 300 10 R18KY2 1.29
SOFTWARE 25 5 3KL8BY 6.37
HARDWARE 125 15 DY65DW 5.60
HARDWARE 45 5 DGTY23 4.55
HARDWARE 67 2
The following SAS program is submitted: data hware inter cheap;
set prices(keep = productype price);
if producttype = 'HARDWARE' then output hware;
else if producttype = 'NETWORK' then output inter;
if price le 5.00;
run;
How many observations does the HWARE data set contain?
A. 0
B. 2
C. 3
D. 4
Answer: D
Solution : PDV 와 output 을 분별해서 알아야 한다 .
if 문에 걸리게 된다면 output으로 처리하며 , if 문에 pirce 로써 5.00 보다 작다는 조건에 걸리게 된다면 ,
output 이 되지 않고 PDV 내에서도 삭제 된다.
#IT #먹방 #전자기기 #일상
#개발 #일상