SLR20 Flashcards
What is thinking procedurally in terms of computer science
Breaking a problem down into smaller tasks for a team of programmers to complete
When thinking procedurally, what does priority do
Decides which tasks need to be completed first
What is the purpose of a flowchart for programming
A flowchart is an easy way of explaining what a block of code does. It can also be used to explain what you’re working on to someone who might not have a very good understanding of programming such as, a boss, or a friend.
What is pseudocode
A simple way of explaining code to someone without all of the grammar that typical languages will have
What is pseudocode good for
Because it has no grammar it’s good as a universal language meaning it can be easily translated into anyway language
How do event driven programs work
Nothing happens until an event tell it to do something. This could be from a click of a mouse or key on the keyboard
Are event driven programs easy to predict
No they are nearly impossible to predict as little anything can happen at anytime from each input
What is a sub-procedure
A small program inside another program that is called by the main program when something happens
Why are sub-procedures good for programming
They are space efficient and allow the computer to get through the code quicker as it can make use of scheduling