| Question | Answer |
|---|---|
| How do we specify the input dataset for PROC MEANS? | Use the `data=` option on the PROC MEANS statement. |
| What happens if we do not provide the data= option? | The most recently created dataset in the current SAS session is used. |
| How do we specify the variables for which statistics are requested? | Use the `var` statement. |
| What happens if we do not provide a VAR statement? | SAS produces descriptive statistics for all numeric variables in the input dataset. |
| How do we specify the output dataset name? | Use the `output` statement with the `out=` option. |
| What happens if we do not provide the output statement? | No output dataset is created, but summary statistics are still shown in the output window. |