CSE MCQs :: SAS
- For which of the following type of variables, it will make utmost sense to create dummy variables?
-
The following SAS program is submitted:libname rawdata1 'location of SAS data library';filename rawdata2 'location of raw data file';data work.testdata;infileinput sales1 sales2;run;Which one of the following is needed to complete the program correctly?
- Which of the following keywords is used in SAS to store values in variables?
- Which one of the following statement can't be part of "PROC FREQ?
-
How many variables would be in table "AV after executing the below SAS program?data AV;merge Employee Salary;by name;totsal + salary;run;
- Which of the following are correct PROC statements?
- Which of the following analysis explains "what has happened"?
- Which of the following keywords is used to define the variables in SAS Dataset?
- What happens If the value of the observation weight variable is ZERO?
- Which of the following statements are used to read delimited raw data file and create an SAS data set?