programming languages Online Quiz - 144
Description: programming languages Online Quiz - 144 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
What is/are purpose(s) of XML Schema?
What is the first line in an XML Schema?
data new; x = '1000'; y= x * .10; run; What is the result?
data quote; infile datalines dlm=','; input x y$; datalines; 10,"100" ; run; What will be the output?
data count; array x{3} (1,2,3); run; What is the result?
The output required from proc means is min, max and nmiss.Also the decimal values should be aligned to 2 digits.Which proc statement satisfies the requirement
proc format; value num 1-6 = 'High' 6-10= 'Low'; run;
data y; set x; length a $12; run; In the dataset x there is a variable called a which is numeric and of length 8.What is the result of this data step?
The report output should be {x y } {1 2} {2 5} {Total 2} Choose the correct option. NOTE { } are added for readability