programming languages Online Quiz - 215
Description: programming languages Online Quiz - 215 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
What are the valid values of SYSENV macro variable
(a) %let prog=%str(data new; x=1; run;); (b) %let prog=data new%str(;) x=1%str(;)run%str(;); The above two are equivalent?
%let a=begin; %let b=%nrstr(&a); %put UPCASE produces: %upcase(&b); %put QUPCASE produces: %qupcase(&b); The output of the two put statement is :
What are the resulting values for the macro variables that are defined here? %let month1 = June; %let month2 = July; %let period1 = &month1&month2; %let period2 = May&month1; %let period3 = &month2.Aug;
%let lib=sasuser; %let year=02; %let month=jan; libname &lib ’SAS-data-library’; proc print data=&lib.y&year&month; run; The dataset name that proc print gets is "sasusery02jan".Which of the following character you will use in place of to finally have "sasuser.y02jan" dataset. proc print data=&lib.y&year&month; run;
Which of the following correctly produces a title in which the current date is left justified in order to remove extra blanks?
Suggest the most appropriate masking macro function that can be used to read the following text strings: Pride and Prejudice Rice & Beans Charles Dickens' Complete Works
New functions provided with SAP NetWeaver PI 7.1 are an extension of the robust architecture based on
The integral part of SAP Netweaver is made up of
The Expansion for eSOA
As of SAP Netweaver PI 7.1 , the Integration Builder(Design) is replaced by
As of SAP Netweaver PI 7.1 , Interface mapping is replaced by
Among the following choices which is correct about readonly variable in C# code?
What is a manifest ?
COM objects can be called in C# using :
In C# an assembly is deployed
Which among the following is a valid syntax defining a delegate
Which of the following is an exclusive feature of C#?
Considering that applications are running in different application domains how does a running application communicate or share data with other application?