Question 41: Which SAS statement correctly uses formatted input to read the values
in this order: Item (first field), UnitCost (second field), Quantity (third field)?
- input @1 Item $9. +1 UnitCost comma6.
@18 Quantity 3.;
2.Get all Questions and Answer from here
3.You need to have paid subscription to access all questions
4.Thanks for considering SAS Certification Material
Ans : 4
Exp : The default location of the column pointer control is column 1, so a column pointer control is optional for reading the first field. You can use the @n or +n pointer controls to specify the beginning column of the other fields.
You can access to full explanation to question and answer from this page.