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...


What is the purpose of the trailing @? The @@? How would you
use them?

Answers were Sorted based on User's Feedback



What is the purpose of the trailing @? The @@? How would you use them?..

Answer / imran syed

@@ is used when we have multiple observations per line of
raw data. It is used at the end of the INPUT statement. It
tells SAS to hold that line of data and continue to read
observations until it either runs out of data or reaches an
INPUT statement that does not end with a double trailing @.
When we use @ only without specifying n, SAS will hold that
line of data until it reaches either the end of the DATA
step or an INPUT statement that does not end with a trailing @.

Both are line-hold specifiers; the difference is how long
they hold a line of data for input. The trailing @ holds a
line of data for subsequent INPUT statements, but releases
that line of data when SAS returns to the top of the DATA
step to begin building the next observation. The double
trailing @ holds a line of data for subsequent INPUT
statements even when SAS starts building a new observation.
In both cases, the line of data is released if SAS reaches a
subsequent INPUT statement that does not contain a line-hold
specifier.

Is This Answer Correct ?    59 Yes 3 No

What is the purpose of the trailing @? The @@? How would you use them?..

Answer / giri

both @AND @@ TAILARING used for the hold the
datalines,difference is how long they hold the data in the
complilation process,@ hold the the data till the end of
the line,but it release the dataline when it reach the end
of the line, but @@ holds the datalines untill the end of
the process

Is This Answer Correct ?    31 Yes 9 No

What is the purpose of the trailing @? The @@? How would you use them?..

Answer / srinu

both @AND @@ TAILARING used for the hold the
datalines,difference is how long they hold the data in the
complilation process,@ hold the the data till the end of
the line,but it release the dataline when it reach the end
of the line, but @@ holds the datalines untill the end of
the process

Is This Answer Correct ?    11 Yes 2 No

What is the purpose of the trailing @? The @@? How would you use them?..

Answer / no name is require

@-is used to reading part of a rawdata file we using traling @
@@-is used to reading multiple observations of rawdata

Is This Answer Correct ?    8 Yes 4 No

What is the purpose of the trailing @? The @@? How would you use them?..

Answer / vikas pherwani

@ is a column pointer holds the input record for the
execution of the next input statement

@@ if we have two relevant obs in same line we need to hold
that too we need double trailing either after taking first
value sas move to another line leaving the first.

Is This Answer Correct ?    3 Yes 0 No

What is the purpose of the trailing @? The @@? How would you use them?..

Answer / sumalatha.ch

@it holds the record at the end of the input statement or
when the next input will come it will read the data. and
@ is also pointer controll .if we want to read particular
character in a data set then we can use this @

@@ it is used for reading single line multiple
observations.

Is This Answer Correct ?    5 Yes 3 No

What is the purpose of the trailing @? The @@? How would you use them?..

Answer / sunil

The trailing at sign (@) holds the input record for the
execution of the next INPUT statement.

The double trailing at sign (@@) holds the input record for
the execution of the next INPUT statement, even across
iterations of the DATA step.

Is This Answer Correct ?    4 Yes 3 No

What is the purpose of the trailing @? The @@? How would you use them?..

Answer / raj

@:Hold an input record for the execution of the next input statement with in the same iteration of the data step.
use:The trailing @ must be the last item in the INPUT statement.
@@:Holds an input record for the execution of the next input statement across iteration of the data step.
Uses:The double trailing @ must be the last item in the INPUT statement.

Is This Answer Correct ?    2 Yes 2 No

What is the purpose of the trailing @? The @@? How would you use them?..

Answer / chiranjeevi

These are those which works on the variable level by
default.It should appear and besides the variables in
sas.The columnpointers are
1)@
2)@@
@:the '@'is a column pointer which commands SAS to hold the
line strongly.The '@' is if it used,it is trailing of '@'
pointer.It reads only the first line across the available
variables data.

@@:It is used for the entire data from the external source
or internal by reading into a single variable.

Is This Answer Correct ?    2 Yes 6 No

What is the purpose of the trailing @? The @@? How would you use them?..

Answer / santhi swaroop

@ is the pointer input that will hold the point at a
specific point variables inthe data

@@ is the on that may be useful to read the singleline of
raw data into multiple observations of the sas data set.

syn

data santhi;
infile path;
input var 1 2 3 4 @@;
run;

Is This Answer Correct ?    4 Yes 12 No

Post New Answer

More SAS Interview Questions

Hi I have list of products in a dataset, which are classified by other name for eg:- there is a product A> Malambo Shiraz Malbec 750ML(0388) which is a Red wine.Now i need to generate a report where it shows if this product appears then it should b displayed as red wine,similarly for other products and other classification. I dont wan use proc format.

4 Answers   Symphony,


Explain append procedure?

0 Answers  


what has been your most common programming mistake? : Sas programming

0 Answers  


what is operational data and operational system? : Sas-di

0 Answers  


What is the purpose of _error_?

1 Answers   Quintiles,


how can you sort the dataset having millions of OBS(instead of sort procedure?

4 Answers   EXL,


how does sas handle missing values in an update? : Sas programming

1 Answers  


Explain the use of proc gplot? : sas-grid-administration

0 Answers  


What Proc glm does?

0 Answers  


How to display duplicate observations in data?

1 Answers  


sas implimented companies in hyderabad

11 Answers   CTS, HSBC,


What is a pdv and what are its functions?

0 Answers  


Categories