Practice for the SAS advance certification exam
The descriptor portion is stored on whatever page has enough room for it.
New observations are always added in the first sufficient available space.
Deleted observation space is tracked.
New observations are always added at the end of the data set.
Rate this question:
SAS data views use less disk space but more CPU resources than SAS data files.
SAS data views can be created only in permanent SAS data libraries.
SAS data views use less CPU resources but more disk space than SAS data files.
SAS data views can be created only in temporary SAS data libraries.
Rate this question:
data temp; infile file1; input x 4. y 3. z 2.; run;
data temp; format x 4. y 3. z 2.; infile file1; input x 4. y 3. z 2.; run;
data temp; length x 4 y 3 z 2; infile file1; input x 4. y 3. z 2.; run;
data temp; informat x 4. y 3. z 2.; infile file1; input x 4. y 3. z 2.; run;
Rate this question:
proc contents data=company.regular; compare data=company.reduced; run;
proc compare base=company.regular compare=company.reduced; run;
proc print data=company.regular; run; proc print data=company.reduced; run;
proc datasets library=company; contents data=regular compare=reduced; run;
Rate this question:
Quiz Review Timeline (Updated): Mar 16, 2022 +
Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.
SAS QUIZ(100% NEW AND REAL TIME QUESTIONS)
This SAS quiz features real-time questions assessing skills in data handling, debugging, and SQL operations within SAS. It is designed for learners seeking to test and enhance...
Questions:
20 |
Attempts:
484 |
Last updated:
Mar 20, 2023
|
SAS Chapter 22: Using Best Practices
In our ongoing SAS quiz series, we turn our attention to the different practices and which is the best to use in a given situation. What do you know about IF statements, PROC...
Questions:
5 |
Attempts:
106 |
Last updated:
Dec 06, 2023
|
SAS Chapter 12: Storing Macro Programs
This SAS Chapter 12 quiz focuses on storing macro programs. It tests knowledge on %INCLUDE statements, storing macros in SAS catalogs, using the Stored Compiled Macro Facility,...
Questions:
10 |
Attempts:
330 |
Last updated:
Mar 15, 2023
|
SAS Chapter 11: Creating And Using Macro Programs
This quiz assesses knowledge in SAS Macro Programming, focusing on macro creation, parameter handling, and conditional statements. It tests the ability to define, reference, and...
Questions:
10 |
Attempts:
1202 |
Last updated:
Aug 21, 2023
|
SAS Chapter 10: Processing Macro Variables At Execution Time
This quiz, titled 'SAS Chapter 10: Processing Macro Variables at Execution Time,' tests knowledge on macro variable processing in SAS. It covers creating, assigning, and...
Questions:
10 |
Attempts:
355 |
Last updated:
Mar 17, 2023
|
SAS Chapter 9: Introducing Macro Variables
This SAS Chapter 9 quiz focuses on macro variables, testing understanding through questions on their creation, manipulation, and error handling. It's designed to enhance...
Questions:
10 |
Attempts:
724 |
Last updated:
Jan 30, 2024
|
Wait!
Here's an interesting quiz for you.