C# Programming - Namespaces

Exercise : Namespaces - General Questions
  • Namespaces - General Questions
11.
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
Answer: Option
Explanation:
No answer description is available. Let's discuss.

12.
Which of the following CANNOT belong to a C#.NET Namespace?
class
struct
enum
Data
interface
Answer: Option
Explanation:
No answer description is available. Let's discuss.

13.
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.
Answer: Option
Explanation:
No answer description is available. Let's discuss.

14.
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");
        }
    }
}
Answer: Option
Explanation:
No answer description is available. Let's discuss.

15.
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
Answer: Option
Explanation:
No answer description is available. Let's discuss.