Question:What result will you get when you run the following LINQ query in .Net framework 4.0? List<string> alphabets = new List<string>() { "whats", "new", "in", "aspnet" }; var alphabetsquery = from alphabet in alphabets select alphabet.Substring(0, 1); foreach (var alpha in alphabetsquery) { Response.Write(alpha); } 

A wnia 

B whats 

C whatsnewinaspnet 

D aspnetinnewwhats 

+ Answer
+ Report
Total Preview: 568

Copyright © 2024. Powered by Intellect Software Ltd