Q.1

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 IndiabixConsoleApplication
    { 
        class MyProgram
        { 
            static void Main(string[] args)
            { 
                import n1; 
                Point x = new Point();
                x.fun();
                import n2;
                Point y = new Point(); 
                y.fun();
            }
        }
    }
  • import n1; 
    import n2;
    namespace IndiabixConsoleApplication
    { 
        class MyProgram
        { 
            static void Main(string[] args)
            {
                n1.Point x = new n1.Point(); 
                x.fun();
                n2.Point y = new n2.Point(); 
                y.fun();
            }
        }
    }
  • namespace IndiabixConsoleApplication
    { 
        class MyProgram
        {
            static void Main(string[] args)
            {
                using n1;
                Point x = new Point();
                x.fun();
                using n2;
                Point y = new Point();
                y.fun();
            }
        }
    }
  • using n1;
    using n2; 
    namespace IndiabixConsoleApplication
    { 
        class MyProgram
        { 
            static void Main(string[] args)
            { 
                n1.Point x = new n1.Point(); 
                x.fun();
                n2.Point y = new n2.Point(); 
                y.fun(); 
            } 
        } 
    }
Q.2

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
Q.3

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.
  • Install the namespace in Global Assembly Cache.
    Use the elements of the namespace.
Q.4

Which of the followings are NOT a .NET namespace?

  1. System.Web
  2. System.Process
  3. System.Data
  4. System.Drawing2D
  5. System.Drawing3D
  • 1, 3
  • 2, 4, 5
  • 3, 5
  • 1, 2, 3
Q.5

Which of the following CANNOT belong to a C#.NET Namespace?

  • class
  • struct
  • enum
  • Data
  • interface
Q.6

Which of the following is NOT a namespace in the .NET Framework Class Library?

  • System.Process
  • System.Security
  • System.Threading
  • System.Drawing
  • System.Xml
Q.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.
  • Nesting of namespaces is permitted, provided all the inner namespaces are declared in the same file.
Q.8

Which of the following is correct way to rewrite the C#.NET code snippet given below?

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");
  • using Microsoft.VisualBasic; 
    using System.Windows.Forms; 
    CtrlChars = ControlChars;
    MessageBox.Show("Wait for a" + CtrlChars.CrLf + "miracle");
  • using Microsoft.VisualBasic; 
    using System.Windows.Forms; 
    CtrlChars = ControlChars; 
    MessageBox.Show ("Wait for a" + CrLf + "miracle");
  • using System.Windows.Forms;
    using CtrlChars = Microsoft.VisualBasic.ControlChars; 
    MessageBox.Show("Wait for a" + CtrlChars.CrLf + "miracle");
Q.9

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.
Q.10

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
Q.11

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.
  • By using using statement it is possible to create an alias for the namespace element but not for the namespace.
Q.12

Which of the following C#.NET code snippets will correctly print "Hello C#.NET"?

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

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

  • Namespaces help us to control the visibility of the elements present in it.
  • A namespace can contain a class but not another namespace.
  • If not mentioned, then the name 'root' gets assigned to the namespace.
  • It is necessary to use the using statement to be able to use an element of a namespace.
  • We need to organise the classes declared in Framework Class Library into different namespaces.
Q.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
Q.15

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.
  • Copy the library into the current project directory before using the Point class.
0 h : 0 m : 1 s