Multiple Programming Languages Quiz

Test your knowledge across multiple programming languages including PowerBuilder, SAS, C/C++, and PL/SQL

20 Questions Published

Questions

Question 1 Multiple Choice (Multiple Answers)

What statements must be used in order to raise a user-defined exception in PL/SQL?

  1. RAISE
  2. PRAGMA EXCEPTION_INIT
  3. OTHERS
  4. EXCEPTION
Question 2 Multiple Choice (Single Answer)

What will be the output of the following: void main() { int i; for(i=1;i<=4;i++) { printf("%d",i); continue; } }

  1. 1
  2. 1234
  3. 123
  4. 234
Question 3 Multiple Choice (Single Answer)

What will be the output of the following: void main() { float a=0.7; if(a<0.7) printf("c++"); else printf("c"); }

  1. c++
  2. c
  3. Compile time error
  4. None of these
Question 4 Multiple Choice (Single Answer)

What will be the output of the following: void main() { char * const ptr="abc"; ptr="xyz"; printf("%s",ptr); }

  1. abc
  2. xyz
  3. Compile time error
  4. None of these
Question 5 Multiple Choice (Single Answer)

What will be the output of the following: void main() { char const *ptr="abc"; ptr="xyz"; printf("%s",ptr); }

  1. None of these
  2. Compile time error
  3. abc
  4. xyz
Question 6 Multiple Choice (Single Answer)

What will be the output of the following: void main() { register int a; printf("%d",a); }

  1. 0
  2. Garbage value
  3. Compile time error
  4. 1
Question 7 Multiple Choice (Multiple Answers)

What is the use of the double trailing "@@" in an input statement?

  1. loads a new record into the input buffer if an end-of-record is found in the current record
  2. holds the current data line in the buffer for another input statement to process
  3. can be used to read multiple observations from a single data line
  4. is a syntax error
Question 8 Multiple Choice (Single Answer)

The following SAS program is submitted: data work.month; date = put('13mar2000'd,ddmmyy10.); run; Which one of the following represents the type and length of the variable DATE in the output data set?

  1. numeric, 8 bytes
  2. numeric, 10 bytes
  3. character, 8 bytes
  4. character, 10 bytes
Question 9 Multiple Choice (Single Answer)

A raw data file is listed below: --------10-------20-------30 1901 2 1905 1 1910 6 1925 . 1941 1 The following SAS program is submitted and references the raw data file above: data coins; infile 'file-specification'; input year quantity; run; Which one of the following completes the program and produces a non-missing value for the variable TOTQUANTITY in the last observation of the output data set?

  1. totquantity = sum(totquantity + quantity);
  2. totquantity + quantity;
  3. totquantity 0; sum totquantity;
  4. retain totquantity 0; totquantity = totquantity + quantity;
Question 10 Multiple Choice (Single Answer)

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?

  1. The program executes successfully and a temporary SAS data set is created
  2. The program executes successfully and a permanent SAS data set is created
  3. The program fails execution because the same SAS data set is referenced for both read and write operations
  4. The program fails execution because the SAS data sets on the MERGE statement are in two different libraries
Question 11 Multiple Choice (Single Answer)

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?

  1. amount word ------ 5 DOG
  2. amount word ------ 5 CAT
  3. amount word ------ 7 DOG
  4. amount word ------ 7 ' ' (missing character value)
Question 12 Multiple Choice (Single Answer)

Which one of the following statements is true regarding the name of a SAS array?

  1. It exists only for the duration of the DATA step.
  2. It is saved with the data set.
  3. It can be used in procedures.
  4. It can be the same as the name of a variable in the data set.
Question 13 Multiple Choice (Single Answer)

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?

  1. SALES1, SALES2, SALES3, SALES4
  2. AGENTS1, AGENTS2, AGENTS3, AGENTS4
  3. None, the DATA step fails because the ARRAY statement can reference only numeric data
  4. None
Question 14 Multiple Choice (Single Answer)

On which portion(s) of a SAS data set does the PRINT procedure report?

  1. the data portion only
  2. the descriptor portion only
  3. the descriptor portion and the data portion
  4. neither the data portion nor the descriptor portion
Question 15 Multiple Choice (Single Answer)

The following SAS program is submitted using the raw data file as input: data work.homework; input name $ age height; if age LE 10; cards; John McCloskey 35 71 June Rosesette 10 43 TinekeJones 9 37 ; run; How many observations will the WORK.HOMEWORK data set contain?

  1. No data set is created as the program fails to execute due to errors
  2. 0
  3. 2
  4. 3
Question 16 Multiple Choice (Single Answer)

The following SAS program is submitted: data allobs; set sasdata.origin (firstobs = 75 obs = 499); run; The SAS data set SASDATA.ORIGIN contains 1000 observations. How many observations does the ALLOBS data set contain?

  1. 425
  2. 424
  3. 499
  4. 1000
Question 17 Multiple Choice (Single Answer)

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?

  1. date9.
  2. ddmonyy9.
  3. ddMMMyy9.
  4. ddmmmyyyy9.
Question 18 Multiple Choice (Single Answer)

Which method will be used to change the datawindow query at runtime?

  1. ModifyQuery()
  2. Modify()
  3. Change()
  4. ChangeQuery()
Question 19 Multiple Choice (Single Answer)

Which is not a Datawindow Buffer?

  1. Primary!
  2. Delete!
  3. Original!
  4. Sort!
Question 20 Multiple Choice (Single Answer)

Which will be the best method to handle DB transactions if number of connections are limited?

  1. SetTransObject()
  2. SetTrans()
  3. SetDBTrans()
  4. SetLimitTrans()