Multiple choice technology programming languages

Suppose you want to create a report using both character and numeric variables. If you don't use any DEFINE statements in your PROC REPORT step

  1. your PROC REPORT step will not execute successfully

  2. you can produce only list reports

  3. you can order rows by specifying options in the PROC REPORT statement

  4. you can produce only summary reports

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Without DEFINE statements in PROC REPORT, SAS defaults to producing list reports when you have both character and numeric variables. DEFINE statements are required to create summary reports or customize the report structure. The default behavior simply lists observations without aggregation or complex formatting.