Approximately what date is represented by SAS date value of
730

Answers were Sorted based on User's Feedback



Approximately what date is represented by SAS date value of 730..

Answer / mu mu

12/31/1961
data a;x=730;;proc print data=a; format x mmddyy10.;run;

Is This Answer Correct ?    29 Yes 2 No

Approximately what date is represented by SAS date value of 730..

Answer / sravan

data a;
x=730;
format x date9.;
run;

proc print data=a;run;

we get 31Dec1961

Is This Answer Correct ?    15 Yes 2 No

Approximately what date is represented by SAS date value of 730..

Answer / sheetal

In SAS Dates stored in numeric format, it starts from 1st
Jan 1960, and 1st jan 1960 consider as day # 0. So even
though 1960 was a leap year #days are 365 for year 1961 and
365 for 1961. Which means 365+365=730 nothing but last day
of 1961 - 31st Dec 1961.

Is This Answer Correct ?    8 Yes 2 No

Approximately what date is represented by SAS date value of 730..

Answer / shiri

it will jan 1st 1962

Is This Answer Correct ?    4 Yes 0 No

Approximately what date is represented by SAS date value of 730..

Answer / ravid

it may be dec 31 1961 or jan 1 of 1962

Is This Answer Correct ?    7 Yes 4 No

Approximately what date is represented by SAS date value of 730..

Answer / sriraghubabu

31dec1961


data a;
x=730;
proc print data=a;
format x date9.;
run;

Is This Answer Correct ?    2 Yes 0 No

Approximately what date is represented by SAS date value of 730..

Answer / pnprasad

In SAS Dates stored in numeric format, it starts from 1st
Jan 1960, so 730 means Jan 1962.

Is This Answer Correct ?    2 Yes 7 No

Approximately what date is represented by SAS date value of 730..

Answer / saritha

it may be 29 dec 1961

Is This Answer Correct ?    0 Yes 10 No

Approximately what date is represented by SAS date value of 730..

Answer / nari

10jan1962 it will store and the format is date9.

Is This Answer Correct ?    2 Yes 19 No

Post New Answer

More SAS Interview Questions

How do handle working under pressure?

1 Answers   Oracle, Wipro,


what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming

0 Answers  


What does the trace option do?

0 Answers  


what is fact table and factless table?

1 Answers  


explain the key concept of sas? : Sas-administrator

0 Answers  






what is SAS/Access and SAS/Connect?what are the uses?

3 Answers  


explain about various caches available in data integrator? : Sas-di

0 Answers  


what is the usage for assigning error=1 in a dataset ?

2 Answers   Satyam,


You need to perform an analysis on a massive dataset by groups, but are unable to sort the data due to memory constraint. How would you accomplish the task?

2 Answers  


where to use sas business intelligence? : Sas-bi

0 Answers  


i want for interview question & answer plz it need immediate send t my mail raviprakashmot@gmal.cm

0 Answers   SAS,


How substr function works in sas?

0 Answers  


Categories