R
Q. What will be the output of the following C# code?
using System; class Program { static void Main(string[] args) { int i = 100; do { Console.Write(i + " "); ++i; } while (i <= 50); } }
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. Correct Declaration of Values to variables ‘a’ and ‘b’?
Q. The first type of streams is specially used to represent _________
Q. Select a convenient declaration and initialization of a floating point number:
Q. What does the access modifier do in C#?
Q. Why does Visual Studio.NET use XML as a data storage technology?
Q. Which of the following statements is incorrect about delegate?
Q. Can we use linq to query against a DataTable?
Q. Which of the following statements is correct about an Exception?
Discusssion
Login to discuss.