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

I have a SCD Type 2 Dimention for Location In which A Sales Office in Having two Surrogate Keys just because of the change in it's Sales Group. SKey SalesGroup Sales Office BeginDate EndDate 280 SG1 SO1 01APR2000 01APR2010 281 SG2 SO1 02APR2010 31MAR2999 Now while loading the Fact, the Lookup ir returning SKey 280 for records before and after 01APR2010. I am not able to give WHERE condition in the Lookup Properties (TranDate between BeginDate and EndDate). Please help.

0 Answers  


How necessary is it to be creative in your work?

0 Answers   Oracle,


Explain the message ‘MERGE HAS ONE OR MORE DATASETS WITH REPEATS OF BY VARIABLE’.

2 Answers  


What are the statements in proc sql?

0 Answers  


what is the use of catalog?

1 Answers   Cognizant,






where to use sas business intelligence? : Sas-bi

0 Answers  


How long can a macro variable be? A token? : sas-macro

0 Answers  


what are some problems you might encounter in processing missing values? In data steps? Arithmetic? Comparisons? Functions? Classifying data? : Sas programming

0 Answers  


Mention few capabilities of sas framework.

0 Answers  


What is Linear Regression?

0 Answers  


proc means? proc sort? proc append? proc freq? proc print? proc content?

4 Answers   Oracle,


What do the put and input function do?

0 Answers  


Categories