S
Q. What will be the output of the following C# code?
static void Main(string[] args) { string Name = "He is playing in a ground."; char[] characters = Name.ToCharArray(); StringBuilder sb = new StringBuilder(); for (int i = Name.Length - 1; i >= 0; --i) { sb.Append(characters[i]); } Console.Write(sb.ToString()); Console.ReadLine(); }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Choose the namespace in which the interface IEnumerable is declared?
Q. Which one of the following JIT compilers produce highly optimized code?
Q. What will be the output of the following C# code?
Q. What will be the output of the following C# code?
Q. Valid Size of float data type is?
Q. The infrastructure that supports these dynamic operations at run time is called the__________.
Discusssion
Login to discuss.