Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How do you debug and test your SAS programs?
What can you learn from the SAS log when debugging?
How do you test for missing values?
How would you create multiple observations from a single
observation?
What are some good SAS programming practices for processing
very large data sets?
Briefly describe 5 ways to do a "table lookup" in SAS.
Why is SAS considered self-documenting?
Are you sensitive to code walk-throughs, peer review, or QC
review?
What other SAS features do you use for error trapping and
data validation?
How does SAS handle missing values in: assignment
statements, functions, a merge, an update, sort order,
formats, PROCs?

Answers were Sorted based on User's Feedback



How do you debug and test your SAS programs? What can you learn from the SAS log when debugging? ..

Answer / admin

http://sas-4-u.com/4um/index.php?topic=63.0;

When you check for ordinary missing numeric values, you can use code that is similar to the following:
if numvar=. then do;

If your data contains special missing values, you can check for either an ordinary or special missing value with a statement that is similar to the following:
if numvar<=.z then do;

To check for a missing character value, you can use a statement that is similar to the following:
if charvar=' ' then do;

The MISSING function enables you to check for either a character or numeric missing value, as in:
if missing(var) then do;

Is This Answer Correct ?    3 Yes 1 No

How do you debug and test your SAS programs? What can you learn from the SAS log when debugging? ..

Answer / vijaibhaskar

1. put statement and debug option is used for debug and
test the programs.
2.NMISS OPTION is used for missing values
3.line pointer is used for multiple lines per observation
@@ is used for multiple observations per line
4. ARRAYS IS USED FOR PROCESSING FOR LARGE DATA SET
5. WHEN DATA SET IS CREATED SAS CREATE DISCRIPTOR PORTION
AND DATA PORTION .THAT MEANS SAS STORES THE INFOMATION LIKE
VARIABLE NAME ,LENGTH,TYPE etc.
6.variable+expression.
sum function
u write renames of the variables in first data set if
same variable names are exit in second data set
missing values in transction data set does nt over write
the master data set in update statement.
NMISS OPTION

Is This Answer Correct ?    3 Yes 2 No

Post New Answer

More SAS Interview Questions

If a variable contains letters or special characters, can it be numeric data type?

0 Answers  


What is the difference between INPUT and INFILE ?

0 Answers  


What are the scrubbing procedures in sas?

0 Answers  


what is treatment emergent events and treatment emregent adverse event

0 Answers  


One way of creating a new variable in Macros is by % Let....What is the other way..?

5 Answers   TCS,


How would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable?

1 Answers   Quintiles,


How do handle working under pressure?

1 Answers   Oracle, Wipro,


Can you explain the process of calendar?

0 Answers  


Describe the ways in which you can create macro variables?

0 Answers  


describe the interaction table in sas di? : Sas-di

0 Answers  


what are input dataset and output dataset options?

6 Answers   HCL,


What areas of SAS are you most interested in?

0 Answers   Quintiles,


Categories