Exercise: Namespaces
Questions for: Namespaces
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?
using System.Windows.Forms; ListBox lb = new ListBox();using LBControl = System.Windows.Forms; LBControl lb = new LBControl();System.Windows.Forms.ListBox lb = new System.Windows.Forms.ListBox();using LBControl lb = new System.Windows.Forms.ListBox;using LBControl = System.Windows.Forms.ListBox; LBControl lb = new LBControl();
A:
1, 3
B:
2, 4, 5
C:
1, 3, 5
D:
5 only
Answer: C
No answer description is available. Let's discuss.
Which of the following C#.NET code snippets will correctly print "Hello C#.NET"?
A:
import System;
namespace ExamAdept
{
class MyProgram
{
static void Main(string[] args)
{
Console.WriteLine("Hello C#.NET");
}
}
}B:
using System;
namespace ExamAdept
{
class MyProgram
{
static void Main(string[ ] args)
{
WriteLine("Hello C#.NET");
}
}
}C:
using System.Console;
namespace ExamAdept
{
class MyProgram
{
static void Main (string[ ] args)
{
WriteLine("Hello C#.NET");
}
}
}D:
using System;
namespace ExamAdept
{
class MyProgram
{
static void Main(string[] args)
{
Console.WriteLine("Hello C#.NET");
}
}
}
Answer: D
No answer description is available. Let's discuss.
Discuss About this Question.
Which of the following statements is correct about a namespace used in C#.NET?
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.
Answer: C
No answer description is available. Let's discuss.
Discuss About this Question.
Which of the following CANNOT belong to a C#.NET Namespace?
A:
class
B:
struct
C:
enum
D:
Data
Answer: D
No answer description is available. Let's discuss.
Discuss About this Question.
Which of the following statements are correct about a namespace used in C#.NET?
- Classes must belong to a namespace, whereas structures need not.
- Every class, struct, enum, delegate and interlace has to belong to some or the other namespace.
- All elements of the namespace have to belong to one file.
- If not mentioned, a namespace takes the name of the current project.
- The namespace should be imported to be able to use the elements in it.
A:
1, 3
B:
2, 4, 5
C:
3, 5
D:
4 only
Answer: B
No answer description is available. Let's discuss.
Discuss About this Question.
Ad Slot (Above Pagination)
Discuss About this Question.