Enterprise Integration and SAS Programming Quiz

Quiz covering enterprise application integration concepts, webMethods software, SAS programming, and related technical topics

20 Questions Published

Questions

Question 1 Multiple Choice (Single Answer)

In an Application Engine Program, Maximum number of Actions in a Step

  1. 8
  2. 6
  3. 7
  4. 9
Question 2 Multiple Choice (Single Answer)

Which of the following variable name is valid in SAS?

  1. 2Date
  2. Rate
  3. Item-Cost
  4. None
Question 3 Multiple Choice (Single Answer)

In DATA step,how can you reference a temporary SAS data set named Sales?

  1. Sales
  2. Work.Sales
  3. Items.Sales(after assigning the libref Items)
  4. both a & b above
Question 4 Multiple Choice (Single Answer)

What is the default length of numeric variable?

  1. 6
  2. 7
  3. 8
  4. None
Question 5 Multiple Choice (Single Answer)

What is a SAS Data Library?

  1. Collection of SAS files,such as SAS data sets and catalogs
  2. In some OS, a physical collection of SAS files
  3. In some OS, a logically related collection of SAS files
  4. All of above
Question 6 Multiple Choice (Single Answer)

Which statement prints a summary of all the files stored in the libeary Sales?

  1. Proc Contents data=Sales._all_nods; run;
  2. Proc Contents data=Sales all.nods; run;
  3. Proc datasets; Contents data= Sales._all_nods; quit;
  4. Both a & c
Question 7 Multiple Choice (Single Answer)

Which time span is used to interpret two-digit year values if the YEARCUTOFF= option is set to 1950?

  1. 1950 - 2049
  2. 1950 - 2050
  3. 1949 - 2050
  4. 1950 - 2000
Question 8 Multiple Choice (Single Answer)

Which of the following program contains a syntax error?

  1. Proc Sort data=sasuser.mysales; by city; run;
  2. Dat sasuser.mysales; set mydata.sales99; run;
  3. Proc Print data=sasuser.mysales label; label city='Mumbai'; run;
  4. None of the above
Question 9 Multiple Choice (Single Answer)

What is the result of submitting the following program? data work.group; set company.usa end=last; if last; run;

  1. an error
  2. an empty data set
  3. a continous loop
  4. a data set that contains one observation
Question 10 Multiple Choice (Single Answer)

What is the default value of YEARCUTOFF= system option?

  1. 1920
  2. 1910
  3. 1900
  4. None
Question 11 Multiple Choice (Single Answer)

What is true for the double trailing at sign(@@)?

  1. It enables the next INPUT statement to read from the current e=record across multiple iterations of the DATA step.
  2. It must be the last item that is specified in the INPUT statement
  3. It is released when the input pointer moves past the end of the record
  4. All of the above
Question 12 Multiple Choice (Single Answer)

What is the result of submitting the follwing program? data work.group; set company.usa end=last; if last; run;

  1. an error
  2. an empty datas set
  3. a continous loop
  4. a data set that contains one observation
Question 13 Multiple Choice (Single Answer)

EAI:

  1. Enterprise Applications Integration
  2. Entity Applications Integration
  3. Enterprise Apply Integration
  4. Enterprise Applications Interchange
Question 14 Multiple Choice (Single Answer)

Trading Network is

  1. is a set of rules that have agreed to exchange business documents
  2. is a set of organizations that have agreed to exchange important documents
  3. is a set of organizations that have agreed to exchange business documents
  4. is a set of documents that have agreed to exchange business organizations
Question 15 Multiple Choice (Single Answer)

The components of Trading Networks are

  1. Trading Networks Server
  2. Trading Networks Console
  3. Trading Networks Web Manager
  4. All of the above
Question 16 Multiple Choice (Single Answer)

By default, the webMethods Integration Server has an HTTP listener assigned to which port?

  1. 5000
  2. 5555
  3. 4444
  4. 4555
Question 17 Multiple Choice (Single Answer)

The following are all valid FLOW operations EXCEPT:

  1. SWITCH
  2. EXIT
  3. BRANCH
  4. REPEAT
Question 18 Multiple Choice (Single Answer)

For a REPEAT operation to execute as long as the specified repeat condition remains true, the count parameter needs to be set to: The count parameter needs to be set to

  1. -1
  2. 0
  3. 1
  4. -1/1
Question 19 Multiple Choice (Single Answer)

For a REPEAT operation to execute the code once, the count parameter needs to be set to

  1. -1
  2. 0
  3. 1
  4. 1/-1
Question 20 True/False

Java does not supports multithreaded programming?

  1. True
  2. False