Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


wt is a-z and a--z?

Answers were Sorted based on User's Feedback



wt is a-z and a--z?..

Answer / veerendar alugola

you can see the below example for a-z:

data ptcde;
input ptid $ test1 test2 test3 test4;
cards;
1102 56 65 66 70
1103 55 85 62 77
1104 85 71 59 66
1105 55 100 120 61
1106 90 58 65 63
;
run;

data abc;
set ptcde;
a=mean(of test1-test4);
run;

when you use a-z it will consider only the range variables.


You can find the below example for a--z;

data ptcde;
input ptid $ test1 abc def test4;
cards;
1102 56 65 66 70
1103 55 85 62 77
1104 85 71 59 66
1105 55 100 120 61
1106 90 58 65 63
;
run;

data abc;
set ptcde;
a=mean(of test1--test4);
run;

when you use a--z it will consider all the variables
irrespective of the series.

Is This Answer Correct ?    9 Yes 0 No

wt is a-z and a--z?..

Answer / suneetha

If we consider 'a' as lower limit and 'z' as upper limit,
a-z is used to refer numeric variables and a--z is used to
refer to character variables.

Is This Answer Correct ?    15 Yes 7 No

wt is a-z and a--z?..

Answer / aravind9882

'a-z' means sas considers only alpha characters between a
to z where as 'a--z' means, sas considers a to z watever it
may b in between.

Is This Answer Correct ?    7 Yes 4 No

Post New Answer

More SAS Interview Questions

which domain is better in sas? clinical trails or banking

3 Answers  


Explain the special input delimiters used in sas programming.

0 Answers  


What commands are used in the case of including or excluding any specific variables in the data set?

0 Answers  


what is the function of catx syntax? : Sas-administrator

0 Answers  


What does PROC print, and PROC contents do?

0 Answers  


Name statements that function at both compile and execution time.

7 Answers   Accenture,


Why is SAS considered self-documenting?

1 Answers   Quintiles,


Enlist the syntax rules followed in sas statements.

0 Answers  


What makes sas stand out to be the best over other data analytics tools?

0 Answers  


how many types prompting framework can be broken down to? : Sas-bi

0 Answers  


If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?

0 Answers  


How do you debug macros?

3 Answers   Accenture,


Categories