Tag: programming languages
Questions Related to programming languages
-
Document Generation
-
Code Generation
-
Both 1 and 2
-
None of the above
-
String value.............null
-
Exception
-
Compiler Error
-
Integer value.............0
-
y = '100'
-
y = 100 and a NOTE is written in the SAS log saying that character value has been converted to numeric value
-
y = 100 and no NOTE is written in the SAS log
-
Program does not execute due to Syntax Errors
-
options reset pagenum=3;
-
options reset pageno=3;
-
options pageno=3;
-
options pagenum=3;
-
x y {10 }
-
Syntax Error due to the double quotes
-
x y { 10 "100" }
-
x y { 10 100 }
-
No observations.No variables
-
variable x is created with 3 observations with values 1,2 and 3
-
Array should be given a name during initialization.Syntax Error
-
The variables x1 , x2 and x3 are created with the values 1, 2 and 3
-
proc means; ( min max nmiss maxdec=2);
-
proc means; var x /min max nmiss maxdec=2;
-
proc means min max nmiss maxdec=2;
-
proc means; var x ( min max nmiss maxdec=2);
-
tables product/region;
-
tables product * region;
-
tables product,region;
-
tables product region;
-
proc datasets lib=Mywork kill ;run;
-
proc datasets lib=Mywork delete ;run;
-
proc datasets; lib=Mywork delete ;run;
-
proc datasets lib=Mywork erase ;run;