i want for interview question & answer plz it need immediate send t my mail raviprakashmot@gmal.cm
SAS,
1315/* To determine the maximum and minimum of V1 */ data before3; input v1 v2 v3; cards; 3 2 1 4 6 5 2 1 3 6 5 4 1 3 2 5 4 6 ; run;
5 4458please can you tell me that in companies sas work are doing by through sas coding or sas wizard ??
1218In the following DATA step, what is needed for ‘fraction’ to print to the log? data _null_; x=1/3; if x=.3333 then put ‘fraction’; run;
1 5398How you are maintaining sas programmes in your company...any specific version control software you are using? If so, tell me the name?
1115
what is metadata? : Sas-bi
What is your favorite all time computer book? Why?
how would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable? : Sas programming
What does P-value signify about the statistical data?
What does the trace option do?
what is the difference between floor and ceil functions in sas? : Sas-administrator
what is treatment emergent events and treatment emregent adverse event
What is PDV?
What are the statements in proc sql?
explain about sas business intelligence? : Sas-bi
data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.
explain the function of substr in sas? : Sas-administrator
where are dashboard components are created and maintained? : Sas-bi
how many display types available in sas bi dashboard? : Sas-bi
Which statement does not perform automatic conversions in comparisons?