Presentation is loading. Please wait.

Presentation is loading. Please wait.

Lab #6 Program Design.

Similar presentations


Presentation on theme: "Lab #6 Program Design."— Presentation transcript:

1 Lab #6 Program Design

2 Lab #6 You are presented with six exercises where you have to fill-in-the-blanks. For each exercise you are presented with a flowchart with some blank boxes, and on the following page a number of potential answers are provided, including the correct answers. In the Word document you have all your labs and tutorials in: PROGRAM-DESIGN-PORTFOLIO.DOC (or .DOCX) add in the screengrabs from this. Now your document to with a subject heading of PROGRAM DESIGN LAB #6 and in the message of your please let me know your full name, your student number, the name of your programme, the programme code, the name of the module, the year you are in (first year), and your assignment. PLEASE NOTE: If you do not have the correct subject heading on your , or the correct filename, your submission WILL be rejected.

3 Symbols Decision Terminal Input/Output Operation Connector Module
Process Module

4 Exercise #1 We want to create a flowchart that prints out double the number of the inputted value. On the next slide is a flowchart with some blacked out boxes. On the following slide is a number of potential boxes you could use to correctly implement the algorithm. Copy and paste the boxes into the flowchart.

5 START END

6 Copy and paste them into the previous slide.
Pick the appropriate three of the following boxes that describe the algorithm as described. Copy and paste them into the previous slide. Read in A B = A*2 Print A Read in B B = A / 2 Print B Read in C B = A + 2 Print C

7 Exercise #2 We want to create a flowchart that reads in a number, and checks if it is odd or even. On the next slide is a flowchart with some blacked out boxes. On the following slide is a number of potential boxes you could use to correctly implement the algorithm. Copy and paste the boxes into the flowchart.

8 START END No Read in A Yes

9 Does A/2 give a remainder?
Pick the appropriate three of the following boxes that describe the algorithm as described. Copy and paste them into the previous slide. Is A > B? Read B Print “It’s Even” Does A/2 give a remainder? Print “It’s Odd” Print A /2 Is A = = B? Read C Print “I dunno”

10 Exercise #3 We want to create a flowchart that prints out the biggest of three inputted numbers. On the next slide is a flowchart with some blacked out boxes. On the following slide is a number of potential boxes you could use to correctly implement the algorithm. Copy and paste the boxes into the flowchart.

11 START END A>B? No Read in A, B and C Yes

12 Copy and paste them into the previous slide.
Pick the appropriate three of the following boxes that describe the algorithm as described. Copy and paste them into the previous slide. B<C? B>C? Print A A<C? A>C? Print B A<B? A>B? Print C

13 Exercise #4 We want to create a flowchart that prints out the word “Honour” is the number input is 70, if the number is less than 40 print out the word “Fail”, otherwise print out the word “Pass”. On the next slide is a flowchart with some blacked out boxes. On the following slide is a number of potential boxes you could use to correctly implement the algorithm. Copy and paste the boxes into the flowchart.

14 START END No Read in A Yes

15 Copy and paste them into the previous slide.
Pick the appropriate three of the following boxes that describe the algorithm as described. Copy and paste them into the previous slide. A < 70? A > 70? Print “Honour” A < 40? A > 40? Print “Fail” A > Pass? A > Honour? Print “Pass”

16 Exercise #5 We want to create a flowchart that prints out the average value of five numbers input in. On the next slide is a flowchart with some blacked out boxes. On the following slide is a number of potential boxes you could use to correctly implement the algorithm. Copy and paste the boxes into the flowchart.

17 START END No A = 1 Yes Total = 0 A = A + 1

18 Copy and paste them into the previous slide.
Pick the appropriate three of the following boxes that describe the algorithm as described. Copy and paste them into the previous slide. Is A==6? Is A==5? Is A==0? Print Total Print Total / 5 Print Total++ Total = X Total = Total Total = Total + X Read in A Read in Total Read in X

19 Exercise #6 We want to create a flowchart that allows a user to input a number and the program checks if that number is an element in an array, if it is we print “Found”, if not we print “Not Found”. On the next slide is a flowchart with some blacked out boxes. On the following slide is a number of potential boxes you could use to correctly implement the algorithm. Copy and paste the boxes into the flowchart.

20 START END No Read in A Yes

21 Copy and paste them into the previous slide.
Pick the appropriate three of the following boxes that describe the algorithm as described. Copy and paste them into the previous slide. Current = First Item Current = Next Item Current = Last Item Current == A? Current == Middle? Current == EndofList? Print “Maybe Found” Print “Not Found” Print “Found”


Download ppt "Lab #6 Program Design."

Similar presentations


Ads by Google