R
Q. What will be the output of the following C# code?
using System; namespace MyApplication { class Program { static void Main(string[] args) { int[,] ARR = {{1,2},{3,4}}; Console.WriteLine(ARR.GetLength(0)+","+ARR.GetLength(1)); } } }
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. C# pointer can only be declared to hold the memory address of ___.
Q. What will be the output of the following C# code?
Q. How can you prevent inheritance from a class in C#.NET ?
Q. The various possible values of dock property are_________
Q. What does the access modifier do in C#?
Q. _________ are reserved, and cannot be used as identifiers.
Q. All IO classes that represent streams are derived from the ______ class.
Q. Which is the correct way to declare an object of the class in C#?
Q. Which array method is used to sort an array alphabetically or in an ascending order in C#?
Discusssion
Login to discuss.