Classic Classic Quiz Creating a single observation from multiple records by Tomowsiak Tomowsiak 45 played - 12 yrs ago Chpater 20 from the book QUIZ 8 QUESTIONS hard 1 You can position the input pointer on a specific record by using. . Column pointer controlsColumn specificationsLine pointer controlsLine hold specifiers 2 Which pointer type is used to read multiple records sequentially? @n+n/All of the above 3 Which can be used to read records non sequentially? @n#n+n/ 4 Imagine a name on one line, address below it and then csz below it. . and so on for all the records in the file. . which will turn multiple lines into one record inside sas? Input fname $ lname $ / address $20. / city $ state $ zip $;Input fname $ lname $ /; address $20. /; city $ state $ zip $;Input / fname $ lname $ / address $ 20. city $ state $ zip $;Input / fname $ lname $ ; /address $20. ; city $ state $ zip $; 5 Which line can read a file from the fourth record of a file and then return to the first record of the file? Input #4 id $5. #1 fname $ lname $;Input #4 id $ 1-5 #1 fname $ lname $;Input #4 id $ #1 fname $ lname $;All of the above 6 How many records will be read everytime this code executes? input #1 item $ color $ #3 @8price comma6. #2 fabric $ #3 sku $ 1-6; 1234 7 If this is the third line of a dataset, which reads it correctly as the first thing? chapel hill north carolina 27713 Input #3 city $ state $ zip $;Input #3 city & $11. state & $14. zip $;Input #3 city $11. +2 state $2. + 2 zip $5.All of the above 8 Which program wouldn't read the values in the first record as "item" and the values in the second record as two variables named "inventory" and "type" Input item & $16. / inventory 2. type $8. ;Input item & $16. (/ inventory 2. type $8. ;) this part on a separate lineInput #1 item &16. inventory 2. type $8. ;Input item & $16. #2 inventory 2. type $8. ;