Multiple choice technology programming languages

Which is not one of the input statement format?

  1. input (height weight) 2. ;

  2. input age weight gender $;
  3. input height 1-3 weight 4-6 gender 7;

  4. input @1 height 2. @4 weight 2. @7 gender $1;
Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Option A is invalid SAS syntax - the '2.' is incorrectly placed after the closing parenthesis. Valid formats are: list input (B), column input with ranges (C), or formatted input with @column pointers and informats (D). List input doesn't use trailing periods like that.