-
-
-
The underlying mechanism used by the .NET environment for call back methods
A) PointersB) DelegatesC) None of the above
-
Which interface allows to implement the Dispose method to do cleanup work
A) IcleanupB) IdisposableC) Idestructor
-
Which keyword is used in the method declaration to handle an Event
A) EventB) HandlesC) Raise
-
How do you create a Read only Property in VB.NET
A) Using Only Get..EndGet with in property definitionB) Using Only Set..EndSet with in property definitionC) Using both Get & Set
-
How do you terminate code execute with in a VB.NET method
A) Exit SubB) ExitC) Close
-
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
-
The methods which return the values back to the calling code are called as
A) Interrogative methodsB) Imperative methodsC) Constructors
-
How do we implement Late Binding in VB.NET
A) Through the use of “Object” data typeB) Through InheritanceC) Through abstractionExplanation: As object data type can store virtually any value type can be determined during run time.
-
The concept where the compiler knows the object type before the compile time is
A) Late BindingB) Early BindingC) None of bindingExplanation: As object’s Type is declared before compiling compiler knows everything about the object
-
Which method in VB.NET is called right before the object is destroyed
A) SealedB) FinalizeC) Finally
-
The implementation code in a VB.Net method is enclosed between
A) { }B) ( )C) sub .. EndSub
-
What is the significance of Option Explicit statement when it is set to On
A) Specifies that any variable name is declared (with type) before useB) Specifies whether strings should be compared as binaryC) Specifies that variables should be initialized before use
-
-
what are two types of script recording in rational robot?
1. GUI scripts: Used for GUI activites.2.VU scripts: Used for the client server request for performance testing.
-
-
-
-
-
-
-
What are two primary goals of testing?
Can any one answer to this question
-
-
What kinds of testing do you know? What is it system testing? What is it integration testing? What is a unit testing? What is a regression testing?
You theoretical background and home work may shine in this question. System testing is a testing of the entire system as a whole. This is what user see and feels about the product you provide. Integration testing is the testing of integration of different modules of the system. Usually, the integration process is quite painful and this testing is the most serious one of all. Integration testing comes...
-