Enterprise Integration and SAS Programming Quiz
Quiz covering enterprise application integration concepts, webMethods software, SAS programming, and related technical topics
Questions
In an Application Engine Program, Maximum number of Actions in a Step
- 8
- 6
- 7
- 9
Which of the following variable name is valid in SAS?
- 2Date
- Rate
- Item-Cost
- None
In DATA step,how can you reference a temporary SAS data set named Sales?
- Sales
- Work.Sales
- Items.Sales(after assigning the libref Items)
- both a & b above
What is the default length of numeric variable?
- 6
- 7
- 8
- None
What is a SAS Data Library?
- Collection of SAS files,such as SAS data sets and catalogs
- In some OS, a physical collection of SAS files
- In some OS, a logically related collection of SAS files
- All of above
Which statement prints a summary of all the files stored in the libeary Sales?
- Proc Contents data=Sales._all_nods; run;
- Proc Contents data=Sales all.nods; run;
- Proc datasets; Contents data= Sales._all_nods; quit;
- Both a & c
Which time span is used to interpret two-digit year values if the YEARCUTOFF= option is set to 1950?
- 1950 - 2049
- 1950 - 2050
- 1949 - 2050
- 1950 - 2000
Which of the following program contains a syntax error?
- Proc Sort data=sasuser.mysales; by city; run;
- Dat sasuser.mysales; set mydata.sales99; run;
- Proc Print data=sasuser.mysales label; label city='Mumbai'; run;
- None of the above
What is the result of submitting the following program? data work.group; set company.usa end=last; if last; run;
- an error
- an empty data set
- a continous loop
- a data set that contains one observation
What is the default value of YEARCUTOFF= system option?
- 1920
- 1910
- 1900
- None
What is true for the double trailing at sign(@@)?
- It enables the next INPUT statement to read from the current e=record across multiple iterations of the DATA step.
- It must be the last item that is specified in the INPUT statement
- It is released when the input pointer moves past the end of the record
- All of the above
What is the result of submitting the follwing program? data work.group; set company.usa end=last; if last; run;
- an error
- an empty datas set
- a continous loop
- a data set that contains one observation
EAI:
- Enterprise Applications Integration
- Entity Applications Integration
- Enterprise Apply Integration
- Enterprise Applications Interchange
Trading Network is
- is a set of rules that have agreed to exchange business documents
- is a set of organizations that have agreed to exchange important documents
- is a set of organizations that have agreed to exchange business documents
- is a set of documents that have agreed to exchange business organizations
The components of Trading Networks are
- Trading Networks Server
- Trading Networks Console
- Trading Networks Web Manager
- All of the above
By default, the webMethods Integration Server has an HTTP listener assigned to which port?
- 5000
- 5555
- 4444
- 4555
The following are all valid FLOW operations EXCEPT:
- SWITCH
- EXIT
- BRANCH
- REPEAT
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
- 0
- 1
- -1/1
For a REPEAT operation to execute the code once, the count parameter needs to be set to
- -1
- 0
- 1
- 1/-1
Java does not supports multithreaded programming?
- True
- False