Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Namespaces Questions
C#.NET Namespaces — which statement is correct about nesting namespaces?
C#.NET — prerequisites for using a class (Point) present in namespace Graph stored in a library.
C#.NET — which are the correct ways to call method Issue() from Book and Journal classes in College.Lib namespace?
C#.NET — handling type name conflicts when Point class exists in both n1 and n2 namespaces.
C#.NET — which statement is correct about using statements?
C#.NET — Which of the following CANNOT belong to a namespace?
Which of the following statements is correct about namespaces in C#.NET?
Identify the entries below that are NOT valid .NET Framework namespaces (select all that apply).
Refactor the code to use a type alias for Microsoft.VisualBasic.ControlChars and show a Windows Forms message box with a line break between two phrases.
Select the C#.NET program that correctly prints Hello C#.NET to the console.
Creating a System.Windows.Forms.ListBox object: choose all correct syntaxes.
.NET Framework Class Library: identify the option that is NOT a valid namespace.
Using a namespace contained in a library: choose the correct sequence to make its elements available in your project.
Namespaces in C#.NET: which statement is correct regarding nesting and imports?
Namespaces in C#.NET: evaluate the statements and choose the correct combination. Statements: 1) Classes must belong to a namespace, whereas structures need not. 2) Every class, struct, enum, delegate, and interface belongs to some namespace (including the global namespace if none is specified). 3) All elements of a namespace must reside in one single file. 4) If no namespace is mentioned, a namespace with the project name is assumed. 5) You must import a namespace with a using directive to use its elements (fully qualified names are not allowed).