Game Preview

Algorithms

  •  English    18     Public
    Algorithms and Programming
  •   Study   Slideshow
  • ................ is a steps you follow to solve a problem; commonly used to help plan programs
    Algorithm
  •  15
  • ...............is a method used to breakdown problems into subproblems and smaller parts.
    Decomposition
  •  15
  • ................... is writing code to solve a computing problem, so a computer can perform specific tasks
    Programming
  •  15
  • ....................is a place used in a program to store data that can change
    Variable
  •  15
  • “Coding is the language of the modern era. Our goal is to teach it to one million young Arabs, in order to prepare them now for the requirements needed to excel in the future.” Who said this saying?
    Sheikh Mohammed bin Rashid Al Maktoum
  •  15
  • Most programming problems involve three key elements these are: ....................
    input, processing and output.
  •  15
  • Two names for the information that is not processed yet: ................
    raw information or data
  •  15
  • Imagine that a simple addition of "result = 1 + 1" is a problem. Decompose it into three subproblems: .............
    Input the numbers Process the numbers • Output the result
  •  15
  • Imagine that a simple addition of "result = 1 + 1" is a problem. Decompose it into three subproblems: .............
    1. Input the numbers. 2. Process the numbers. 3.Output the result
  •  15
  • There are many techniques that can be used to create algorithms. Some techniques to create algorithms include: ........................
    Pseudocode, Flowcharts and Decision trees.
  •  15
  • ................. are the one technique that you can use to create algorithms. When using this technique, each instruction is written like text- based programming code but without using the syntax and grammar rules of actual code.
    Pseudocode instructions
  •  15
  • These are the data used in programming instructions: ............
    operands
  •  15
  • These are used to tell the computer what to do with the data in instructions. Operators are used for input, output, mathematical calculations and logical comparisons: .................
    operators
  •  15
  • The data type is used to tell the computer what to do with the data in instructions. Operators are used for input, output, mathematical calculations and logical comparisons: ..............
    String
  •  15
  • The datatype that is used for whole numbers: .............
    integer
  •  15
  • The datatype that is used for decimal numbers: ..................
    Float
  •  15