Correct Answer: string
Explanation:
Note: This Question is unanswered, help us to find answer for this one
C# Skill Assessment
Your Skill Level: Poor
Retake Quizzes to improve it
More C# MCQ Questions
Which of the following statements can be used for declaring a two dimensional array?
What happens when the continue keyword is encountered in a for loop?
What happens if you use Statement 2 instead of Statement 1? Statement 1: if(nCount == 0) Statement 2: if(nCount = 0)
Which of the following statement regarding switch-case is false?
Which of the following command types are provided by an oledb and sql provider?
Which of the following statements is true regarding predicate delegates in C#?
In which of the following namespaces is the Assembly class defined?
What is the benefit of using a finally{} block with a try-catch statement in C#?
Which of the following functions are used to wait for a thread to terminate?
What is the problem with the following function, which is supposed to convert a Stream into byte array? public static byte[] ReadFully(Stream input) { using (MemoryStream ms = new MemoryStream()) { input.CopyTo(ms); return ms.ToArray(); } }>