what type of reports you are generating in your company...???
Answers were Sorted based on User's Feedback
Answer / chandu
The above answer doesn't be tasty for the interviewer. Because the HTML is file format. What he/she asking is types of reports. Usually with SAS we can create Listing, summary, custom reports.
| Is This Answer Correct ? | 6 Yes | 0 No |
1.How many ways are there to create variables? 2.What is CLM,how can we use it? 3.what are the advontages of data step? 4.what is the extension of editor window in SAS 9.1.3? 5.How do you copy a particular data set from one library to another? 6.what is the use of double option? 7.Advontages of Proc Report? 8.what is the basic use of where statement? 9.How do you terminate the statments in SAS Programming? 10.What is the difference between symput and symget? 11.How would a identify the local and global variable? can any one answer for the 4'th question
What is a method to debug and test your SAS program?
here is a string like chq.2312244%4452- from that i want only special characters in a column. dont use compress. bcoz i have 1.2 billion of records.i want another process to find the values instant from the data.
data study; input Subj : $3. Group : $1. Dose : $4. Weight : $8. Subgroup; x= input(Weight,5.1); datalines; 001 A Low 220 2 002 A High 90 1 003 B Low 193.6 1 004 B High 165 2 005 A Low 123.4 1 ; Why does X get truncated? X shows up as 22 instead of 220,9 instead of 90 and 19.8 instead of 198? This problem doesnt happen with the values 193.6 and 123.4. This does not happen if x is read on the 5. informat instead of the 5.1 informat
Mention the category in which sas informats are placed?
Explain the purpose of substr functions in sas programming.
What are symbol tables?Differemce between Local N Global Symbol tables.....
What would be the value of month at the end of data step execution and how many observations would be there?
which date function advances a date, time or datetime value by a given interval? : Sas programming
How would you delete observations with duplicate keys?
I have 2 data sets A & B. Both have a variable called Age in them, each of them specifying a different functionality. In my program I use bot these data sets. How do I specify which Age variable I want to use?
. Which date advances a date, time or date/time value by a given interval?