Select from following answers:- Index

- Indexing
- Create
- Start
- All Above
Every controller can have default action method as per configured route in RouteConfig class. By default,
Index is a default action method for any controller.
e.g.
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}/{name}",
defaults: new { controller = "Home",
action = "Index",
id = UrlParameter.Optional
});
Show Correct Answer
Asked In: Many Interviews |
Alert Moderator