Premium

SAS Base Latest Interview Preparation (Q&A)



Question-: What is the non-interactive mode to run the SAS program?

Answer: You write your entire program in a file and save it which include your SAS statements and Data step, proc step etc. and then you submit that file to be executed by operating environment immediately. As soon as this program execution start you can not interact the session in which the program is running. Once the program finishes it generates the logs, errors and output at predefined destinations in operative environment.

Thanks for considering SAS A00-215 Certification Preparation Material from http://hadoopexam.com . You can get access to all the 150+ questions and answer for your real exam preparation from below link. Where you would find the same quality of questions and correct answers with the detailed explanation. Below are most popular SAS Certification preparation material and we are continuously updating and adding more questions.




You can check all the available products across the website and have Annual Pro subscription which includes
- Trainings
- Certification Preparation
- Interview Preparation material
- Interview Preparation Audio and Video Books
- eBooks on various subjects
- Project Implementations
- Anything newly added during your active subscription also you can get.


Please join this google group to get notified whenever new questions are added
JOIN GOOGLE GROUP TO RECEIVE UPDATE NOTIFICATIONS




Question-: What is the major difference between batch mode and interactive mode?

Answer: In case of interactive mode program runs immediately and occupies your current workstation session and you can not work until the program runs. On the other hand, in the batch mode once you submit the program you can start working on the other task in the workstation and operating environment run the program. Similarly, once the program finishes you can look or check the logs in predefined destinations.

The best feature of the batch mode is that batch execution is completely separate from the other activities at your workstation. You can not see the program while it is running, and you can’t make any correction while it is running. If you want to edit the program, edit it and create a new batch and re-submit it. This is the good approach for the large programs as well as the one which takes more time.



Question-: Can you please explain again the Proc step?

Answer: Lets have basic syntax for the PROC step

PROC Data =

Here, both PROC and DATA are the SAS keyword. PROC statement needs a procedure name e.g. PRINT and the Data specifies the dataset on which procedure would be applied. However, “DATA=� is optional, if you don’t provide this it would take most recently generated Dataset in the same session.



Question-: Can you please explain the Data step in more detail?

Answer: The basic purpose of the SAS is to analyze or process the data in some way. However, before processing the data, it should be in a proper format which SAS can understand and it is the responsibility of the DATA step to generate data in the required format from the RAW data. You can see entire flow as below

Here, raw data can be your csv file, text file or any other file, which you wanted to convert into SAS Dataset. Here first 3 block you can consider part of Data step and remaining three are the proc step.

Related Questions


Question-: Can I create fileref for the entire directory which has multiple files in it?

Question-: What is the SAS Library?

Question-: Which SAS statement you can use to create the SAS libref?

Question-: How long libref is effective?

Question-: Which of the proc you can use to check the contents of the SAS Library and what all the information you check with that?

Question-: Using CONTENTS proc, which variable you can use to list all the files in a SAS library?

Question-: What is the use of NODS in the CONTENTS proc?

Question-: How does DATASETS proc is different than CONTENTS proc?