JAVA QUIZ

    Welcome to your JAVA QUIZ

    How many Operator in java?
    How Many Types of Expection?
    What Output of Programpublic class OperatorExample{  
    public static void main(String args[]){  
    int x=10;  
    System.out.println(x--);
    }}
    What is Method Overloading?
    Which of the following is a valid declaration of a char
    What is Output of Programclass Adder{
    static int add(int a, int b){return a+b;}
    static double add(double a, double b){return a+b;}
    }
    class TestOverloading2{
    public static void main(String[] args){
    System.out.println(Adder.add(22.5,22.6));
    }}
    What is Throwable in java?
    Which of these keywords is not a part of exception handling?
    What is concurrent collector?
    What is jmap?
    What is gcoldcapacity
    Which operator is used by Java run time implementations to free the memory of an object when it is no longer needed?
    The portion of heap where short aged objects are kept is called
    Which of the following options is used to set initial heap size?
    JVM options start with
    Which one of the following is not a step in serial collector?