What will be the output of

bool containsApp = "hati,ghor,apple,mango,babai".Split(',')
.Where(s => string.Compare("app", s, true) == 0)
.Count() > 0;

 Posted by Rajnilari2015 on 12/1/2015 | Category: C# Interview questions | Views: 3188 | Points: 40
Select from following answers:
  1. True
  2. False
  3. Program crash
  4. I don't know
  5. All Above

Show Correct Answer


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response