What does ?? mean here.
ViewBag.TeamName = ((from c in pems.User_Master
where c.User_Name == UserName
select c.Team_Master.TeamName).FirstOrDefault()) ?? "No Team Mapped";
ViewBag.Role = Convert.ToInt32(Session["Menudata"]);
Go to the complete details ...