Sunday, 21 April 2013

Class -1- What is the result when you compile and run the following code?

Class -1-  What is the result when you compile and run the following code? 



package net.dharmaraj;

import java.util.*;

public class MyVector {
public Vector myVector() {
Vector v = new Vector();
// return v.addElement("Adding element to vector");
// return v.addElement(new String("dev"));
// MyVector s=v.addElement(new Integer(1));
// return v.addElement(new Integer(1)) ;
return v;
}

public static void main(String[] args) {
MyVector mv = new MyVector();
System.out.println(mv.myVector());
}
}





A) Prints Adding element to vector 
B) Compile time error 
C) Runtime error 
D) Compiles and runs successfully 

No comments:

Post a Comment