programming languages Online Quiz - 143
Description: programming languages Online Quiz - 143 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
y=intnx('year','21oct2009'd,3,'mid')What is the value of y?
The option that has to be used in order to debug a sas program is
first = 'London,england'; city=substr(first,1,6); new_city=city||","||'England'; What is the value of new_city?
dataset sales sno amt 10 100 15 200 30 300 proc print data = sales; where sno < 20; where sno = 30; run; what is the result?
The contents of Dataset Emp is as follows {Ename} {Babu} {arun} proc sort data = Emp; by ename; run; The output will be: NOTE: { } are added for readability
data new;input x $ @;if X='A' theninput y;datalines;A 1A 2B 3;run;What is the output?
proc sort data=new dupout=newdup;by x;run;What is the result of the above proc execution?
The input file is like below {IP:10.236.130.102} {IP:10.160.236.202} {IP:10.236.119.99} . Read the IP address and store the IP numbers alone without having the IP word in the dataset. Required output is: address {10.236.130.102} {10.160.236.202} {10.236.119.99} Choose the correct option NOTE: { } is added for readability
In the ENVIRONMENT DIVISION which paragrahs should a program (not a subroutine) have?
In the ENVIRONMENT DIVISION which of the following paragrahs should a subroutine have (using same schema)?
Levels are indented by multiples of ___ columns?
What is the format of date in the REMARKS ______?
R$Core should not be used for ------ SORT?
--------- should be used as default qualifier and account-id in @run statement.
INITIALIZE can be used for large Group varibales?
INITIALIZE can be used for small Group varibales?
What all needs to be registered while working on a new program/ecl
What all points to be considered while doing testing?
Version number needs to be changed in CIF/ISTP when ever we are updating it?
we should avoid VALUE clause in programs for dynamic variables?