Show:
Questions
Responses
Print
Programming Process Steps
More Programming Process
Algorithms
Pseudocode and Flowcharts
Documentation and use Cases
100
Who created this?
Grey S and Connor A
100
what is step number one of the programming process?
Identify the problem
100
What is an algorithm
A method of reaching a solution
100
What does a diamond signify in a flowchart
A Decision
100
What color are comments in Visual Basic 2010
green
200
How many steps are there in the computer programming process?
5
200
In step three of the programming process you must...
choose the correct programming language that will best suit the needs and desired outcome of the user
200
An algorithm should be....
easy to follow and only have one solution; unambiguous
200
What does psuedocode mean
a mix of English and code that tells the computer what to do
200
What do all comments begin with
an '
300
What is step number 4?
Test the program
300
When testing the program, What type of errors should you check for?
Syntax and Logic
300
What is one of the most important parts of an algorithm?
That it is very detailed
300
What does an oval represent in a flowchart
Start/Stop
300
Can a comment be on one line or multiple lines
Both
400
What is the most used design in the programming process?
Top-Down Design
400
What happens when you don't carefully design the solution?
If you mess up you get lost and the program could be ruined
400
What is a disadvantage of an algorithm?
An algorithm could be interpreted incorrectly
400
What indicates the flow of logic in a flowchart
Arrows
400
What does a use case do?
It defines the interactions between the user and the system
500
What is modularization?
breaking down problems into subproblems to be able to solve them easier
500
If you are working on a program what should you do to let other people know what each line of code means?
Comment or document what the code means
500
How would you cube x?
You can multiply x times x times x
500
What are the 3 control structures
iteration conditional and simple
500
What is a user manual an example of
A use case