SAS_Institute
A00-211 · Question #208
Given the SAS data set PRICES: PRICES Prodid priceproducttypesalesreturns K1255.10NETWORK152 B132S 2.34HARDWARE30010 R18KY2 1.29SOFTWARE255 3KL8BY 6.37HARDWARE12515 DY65DW 5.60HARDWARE455 DGTY23…
The correct answer is D. 4. See the full explanation below for the reasoning.
Question
Given the SAS data set PRICES:
PRICES Prodid priceproducttypesalesreturns K1255.10NETWORK152 B132S 2.34HARDWARE30010 R18KY2 1.29SOFTWARE255 3KL8BY 6.37HARDWARE12515 DY65DW 5.60HARDWARE455 DGTY23 4.55HARDWARE672 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; 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?
Options
- A0
- B2
- C3
- D4
How the community answered
(31 responses)- A3% (1)
- B13% (4)
- C3% (1)
- D81% (25)
Community Discussion
No community discussion yet for this question.