 What is the output of the Java code with exceptions?
 What is the output of the Java code with exceptions?public class ExceptionTest9{public static void main(String[] args){System.out.println("I am going to forest.");throw new ClassNotFoundException();}}
 Consider the following given program and choose the most appropriate outfrom the option
 Consider the following given program and choose the most appropriate outfrom the option #include iostreamusing namespace std;class A{public:A(){cout"Constructor called\n";}~A(){cout"Destructor called\n";}};int main(int argc, char const *argv[]){A *a = new A[5];delete[] a;return 0;}
 What will be the output of the following Java program?
 What will be the output of the following Java program?class rightshift_operator{public static void main(String args[]){int x;x = 10;x = x 1;System.out.println(x);}}
 Q which of the following elements is responsible for maintaining turgor in cells.
 Q which of the following elements is responsible for maintaining turgor in cells. 
 #include iostreamusing namespace std;void main() {short i=2300, j=4322;cout"i+j="-(i+j);}
 
  Guess the output
 Guess the outputpublic class Col {
    public Col() {
        System.out.println("har har mahadev");
    }
    public Col(int a) {
        this();
        this();
    }
    public static void main(String...k) {
        Col c = new Col(10);
        System.out.println("har har mahadev");
    }
}