• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/25

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

25 Cards in this Set

  • Front
  • Back

SAS Programming Process




First, you establish the ________ for your program. Then you go through the process of writing and submitting the program, checking your results, and making any necessary changes.

business need
Are raw data files created only by SAS?
No

Using SAS, you can read many kinds of data.




T or F?

True
What does a SAS program file contain?
SAS programming code
Are SAS data sets created only by SAS?
Yes
Can a SAS program be saved and reused?
Yes

step boundaries determine ______




Examples (4)

when SAS statements take effect and indicate the end of the current step or the beginning of a new step.




EX: RUN, QUIT, DATA, and PROC statements

Which of the following is a SAS syntax requirement?


a. Begin each statement in column one.


b. Put only one statement on each line.


c. Separate each step with a line space.


d. End each statement with a semicolon.


e. Put a RUN statement after every DATA or PROC step.

d. End each statement with a semicolon.

Although it is recommended to end steps with a RUN statement, it is optional.




T or F



True
_____ steps are typically used to process SAS data sets (that is, generate reports, graphs, and statistics).
PROC
A block comment begins with ______ followed by your comment text, and ends _________
/* COMMENT */

A block comment can be any length, and can contain semicolons.




T or F



T

SAS allows either single or double quotation marks. If you begin with a single quotation mark, you can end with a double quotation mark.




T or F

False
Where do global statements appear?
anywhere in a SAS program

SAS permits your programs to be ____ format
free
A ______ is text in your program that SAS ignores during processing, but writes to the SAS log.
comment

In which portion of a SAS data set are the following found?




1. name of the data set


2. type of the variable Salary


3. creation date of the data set

descriptor portion
the default length of numeric variables is ___ bytes
8

Which INAE statement has the correct syntax?




a. libname reports 'filepath/workshop';


b. libname orion filepath/workshop;


c. libname 3456a 'filepath/workshop';

a
A missing value is displayed as a _______ for numeric variables and as a ______ for character variables

period




blank

Numeric values are stored in floating point notation in bytes of storage, allowing a maximum of _____ digits
16-17 digits.
You use the _____option in the LIBNAME statement to cancel, or disassociate, a libref that you previously assigned.
CLEAR

the observations are the ____ in a data set, and variables are the _______in a data set.

rows




Columns

Which of the following librefs is valid?


a. 2010Car


b. car/2010


c. Car_2012


d. 1_or_a

c. Car_2012
When you specify a one-level data set name, SAS assumes the library is _____ and the data set is _____

work




temporary