programming languages Online Quiz - 285
Description: programming languages Online Quiz - 285 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
What statements must be used in order to raise a user-defined exception in PL/SQL?
What will be the output of the following: void main() { int i; for(i=1;i<=4;i++) { printf("%d",i); continue; } }
What will be the output of the following: void main() { char * const ptr="abc"; ptr="xyz"; printf("%s",ptr); }
What will be the output of the following: void main() { char const *ptr="abc"; ptr="xyz"; printf("%s",ptr); }
What is the use of the double trailing "@@" in an input statement?
In the following SAS program, the input data files are sorted by the NAMES variable: libname temp 'SAS-data-library'; data temp.sales; merge temp.sales work.receipt; by names; run; Which one of the following results occurs when this program is submitted?
The following SAS program is submitted: data work.new; length word $7; amount = 7; if amount = 5 then word = 'CAT'; else if amount = 7 then word = 'DOG'; else word = 'NONE!!!'; amount = 5; run; Which one of the following represents the values of the AMOUNT and WORD variables?
Which one of the following statements is true regarding the name of a SAS array?
The following SAS program is submitted: data work.test; array agent{4} $ 12 sales1 – sales4; run; Which one of the following represents the variables that are contained in the output data set?
On which portion(s) of a SAS data set does the PRINT procedure report?
A raw data record is shown below: 07Jan2002 Which one of the following informats would read this value and store it as a SAS date value?
Which is not a Datawindow Buffer?