
OOPS with Java Quiz-II
Quiz by S. F. Rodd
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Measure skills
from any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
With a free account, teachers can
- edit the questions
- save a copy for later
- start a class game
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
15 questions
Show answers
- Q1JDK stands forJava Data KitJava Drawing KitJava Development KitJava Design Kit30s
- Q2JRE stands forJava Run EngineJava Robust EnvironmentJava Run-time EnvironmentJava Reliable Environment30s
- Q3JIT stands forJust Ignore CompilerJust Any CompilerJava In CompilerJust In-time Compiler30s
- Q4Following is not a data type in JavaDatefloatintString30s
- Q5Array variable name isGeneric typeValue typedata typeReference type30s
- Q6When we save a java file the file name must beMainSame as the class nameUpper caseLower Case30s
- Q7The name of the command line argument in java isargsargcargvString []30s
- Q8the main method of a console application must be for it to be executed without instantiationstaticvoidpublicdynamic30s
- Q9Following is not an IDE for JAVAIntelliJNetbeansNotePad+Eclipse30s
- Q10The name of the java interpreter isjrejavacjavajavi30s
- Q11Following is a class librarypublicSystemprintlnclass30s
- Q12Following is the correct array declarationarrayName int[ ] ;arrayName[];int[ ] arrayName;[ ] int arrayName;30s
- Q13In Java variable can be declared any where in the function bodyFalseTrue30s
- Q14String object isMutableImmutable30s
- Q15The syntax of for each loop isfor(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