What will be the output of the below code segment?

class Program
{
static void Main(string[] args)
{
Console.Write(string.Join("", "http://www.dotnetfunda.com/articles/show/3165/calculator-application-using-ironjs-and-wpf-by-invoking-an-external-ja".ToCharArray().Where(Char.IsDigit)));
Console.ReadKey(true);
}
}

 Posted by Rajnilari2015 on 10/24/2015 | Category: C# Interview questions | Views: 3031 | Points: 40
Select from following answers:
  1. 3165
  2. show
  3. http
  4. articles
  5. All Above

Show Correct Answer


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response