SAS Clinical Interview Questions and Answers

SAS Clinical Interview Questions and Answers

Last updated on 21st Oct 2020, Blog, Interview Question

About author

Ramanan ( (Sr Project Manager ) )

High level Domain Expert in TOP MNCs with 8+ Years of Experience. Also, Handled Around 20+ Projects and Shared his Knowledge by Writing these Blogs for us.

(5.0) | 11547 Ratings 2253

These SAS Interview Questions have been designed specially to get you acquainted with the nature of questions you may encounter during your interview for the subject of SAS.

As per my experience good interviewers hardly plan to ask any particular question during your interview, normally questions start with some basic concept of the subject and later they continue based on further discussion and what you answer.

We are going to cover top 100 SAS Interview questions along with their detailed answers.

We will be covering SAS scenario based interview questions, SAS interview questions for freshers as well as SAS interview questions and answers for experienced. 

1. What is SAS?  What are the functions does it performs?

Ans:

  • SAS means Statistical Analysis System, which is an integrated set of software products.
  • Information retrieval and data management Writing reports and graphics
  • Statistical analytics, econometrics and data miningBusiness planning, forecasting, and decision support Operation research and Project management
  • Quality Improvement
  • Data Warehousing
  • Application Development

2. What is the basic structure of the SAS base program?

Ans:

The basic structure of SAS consist of==DATA step, which recovers & manipulates data.==PROC step, which interprets the data.

3. What is the basic syntax style in SAS?

Ans:

To run the program successfully, and you have the following basic elements:

There should be a semi-colon at the end of every line A data statement that defines your data set Input statement There should be at least one space between each word or statement A run statement .

For example: In file

  • ‘H: \StatHW\yourfilename.dat’;

4. Explain data step in SAS

Ans:

  1. 1. The Data step creates a SAS dataset which carries the data along with a “data dictionary.”
  2. 2. The data dictionary holds information about the variables and their properties.

5. What is PDV?

Ans:

  • The logical area in the memory is represented by PDV or Program Data Vector.
  • At the time, SAS creates a database of one observation at a time.
  • An input buffer is created at the time of compilation which holds a record from an external file.
  • The PDV is created following the input buffer creation.

6. What are the data types does SAS contain?

Ans:

The data types in SAS are Numeric and Character.

7. Which statement does not perform automatic conversions in comparisons?

Ans:

In SAS, the “where” statement does not perform automatic conversions in comparisons.

8. What is a method to debug and test your SAS program?

Ans:

You can debug and test your SAS program by using Obs=0 and systems options to trace the program execution in log

Subscribe For Free Demo

Error: Contact form not found.

9. What is the difference between nodupkey and nodup options?

Ans:

The difference between the NODUP and NODUPKEY is that NODUP compares all the variables in our dataset while NODUPKEY compares just the BY variables

10. Name validation tools used in SAS

Ans:

For DataSet : Data set name/ debug Data set: Name/stmtchk

For SAS Macros variables: Options: mprint mlogic symbolgen

11. What does PROC print, and PROC contents do?

Ans:

  1. 1. To display the contents of the SAS dataset PROC print is used and also to assure that the data were read into SAS correctly.
  2. 2. While PROC CONTENTS display information about a SAS dataset.

12. What is the use of function Proc summary?

Ans:

The syntax of proc summary is the same as that of proc means.

It computes descriptive statistics on numeric variables in the SAS dataset.

13. What Proc glm does?

Ans:

Proc glm performs simple and multiple regression, analysis of variance (ANOVAL), analysis of covariance, multivariate analysis of variance and repeated measure analysis of variance.

14. What is SAS informats?

Ans:

SAS INFORMATS are used to read, or input data from external files known as Flat Files ASCII files, text files or sequential files).

The informat will tell SAS on how to read data into SAS variables.

15. Name types of category in which SAS Informats are placed

Ans:

SAS informats are placed in three categories,

  1. 1. Character Informats : $INFORMATw
  2. 2. Numeric Informats : INFORMAT w.d
  3. 3. Date/Time Informats : INFORMAT w.

16. What function CATX syntax does?

Ans:

CATX syntax concatenates character strings remove trailing and leading blanks and inserts separators.

17. What is the use of PROC gplot?

Ans:

PROC gplot has more options and can create more colorful and fancier graphics.

18. What is PROC in SAS?

Ans:

In SAS, PROC steps analyze and process data in the form of an SAS data set.

It controls a library of routines that perform tasks on SAS data set options such as sorting, summarizing and listing.

19. What is the SAS data set?

Ans:

A SAS data set is a file consisting of two parts.

  1. 1. A descriptor portion
  2. 2. A data portion

20. List out some key concept of SAS

Ans:

Some key concept of SAS include ,SORT procedure Missing values KEEP=, DROP= dataset options Data step logic Reset to missing, or the RETAIN statement Log FORMAT procedure for creating value formats Data typesIN= dataset option.

21. What is the difference between INPUT and INFILE ?

Ans:

INFILE statement is used to identify an external file

INPUT statement is used to describe your variables

22. State the difference between INFORMAT and FORMAT ?

Ans:

  • INFORMAT: To indicate SAS that a number should be read in a particular format
  • FORMAT: To indicate SAS how to print the variables

23. What is factor analysis?

Ans:

Factor analysis is a common term used for a family of statistical techniques associated with the reduction of a set of observable variables in terms of a small number of latent factors. 

The main goal of factor analysis is data reduction and summarization.

24. How you can read the variables that you need?

Ans:

You read the variables using input statement with column /line pointers, informats and length specifiers.

25. What are the special input delimiters used in SAS?

Ans:

Special input delimiters used in SAS are DLM and DSD.

26. How SAS treats the DSD delimiters?

Ans:

When you define DSD, SAS treats two consecutive delimiters as a missing value and removes quotation marks from character values.

Course Curriculum

Get Accredited Pega Certification Course By Experts Training

  • Instructor-led Sessions
  • Real-life Case Studies
  • Assignments
Explore Curriculum
Course Curriculum

Best SAS Clinical Certification Course to Boost UP Your Skills

Weekday / Weekend BatchesSee Batch Details

27. What is the good SAS programming practices for processing large data sets?

Ans:

The good SAS programming practices for processing large data sets is to sort them once using firstobs= and obs=.

28. How to include or exclude specific variables in a data set?

Ans:

To include or exclude specific variables in a data set you can use DROP, KEEP Statements and Data set Options.

29. How SUBSTR function works in SAS?

Ans:

The SUBSTR function is used to abstract substring from a character variable.

30. What SAS features do you use to check errors and data validation?

Ans:

To check errors, use the Log, and for data validation use things like Proc Freq, Proc Means or sometimes Proc print to see how data looks.

31. What are the ways to do a “table lookup” in SAS?

Ans:

There are five  ways to do a “table lookup” in SAS which include:

  1. 1. PROC SQL
  2. 2. Match Merging
  3. 3. Direct Access
  4. 4. Format Tables
  5. 5. Arrays

32. How will you generate test data with no input data?

Ans:

You will generate test data with no input data using “put” statement and “Data Null”.

33. What are the difference between CEIL and FLOOR functions in SAS?

Ans:

The “floor” returns the greatest integer less than/equal to the argument.

Whereas the “ceil” function returns the smallest integer greater than/equal to the argument.

34. What are the difference between SAS functions and procedures?

Ans:

The difference between SAS functions and procedures is that Procedures expect one variable value per observation Functions expect values to be supplied across an observation

35. How to remove duplicates using PROC SQL?

Ans:

To remove duplicates using PROC SQL use following step,

  • Proc SQL noprint;
  • Create Table inter.merged1 as
  • Select distinct * from inter.readin ;
  • Quit;

36. What are common programming errors committed in SAS

Ans:

Common programming errors committed in SAS are,

  • Missing semicolon
  • Not checking log after submitting program
  • Not using debugging techniques
  • Not using Fsview option vigorously

37. How to limit decimal places for the variable using PROC MEANS?

Ans:

By using MAXDEC=option, you can limit decimal places for the variable

38. What are the difference between the SAS DATA STEP and SAS PROCs?

Ans:

SAS DATA STEP is used to read in and manipulate data

SAS PROCs are sub-routines perform tasks on SAS data set.

39. What is the use of STOP statement?

Ans:

A STOP statement is used to control the continuous looping in SET statement.

40. What is RUN-Group processing?

Ans:

RUN-Group processing allows submitting a PROC step using RUN statement without ending the procedure.

41. How to test the debugging in SAS?

Ans:

For debugging in SAS use the Debug clause after ‘/’ in the data statement.

42. How to create a permanent SAS data set?

Ans:

In order to create a permanent SAS data set, there are two steps necessary,

  1. 1. Assign a library and engine
  2. 2. Create the data

Make sure to assign both a library (other than WORK) and data set name to make the data set permanent.

43. What is SLIBREF?

Ans:

SLIBREF is a server-libref. 

It specifies the libref that is used by the server to identify the SAS data library when no physical name is determined, and the server libref is different from the client libref.

44. What are the default statistics that PROC MEANS produce?

Ans:

The default statistics that PROC MEANS produce are,

  • N
  • MN
  • MAX
  • MEAN
  • STD DEV

45. What is the command used to find missing values?

Ans:

The command used to find missing values is

  • missing_values=MISSING(field1,field2,field3);

46. What is the difference between Match Merge and One to One Merge?

Ans:

A one-to-one merge is suitable if both data sets in the merge statement are sorted by id, and each observation in one data set has a corresponding observation in the other data set.  If the observations do not match, then match merging is suitable.

47. What are the scrubbing procedures in SAS?

Ans:

The scrubbing procedures in SAS are Proc Sort with nodupkey option.  It will eliminate duplicate values.

48. What is the use of the %include statement?

Ans:

%INCLUDE statement reads an entire file into the current SAS program you are running and submits that file to the SAS System immediately.

49. How can SAS program can be validated?

Ans:

By writing OPTIONS OBS=0 at the starting of the code and if execution of code is On PC SAS than log will be detected itself by highlighted colors.

These are the two ways for validating an SAS program.

50. Explain SUBSTR function?

Ans:

SUBSTR function is used for extracting a string or replacing contents of character value.

51. Explain PROC SORT?

Ans:

PROC SORT sorts SAS data set by variables so that a new data set can be prepared for further use.

52. Explain PROC UNIVARIATE?

Ans:

PROC UNIVARIATE is used for elementary numeric analysis and will examine how data is distributed.

53. What do you mean by CALL PRXFREE Routine?

Ans:

CALL PRXFREE routine is used for Character String Matching and is used for allocation of free memory for perl regular expression.

54. Explain APPEND procedure?

Ans:

APPEND means adding at the end so in terms of SAS we can say adding one sas data set to another sas data set.

Course Curriculum

Best SAS Clinical Certification Course to Boost UP Your Skills

Weekday / Weekend BatchesSee Batch Details

55. Explain BMDP procedure?

Ans:

For analyzing data BMPD procedure is used.

56. Define RUN-Group processing?

Ans:

RUN-Group processing is used to submit a PROC step using RUN statement without ending the procedure.

57. Explain BY-Group processing?

Ans:

BY statement is used by BY-Group processing so that it can process data which are indexed, grouped or ordered based on the variables.

58. What will CALENDAR procedure do?

Ans:

CALENDAR procedure will show data in a monthly calendar format from SAS data set.

59. What are the functions which are used for Character handling functions?

Ans:

UPCASE and LOWCASE are the functions which are used for character handling functions.

60. What is the use of DIVIDE function?

Ans:

DIVIDE function is used to return the division result.

61. Explain TRANSLATE function?

Ans:

TRANSLATE function: Characters which are specified in a string are replaced by the characters specified by us.

62. Explain BOR function?

Ans:

It is a bitwise logical operation and is used to return bitwise logical OR between two statements.

63. Explain CALL PRXCHANGE routine?

Ans:

It is used for performing replacement of pattern matching.

64. Explain ANYDIGIT function?

Ans:

It is used for searching a character string and as soon as string is found it will return it.

65. What do you understand by CALL MISSING routine?

Ans:

The character or numeric variables which are specified will be assigned missing values through CALL MISSING routine.

66. What do you mean by ALTER data set option?

Ans:

It is used for assigning an ALTER password which will stop the users from changing the file.

67. Explain COMPRESS data set option?

Ans:

It is used for compressing the data into new output.

68. Define Formats?

Ans:

Instruction used by SAS for writing data values is known as Formats.

69. How variable formats are handled by PROC COMPARE?

Ans:

Variable formats are handled by PROC COMPARE as PROC COMPARE is used for comparing unformatted values.

70. What are the features of SAS system?

Ans:

It provides Ipv6 support, new true type fonts, extended time notations, restart mode, universal printing, checkpoint mode and ISO 8601 support.

71. What is the use of $BASE64X?

Ans:

By using base 64 encoding, character data is converted into ASCII text.

72. Explain VFORMATX Function?

Ans:

It is used to return the format which is assigned with the value of the given Statement.

73. Define STD function?

Ans:

Standard deviation will be returned for nonmissing statements.

74. What is Debugging?

Ans:

Debugging is the technique for testing the program logic and this can be done with the help of debugger.

75. Explain FILECLOSE data set option?

Ans:

When data set is closed, its tape positioning is defined by FILECLOSE.

76. What does ODS stands for?

Ans:

ODS stands for output delivery system.

77. What does CDISC stands for?

Ans:

CDISC stands for Clinical Data Interchange Standards Consortium.

78. Which method is used to copy blocks of data?

Ans:

The method which is used to copy blocks of data is defined as block I/O method.

79. What is the procedure for copying an entire library?

Ans:

Copy statement should be followed by an input data library and an output data library.

Advanced SAS Sample Resumes! Download & Edit, Get Noticed by Top Employers! Download

80. Define MAX () function?

Ans:

Max () function is used to return the largest value.

81. What is the use of sysrc function?

Ans:

It is a function which provides a system error number.

82. Explain what is SAS? What are the functions does it performs?

Ans:

SAS i.e. Statistical Analysis System is a combined set of software solutions which helps user to analyze data.

It can change, manipulate, analyze & retrieve data. Numerical analysis can be done. Report writings. Quality can be improved.

83. Explain what is the basic structure of SAS programing?

Ans:

SAS programs consists of: DATA step, which recovers & manipulates data. PROC step, which interpret the data.

84. Explain what is Data Step?

Ans:

The main function of Data step is to create SAS data sets by manipulating data.

85. Explain what does PROC print, and PROC contents are used for?

Ans:

PROC print outputs a listing of the values of some or all of the variables in a SAS data set.

PROC contents tells the structure of the data set rather than the data values.

86. Explain what Procglm does?

Ans:

The functions of Procglm are covariance analysis, variance analysis, multivariate and repeated analysis of variance.

87. How to sort in descending order?

Ans:

By using DESCENDING keyword in PROC SORT code, we can sort in descending order.

88. What do the put and input function do?

Ans:

  1. 1. Input Function: Character values are converted into numeric values.
  2. 2. Put function: Numeric values are converted into character values.

89. What’s the difference between VAR B1 – B3 and VAR B1 — B3?

Ans:

  • Single Dash specifies consecutively numbered variables.
  • Double Dash specifies variables available within that data set. For example:

Data Set: ID NAME B1 B2 C1 B3Then, B1 – B3 would return B1 B2 B3

And B1 – B3 would return B1 B2 C1 B3.

90. What are the special input delimiters?

Ans:

The input delimiters are DLM and DSD.

91. What is the difference between a format and an informat?

Ans:

Format: A format is to write data i.e. WORDIATE18 and WEEKDATEW.

Informat: An informat is to read data i.e. comma, dollar and date (MMDDYYw, DATEw, TIMEw, PERCENTw).

92. Describe any one SAS function?

Ans:

RIM: removes trailing blanks from a character expression

Are you looking training with Right Jobs?

Contact Us

Popular Courses