SAS Institute A00-231 SAS 9.4 Base Programming -- Performance-based exam Online Training
Question #1 The following SAS program is submittad: data work.sales; do year = 1 to 5; do month=1 to 12; x+1; output end; end; run; How many observations are written the WORK SALES data set? A . 0B . 1C . 5D . 60 Reveal Solution