
Think Java Chapter 1 Vocabulary Quiz
Quiz by Yolande Samuels
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
25 questions
Show answers
- Q1Get data from the keyboard, a file, a sensor, or some other device.input30s
- Q2Display data on the screen, or send data to a file or other device.output30s
- Q3Check for certain conditions and execute the appropriate code.decisions/selections30s
- Q4Perform some action repeatedly, usually with some variation.repetition/iteration30s
- Q5a sequence of instructions that specifies how to perform a task on a computerprogram30s
- Q6The application of problem solving to creating executable computer programs.programming30s
- Q7a sequence of steps that specifies how to solve a problemalgorithm30s
- Q8programming errorsbugs30s
- Q9The process of finding and removing errors.debugging30s
- Q10A programming language that is designed to be easy for humans to read and write, such as Java, Python, C and C++, Ruby, and JavaScripthigh-level language30s
- Q11A programming language that is designed to be easy for a computer to run. Also called "machine language" or "assembly language".low-level language30s
- Q12The ability of a program to run on more than one kind of computer.portable30s
- Q13Runs a program in a high-level language by translating it one line at a time and immediately executing the corresponding instructions.interpreter30s
- Q14Translates a program in a high-level language into a low-level language, all at once, in preparation for later execution.compiler30s
- Q15A program in a high-level language, before being compiled.source code30s