MVC – Action Verbs     Action Selectors   ·          Action selector is the attribute that can be applied to the action methods. It helps routing engine to select the correct action method to handle a particular request. MVC 5 includes the following action selector attributes:   o     ActionName   o     NonAction   o     ActionVerbs   ActionName   ·          ActionName attribute allows us to specify a different action name than the method name.            public  class  EmployeeController  : Controller   {     public    EmployeeController()   {     }     [ ActionName ( "find" )]   public  ActionResult  GetById( int  id)   {   // get employee   from the database   return  View();   }   }         ·          In the above example, we have applied ActioName("find") attribute to GetById action method. So now, action...