|\ |\ |\ |\ |\ |\ |\
answers
What is an Algorithm? - CORRECT ANSWERS ✔✔A set of
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\
logical steps to accomplish a specific task
|\ |\ |\ |\ |\ |\
A set of directions/instructions
|\ |\ |\
Algorithms contain - CORRECT ANSWERS ✔✔•Data
|\ |\ |\ |\ |\
•Instructions that work on that data |\ |\ |\ |\ |\
Abstraction - CORRECT ANSWERS ✔✔The level of detail
|\ |\ |\ |\ |\ |\ |\
Pseudocode is - CORRECT ANSWERS ✔✔A mixture of |\ |\ |\ |\ |\ |\ |\ |\
languages not concerned with syntax, but concepts.
|\ |\ |\ |\ |\ |\
Components of an Algorithm - CORRECT ANSWERS |\ |\ |\ |\ |\ |\ |\
✔✔Data structures- to hold data
|\ |\ |\ |\ |\
instructions- to change data value |\ |\ |\ |\ |\
Conditional expressions- to make decisions |\ |\ |\ |\ |\
Control structures- to act on decisions
|\ |\ |\ |\ |\ |\
modules- to make the algorithm manageable by
|\ |\ |\ |\ |\ |\ |\
abstraction.
, skeleton programs - CORRECT ANSWERS ✔✔are the
|\ |\ |\ |\ |\ |\ |\
smallest programs you can write.
|\ |\ |\ |\
Skeleton code example java - CORRECT ANSWERS
|\ |\ |\ |\ |\ |\ |\
✔✔class MainClass { |\ |\
public static void main (String[] args) {
|\ |\ |\ |\ |\ |\
}
}
Printing to the screen - CORRECT ANSWERS
|\ |\ |\ |\ |\ |\ |\
✔✔System.out.print or System.out.println |\ |\
What is a variable - CORRECT ANSWERS ✔✔A chunk of
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\
the computer's memory that can hold a value
|\ |\ |\ |\ |\ |\ |\
Basic Operators - CORRECT ANSWERS ✔✔Addition
|\ |\ |\ |\ |\ |\
Division |\
Multiplication |\
Subtraction
Comments are - CORRECT ANSWERS ✔✔just notes that
|\ |\ |\ |\ |\ |\ |\ |\
explain the program to yourself and others. They're
|\ |\ |\ |\ |\ |\ |\ |\
Green!