programming languages Online Quiz - 257
Description: programming languages Online Quiz - 257 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
What is the value stored in the variable x? Data test; name = ’TATA CONSULTANCY SERVICES’; b = ’C’; x = INDEX (name, b); Run;
What is the use of %INCLUDE statement in a program?
What is the SAS data value of 01-Jan-1960?
Which of the following can be used to read numeric values that contain numeric values and commas into a SAS dataset?
What does the line hold specifier single trailing(@) do when used in an input statement?
What is the output of the following sum statement? X1=9, X2=4, X3=1 Z=sum(of X1-X3);
What is the use of PUT function in a DATA step?
I want to create a 2 way cross tabulation frequency based on Country and Sales using FREQ procedure. From the given options pick the correct code?
Which procedure can be used to see the descriptor portion of a dataset?
Find out the error in the following code? Libname output_dir “c:\mydocuments\output”; Data output_dir.test; Infile datalines dlm=’,’; Input name $ total; If total > 50; Datalines; Sharma,50 Thiyaga,90 Ashok,60 Run;