How do you terminate code execute with in a VB.NET method
Exit
Close Sub
Exit Sub
Kill
A reference type variable in VB.NET code holds a reference to a COM object through
RRW object
RAW object
RCW object
None of the Above
Which of the following when turned on do not allow incompatible type conversion?
Option Explicit
Option Strict
Option All
All of the Above
In JAVA 1.5, can we have two overridden methods with different return types?
True
False
Serializable interface has two methods which MUST overridden when a class implemnts Serializable interface.
List mylist = new ArrayList(); mylist.add(5); If you compile this lines in JAVA 1.5 , it will give compilation error.
For Arrays & Collection, Sort order & search order need not to be SAME.
What will be the output?public static void main(String[] args) { for (int i=0;i<= 10;i++){if( i>6) break;}System.out.println(i);}
runtime exception
6
7
comiple error.
10
What will be the output?public static void main(String[] args) { for (int i=0;i<= 10;i++) { if( i>6) break; }System.out.println(i); }
Runtime exception
Compile Error
11