raghu


{ City } banglore
< Country > india
* Profession * student
User No # 48160
Total Questions Posted # 0
Total Answers Posted # 4

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 36
Users Marked my Answers as Wrong # 4
Questions / { raghu }
Questions Answers Category Views Company eMail




Answers / { raghu }

Question { 4977 }

what are all the default values getting in PROC MEANS...???


Answer

N MIN MAX MEAN STD

Is This Answer Correct ?    8 Yes 0 No

Question { GSK GlaxoSmithKline, 5224 }

What type of tables you are using in YOUR reporting..???


Answer

that depends on the clients requirements the reporting
tables will be generated

Is This Answer Correct ?    7 Yes 1 No


Question { 5238 }

What happens in the following code, if u type 8 instead of
*?
proc sql noprint;
create table abc as
select 8 from lib.abc;
quit;


Answer

it will just print '8' many times in output window

Is This Answer Correct ?    6 Yes 0 No

Question { 5381 }

You need to create an In List that it is to be later used in
a Where Clause that includes all the Regions that begin with
the letter A from the sashelp.shoes table. Using PROC SQL
with an into clause create the following string from the
sashelp.shoes table using the variable region
“AFRICA”,”ASIA”,…..


Answer

here is the code for your question.
proc sql;
select *
from sashelp.shoes
where Region like 'A%';
quit;
it will list out all letters starting with 'A'in region variable.

Is This Answer Correct ?    15 Yes 3 No