-
How do we implement private interfaces
A) Using Inherits KeywordB) Using Implements KeywordC) Private interfaces can not be implementedExplanation: Interfaces must always be declared as public so that they can be implemented or inherited
-
Which of the following is not a method of Debug class
A) Assert( )B) Flush( )C) Open( )
-
-
-
VB.NET List Box
How can i retrieve records of a column having certain criteria and display the records in a list box? Please help me...
-
Windows-based application code segment
You develop a Windows-based application that includes the following code segment. (Line numbers areincluded for reference only.)01 Public Sub password_Validating (ByVal sender As _02 Object, ByVal e As _03 System.ComponentModel.CancelEventArgs)04 Handles password.Validating05 If ValidPassword() = False Then06 'Insert new code.07 End If08 End SubYou must ensure that users cannot move control focus away...
-
-
-
Which program will you use to assemble a program written in IL:
A) ilasmB) ildasmC) clr
-
The metadata stored in the assembly is called :
A) AssemblyInfoB) manifestC) AssemblyData
-
A �Stack� Collection provides �first-in-first-out� functionality:
A) TrueB) FalseExplanation: A stack provides last-in-first-out functionality
-
A DataSet can hold any number of tables
A) TrueB) False
-
How do you declare variables in VB.NET
A) Using Dimension keywordB) Using Dim keywordC) Both A & BD) None
-
Which keyword refers the parent of the current object
A) MeB) SuperC) MybaseD) This
-
Which class is used to run the EXE application file in VB.NET
A) ProcessB) ApplicationC) ExeD) Execute
-
Which statement shows Boxing?
A) Dim O as object=I ( as i an integer)B) Dim I as integer=OC) Both
-
What is the maximum no of dimension that an array can have in VB.NET ?
A) 3B) 5C) 32D) Unlimited
-
Which of the following functions have been removed in VB.NET from VB 6?
A) String( )B) IsEmpty( )C) DoEvents ( )D) All of the above
-
An Assemblyinfo file in a VB.NET project will have _______ as file extesion.
A) .configB) .vbC) .cs
-
The methods declared with the following modifier are not accessible outside the class
A) ProtectedB) FriendC) PrivateExplanation: Private functions are available with in the class module
VB.NET Interview Questions
Ans