CSE MCQs :: C#.Net MCQs
- Which among the following statements are not correct about a namespace used in C#.NET?
-
What will be the output of following code snippet?#define piusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApplication13{class Program{static void Main(string[] args){#if (!pi)Console.WriteLine("i");#elseConsole.WriteLine("pi not define");#endifConsole.WriteLine("ok");Console.ReadLine();}}}
- Select the properties related to the network errors generated by WebException:
-
What does the following code block define?class Gen
{ T ob;} -
What does the following method specify?public static WebRequest Create(string requestUriString)
- Which among the following is a .NET namespace?
-
What will be the output of following code snippet?#define DEBUG#define MYTESTusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApplication13{class Program{static void Main(string[] args){#if (DEBUG && !MYTEST)Console.WriteLine("DEBUG is defined");#elif (!DEBUG && MYTEST)Console.WriteLine("MYTEST is defined");#elif (DEBUG && MYTEST)Console.WriteLine("DEBUG and MYTEST are defined");#elseConsole.WriteLine("DEBUG and MYTEST are not defined");#endifConsole.ReadLine();}}}