Posts

Showing posts from December, 2017
Started off well Joe with activities towards working towards your career, but then moved more and more about your college work. This is a task abut improving yourself in the employment market. Final blogs will need to reflect this and not about getting work done for your grades P8 not achieved

Selection Statements-Dougs work

Image
Sequence: A sequence process when writing programs is when an action or event takes place which then leads to the following action in order; this ensures that all steps are executed. An example of this is when there is a program that multiplies numbers together which would require the user to input the numbers then multiply them and then display the result on the screen to the user. Selection statements: A selection statement causes the program control to be transferred to a specific flow based upon whether a certain condition is true or not. In other words this is where a computer can choose a different programming flow.  Selection is also known as making decision is programming, the next action is based upon a decision where a question would be asked which involves using If/else statements, this type of structure works when there is a condition that says  If  condition A is true then perform action B  else  perform action C. Iteration:  ...