Back to 课程

Computer Science GCES OCR

0% Complete
0/0 Steps
  1. Cpu Architecture Performance And Embedded Systems Ocr
    5 主题
  2. Primary And Secondary Storage Ocr
    6 主题
  3. Data Storage And Compression Ocr
    12 主题
  4. Networks And Topologies Ocr
    6 主题
  5. Wired And Wireless Networks Protocols And Layers Ocr
    6 主题
  6. Identifying And Preventing Threats To Computer Systems And Networks Ocr
    2 主题
  7. Operating Systems And Utility Software Ocr
    2 主题
  8. Ethical Legal Cultural And Environmental Impact Ocr
    2 主题
  9. Computational Thinking Searching And Sorting Algorithms Ocr
    3 主题
  10. Designing Creating And Refining Algorithms Ocr
    5 主题
  11. Programming Fundamentals And Data Types Ocr
    5 主题
  12. Additional Programming Techniques Ocr
    7 主题
  13. Defensive Design And Testing Ocr
    6 主题
  14. Boolean Logic Diagrams Ocr
    2 主题
  15. Programming Languages And Integrated Development Environments Ides Ocr
    3 主题
  16. The Exam Papers Ocr
    2 主题
  17. Structuring Your Responses Ocr
    3 主题
课 Progress
0% Complete

Exam code:J277

Inputs, Processes, & Outputs for a Problem

  • Applying algorithmic thinking leads to a set of precise step-by-step instructions that can solve a problem

  • To create an algorithm, the inputs, processes and outputs must be identified

What is an input?

  • An input is data or information being entered/taken into a program before it is processed in the algorithm

  • An input can come from a variety of sources, such as:

    • User – keyboard, mouse, controller, microphone

    • Sensors – temperature, pressure, movement

What is a process?

  • A process is a doing action performed in the algorithm that transforms inputs into the desired output. The central processing unit (CPU) executes the instructions that define the process

  • An example would be:

    • Comparing two numbers

    • Calculating an average

What is an output?

  • An output is the result of the processing in an algorithm and usually the way a user can see if an algorithm works as intended

  • An output can take various forms, such as:

    • Numbers – result of calculations

    • Text

    • Images

    • Actions – triggering events

Example 1 – Area of a shape

  • A user wants to write a program to calculate the area of a shape

Input

Process

Output

  • Length

  • Width

  • Length X width

  • Area

Example 2 – Average test score

  • A teacher wants to calculate the average mark achieved on a test amongst students in a class. The teacher needs to enter how many students in the class and for each students a score out of 50

Input

Process

Output

  • Number of students

  • Score per student

  • TotalScore = TotalScore + score per student

  • Average = TotalScore / Number of students

  • Average mark

Worked Example

A bus company offers a discount to passengers if they have a valid ‘student’ card or are over 65 years of age.

Identify all the inputs that will be required in an algorithm to solve this problem [2]

Answer

  • Student card (YES/NO)

  • Age (integer)

Responses

您的邮箱地址不会被公开。 必填项已用 * 标注