Multiple choice asp

My ASP page won't work is a common complaint for those new to ASP. Which of these can be the cause?

  1. Syntax error such as missing parentheses, comma or quotation mark.

  2. Comments in your code are not tagged properly as comments.

  3. Make sure function names have both opening and closing parentheses.

  4. Check to see that the web page is properly saved with the extension as .asp

  5. All of the above

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

All listed issues can cause ASP pages to fail. Syntax errors (missing parentheses, commas, or quotes) prevent code from parsing. Improperly tagged comments get interpreted as code. Functions need parentheses even with no arguments. And pages must be saved with .asp extension for the server to recognize and process them as ASP files. Each issue alone can break the page.