-
Transfer Value
How to transfer value from one form to another form?
-
Picture and Image Controls
What is the difference between the picture and image controls in VB6.0
-
-
-
-
-
VB.NET 2003 can not support following
A) Operator OverloadingB) Multiple InheritanceC) Multilevel InheritanceD) All of the aboveE) A & B Only
-
Whats the output of following codeClass A Public Overridable Sub F() End SubEnd ClassClass B Inherits A Public Overridable Sub F() End SubEnd Class
A) Runtime ErrorB) Compiler ErrorC) Compiler Throws a warning message
-
What is the out put of the following codeMustInherit class MyFirstclassPublic Dim Num as IntegerPublic Sub New( I as integer) Num=iEnd SubEnd ClassClass Test Dim cls as New MyFirstclass( 100) Console.writeLine (cls.Num)End Class
A) Can not Create an Instance of MyfirstClassB) MyFirstclass is created and 100 is assigned to Num variableC) Runtime Error
-
Which statement shows Boxing?
A) Dim O as object=I ( as i an integer)B) Dim I as integer=OC) Both
-
AppDevRight Modify Visual Studio .NET Application
You company AppDevRight assigns you to modify a Visual Studio .NET application that was created by a former colleague. However, when you try to build the application, you discover several syntax errors.You need to correct the syntax errors and compile a debug version of the code so the application can be tested.Before compiling, you want to locate each syntax error as quickly as possible.What should...
-
-
-
How do you implement interrogative methods in VB.NET
A) Using Sub keywordB) Using Function KeywordC) Using New KeywordExplanation: Functions always return a value hence they are interrogative methods
-
Int and int32
What is the difference between int and int32
-
-
It is not possible to put multiple classes in side a single .vb file
A) TrueB) FalseExplanation: It is possible to have multiple classes inside a single .vb file.
-
How to determine if a variable has not been initialized in VB.NET?
A) ISNull( )B) IsEmpty( )C) IsDdNull( )
-
Which method in VB.NET is called right before the object is destroyed
A) SealedB) FinalizeC) Finally
-
VB.NET Interview Questions
Ans