programming languages Online Quiz - 119
Description: programming languages Online Quiz - 119 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
data work.sales; do year=1 to 5; do month = 1 to 12; x + 1; end; end; run; which one of the following represents how many observations are written to the WORK.SALES dataset
The value 110700 is stored in a numeric variable.which one of the following SAS formats is used to display the value as $110,700.00 in a report.
which one of the following System option displays the time on the report
data work.january; set work.allmonths(keep = product month num_sold cost); if month='Jan' then output work.january; sales = cost * num_sold; keep = product sales; run; which variable does the work.january dataset contain?
which one of the following statements is true when SAS encounters a data error in a DATA step?
The contents of the raw data file NAMENUM are listed below: Joe xx The following SAS program is submitted: data test; infile 'namenum'; input name $ number; run; which one of the following is the value of the NUMBER variable?
Local variables do Not get a default value
Is instance variables are overriden?
is it possible to declare the abstract class referece type?