placeholder image to represent content

OOPS with Java Quiz-II

Quiz by S. F. Rodd

Our brand new solo games combine with your quiz, on the same screen

Correct quiz answers unlock more play!

New Quizalize solo game modes
15 questions
Show answers
  • Q1
    JDK stands for
    Java Data Kit
    Java Drawing Kit
    Java Development Kit
    Java Design Kit
    30s
  • Q2
    JRE stands for
    Java Run Engine
    Java Robust Environment
    Java Run-time Environment
    Java Reliable Environment
    30s
  • Q3
    JIT stands for
    Just Ignore Compiler
    Just Any Compiler
    Java In Compiler
    Just In-time Compiler
    30s
  • Q4
    Following is not a data type in Java
    Date
    float
    int
    String
    30s
  • Q5
    Array variable name is
    Generic type
    Value type
    data type
    Reference type
    30s
  • Q6
    When we save a java file the file name must be
    Main
    Same as the class name
    Upper case
    Lower Case
    30s
  • Q7
    The name of the command line argument in java is
    args
    argc
    argv
    String []
    30s
  • Q8
    the main method of a console application must be for it to be executed without instantiation
    static
    void
    public
    dynamic
    30s
  • Q9
    Following is not an IDE for JAVA
    IntelliJ
    Netbeans
    NotePad+
    Eclipse
    30s
  • Q10
    The name of the java interpreter is
    jre
    javac
    java
    javi
    30s
  • Q11
    Following is a class library
    public
    System
    println
    class
    30s
  • Q12
    Following is the correct array declaration
    arrayName int[ ] ;
    arrayName[];
    int[ ] arrayName;
    [ ] int arrayName;
    30s
  • Q13
    In Java variable can be declared any where in the function body
    False
    True
    30s
  • Q14
    String object is
    Mutable
    Immutable
    30s
  • Q15
    The syntax of for each loop is
    for(int i : a) System.out.println(a[i]);
    for(int i : a) System.out.println(i);
    foreach(int i : a) System.out.println(i);
    foreach(int i : a[]) System.out.println(i);
    30s

Teachers give this quiz to your class