
Intro to Java Terminology
Quiz by Steve Howard
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
45 questions
Show answers
- Q1Everything belongs to a ____________. No global variables or functions.class30s
- Q2Each class must be in its own ________, eponymously named. So, class foo would be in the file foo.java.file30s
- Q3Each class may have a _______.main30s
- Q4To execute the ____________ in the foo class, give the command $ java foomain method30s
- Q5If you use several classes foo1, foo2, foo3, ... create several files in the same directory foo1.java, foo2.java, foo3.java. Compile eachcompiler30s
- Q6See imageone. The _______ will automatically look for other classes in the same directory.30s
- Q7if, if-else, switch, loops (for, while, do-while, do-until)Control Flow30s
- Q8// ....Line Comment30s
- Q9defining and nesting scopesuse of {}30s
- Q10Assign the same value to 2 locationsa = b30s
- Q11Check if 2 different variables hold identicala == b30s
- Q12See imagedata30s
- Q13_________ are immutable Keeps going and going and goingStrings30s
- Q14Allocated from the heapArrays30s
- Q15___________ in Java work with arrays and other iterablefor loops30s