Multiple choice technology web technology

Where will RouteTable be defined?

  1. Web.config

  2. Global.asax

  3. App.config

  4. All of the above

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

RouteTable is defined in Global.asax during Application_Start. This is the standard location where routes are registered in the MVC application startup lifecycle. Web.config and App.config are for configuration settings, not route definitions.