C# Namespaces and Preprocessors Mcqs

Our collections of Multiple choice questions and answers focuses on study of C# Namespaces and Preprocessors. These questions are chosen from a collection of most authoritative and best reference books on C# Namespaces and Preprocessors. Our aim is to prepare an individual for competitive exams like NTS, GAT, ECAT, University and College entrance exams and various tests and job interviews. One should practice our Mcqs to assimilate C# Namespaces and Preprocessors comprehensively.

1.
If a namespace is present in a library then which of the following is the correct way to use the elements of the namespace?

Add Reference of the namespace.Use the elements of the namespace.

Add Reference of the namespace.Import the namespace.Use the elements of the namespace.

Import the namespace.Use the elements of the namespace.

Copy the library in the same directory as the project that is trying to use it.Use the elements of the namespace.

3.
Which of the following statments are the correct way to call the method Issue() defined in the code snippet given below?

namespace College
{
    namespace Lib
    {
        class Book
        {
            public void Issue()
            {
                // Implementation code
            }
        }
        class Journal
        {
            public void Issue()
            {
                // Implementation code
            }
        }
    }
}
1.
College.Lib.Book b = new College.Lib.Book(); 
b.Issue();

2.
Book b = new Book(); 
b.Issue();

3.
using College.Lib; 
Book b = new Book(); 
b.Issue();

4.
using College;
Lib.Book b = new Lib.Book(); 
b.Issue();

5.
using College.Lib.Book; 
Book b = new Book(); 
b.Issue();

1, 3

2, 4

3

4, 5

4.
Which of the following is absolutely neccessary to use a class Point present in namespace Graph stored in library?

Use fully qualified name of the Point class.

Use using statement before using the Point class.

Add Reference of the library before using the Point class.

Use using statement before using the Point class.

5.
If a class called Point is present in namespace n1 as well as in namespace n2, then which of the following is the correct way to use the Point class?


namespace CompSciBitsConsoleApplication
{ 
    class MyProgram
    { 
        static void Main(string[] args)
        { 
            import n1; 
            Point x = new Point();
            x.fun();
            import n2;
            Point y = new Point(); 
            y.fun();
        }
    }
}

class student
import n1; 
import n2;
namespace CompSciBitsConsoleApplication
{ 
    class MyProgram
    { 
        static void Main(string[] args)
        {
            n1.Point x = new n1.Point(); 
            x.fun();
            n2.Point y = new n2.Point(); 
            y.fun();
        }
    }
}

class student
namespace CompSciBitsConsoleApplication
{ 
    class MyProgram
    {
        static void Main(string[] args)
        {
            using n1;
            Point x = new Point();
            x.fun();
            using n2;
            Point y = new Point();
            y.fun();
        }
    }
}

class student
using n1;
using n2; 
namespace CompSciBitsConsoleApplication
{ 
    class MyProgram
    { 
        static void Main(string[] args)
        { 
            n1.Point x = new n1.Point(); 
            x.fun();
            n2.Point y = new n2.Point(); 
            y.fun(); 
        } 
    } 
}

7.
Which of the following statements is correct about namespaces in C#.NET?

Namespaces can be nested only up to level 5.

A namespace cannot be nested.

There is no limit on the number of levels while nesting namespaces.

If namespaces are nested, then it is necessary to use using statement while using the elements of the inner namespace.

8.
Which of the following is correct way to rewrite the C#.NET code snippet given below?
class student
using Microsoft.VisualBasic;
using System.Windows.Forms;
MessageBox.Show("Wait for a" + ControlChars.CrLf + "miracle");


using System.Windows.Forms;
using CtrlChars = Microsoft.VisualBasic.ControlChars; 
MessageBox.Show("Wait for a" + CrLf + "miracle");

class student
using Microsoft.VisualBasic; 
using System.Windows.Forms; 
CtrlChars = ControlChars;
MessageBox.Show("Wait for a" + CtrlChars.CrLf + "miracle");

class student
using Microsoft.VisualBasic; 
using System.Windows.Forms; 
CtrlChars = ControlChars; 
MessageBox.Show ("Wait for a" + CrLf + "miracle");

class student
using System.Windows.Forms;
using CtrlChars = Microsoft.VisualBasic.ControlChars; 
MessageBox.Show("Wait for a" + CtrlChars.CrLf + "miracle");

9.
Which of the following statements is correct about the using statement used in C#.NET?

Using statement can be placed anywhere in the C#.NET source code file.

It is permitted to define a member at namespace level as a using alias.

A C#.NET source code file can contain any number of using statement.

By using using statement it is possible to create an alias for the namespace but not for the namespace element.

10.
Which of the following statements are correct about a namespace used in C#.NET?

1. Classes must belong to a namespace, whereas structures need not.
2. Every class, struct, enum, delegate and interlace has to belong to some or the other namespace.
3. All elements of the namespace have to belong to one file.
4. If not mentioned, a namespace takes the name of the current project.
5. The namespace should be imported to be able to use the elements in it.

1, 3

2, 4, 5

3, 5

4 only

12.
Which of the following statements is correct about a namespace used in C#.NET?

Nested namespaces are not allowed.

Importing outer namespace imports inner namespace.

Nested namespaces are allowed.

If nested, the namespaces cannot be split across files.

13.
Which of the following C#.NET code snippets will correctly print “Hello C#.NET”?


import System; 
namespace CompSciBitsConsoleApplication
{ 
    class MyProgram
    { 
        static void Main(string[] args)
        { 
            Console.WriteLine("Hello C#.NET");
        } 
    } 
}

class student
using System;
namespace CompSciBitsConsoleApplication
{ 
    class MyProgram
    { 
        static void Main(string[ ] args)
        { 
            WriteLine("Hello C#.NET");
        } 
    } 
}

class student
using System.Console; 
namespace CompSciBitsConsoleApplication
{ 
    class MyProgram
    { 
        static void Main (string[ ] args)
        { 
            WriteLine("Hello C#.NET");
        } 
    } 
}

class student
using System;
namespace CompSciBitsConsoleApplication
{ 
    class MyProgram
    { 
        static void Main(string[] args)
        { 
            Console.WriteLine("Hello C#.NET");
        }
    }
}

14.
If ListBox is class present in System.Windows.Forms namespace, then which of the following statements are the correct way to create an object of ListBox Class?

1.
using System.Windows.Forms; 
ListBox lb = new ListBox();

2.
using LBControl = System.Windows.Forms;
LBControl lb = new LBControl();

3.
System.Windows.Forms.ListBox lb = new System.Windows.Forms.ListBox();

4.
using LBControl lb = new System.Windows.Forms.ListBox;

5.
using LBControl = System.Windows.Forms.ListBox; 
LBControl lb = new LBControl();

1, 3

2, 4, 5

1, 3, 5

5 only

error: You are not allowed to do so.....
0Shares
0
Scroll to Top