logo

CuriousTab

CuriousTab

Discussion


Home C# Programming Namespaces Comments

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


  • Options
  • A. Add Reference of the namespace.
    Use the elements of the namespace.
  • B. Add Reference of the namespace.
    Import the namespace.
    Use the elements of the namespace.
  • C. Import the namespace.
    Use the elements of the namespace.
  • D. Copy the library in the same directory as the project that is trying to use it.
    Use the elements of the namespace.
  • E. Install the namespace in Global Assembly Cache.
    Use the elements of the namespace.

  • Correct Answer
  • Add Reference of the namespace.
    Import the namespace.
    Use the elements of the namespace. 


  • Namespaces problems


    Search Results


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

    • Options
    • A. System.Process
    • B. System.Security
    • C. System.Threading
    • D. System.Drawing
    • E. System.Xml
    • Discuss
    • 2. 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();

    • Options
    • A. 1, 3
    • B. 2, 4, 5
    • C. 1, 3, 5
    • D. 5 only
    • Discuss
    • 3. Which of the following C#.NET code snippets will correctly print "Hello C#.NET"?

    • Options
    • A.
      import System; 
      namespace CuriousTabConsoleApplication
      { 
          class MyProgram
          { 
              static void Main(string[] args)
              { 
                  Console.WriteLine("Hello C#.NET");
              } 
          } 
      }
    • B.
      using System;
      namespace CuriousTabConsoleApplication
      { 
          class MyProgram
          { 
              static void Main(string[ ] args)
              { 
                  WriteLine("Hello C#.NET");
              } 
          } 
      }
    • C.
      using System.Console; 
      namespace CuriousTabConsoleApplication
      { 
          class MyProgram
          { 
              static void Main (string[ ] args)
              { 
                  WriteLine("Hello C#.NET");
              } 
          } 
      }
    • D.
      using System;
      namespace CuriousTabConsoleApplication
      { 
          class MyProgram
          { 
              static void Main(string[] args)
              { 
                  Console.WriteLine("Hello C#.NET");
              }
          }
      }
    • Discuss
    • 4. 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");

    • Options
    • A.
      using System.Windows.Forms;
      using CtrlChars = Microsoft.VisualBasic.ControlChars; 
      MessageBox.Show("Wait for a" + CrLf + "miracle");
    • B.
      using Microsoft.VisualBasic; 
      using System.Windows.Forms; 
      CtrlChars = ControlChars;
      MessageBox.Show("Wait for a" + CtrlChars.CrLf + "miracle");
    • C.
      using Microsoft.VisualBasic; 
      using System.Windows.Forms; 
      CtrlChars = ControlChars; 
      MessageBox.Show ("Wait for a" + CrLf + "miracle");
    • D.
      using System.Windows.Forms;
      using CtrlChars = Microsoft.VisualBasic.ControlChars; 
      MessageBox.Show("Wait for a" + CtrlChars.CrLf + "miracle");
    • Discuss
    • 5. Which of the followings are NOT a .NET namespace?

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

    • Options
    • A. 1, 3
    • B. 2, 4, 5
    • C. 3, 5
    • D. 1, 2, 3
    • Discuss
    • 6. Which of the following statements is correct about a namespace used in C#.NET?

    • Options
    • A. Nested namespaces are not allowed.
    • B. Importing outer namespace imports inner namespace.
    • C. Nested namespaces are allowed.
    • D. If nested, the namespaces cannot be split across files.
    • Discuss
    • 7. 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.

    • Options
    • A. 1, 3
    • B. 2, 4, 5
    • C. 3, 5
    • D. 4 only
    • Discuss
    • 8. Which of the following modifier is used when a virtual method is redefined by a derived class?

    • Options
    • A. overloads
    • B. override
    • C. overridable
    • D. virtual
    • E. base
    • Discuss
    • 9. In order for an instance of a derived class to completely take over a class member from a base class, the base class has to declare that member as

    • Options
    • A. new
    • B. base
    • C. virtual
    • D. overrides
    • E. overloads
    • Discuss
    • 10. Which of the following statements is correct?

    • Options
    • A. Static methods can be a virtual method.
    • B. Abstract methods can be a virtual method.
    • C. It is necessary to override a virtual method.
    • D. When overriding a method, the names and type signatures of the override method must be the same as the virtual method that is being overriden.
    • E. We can override virtual as well as non-virtual methods.
    • Discuss


    Comments

    There are no comments.

Enter a new Comment