Sequencing The most simple type of program uses sequencing, a set of instructions carried out one after another. Start End Display “Computer” Display “Science”

Slides:



Advertisements
Similar presentations
COMPUTER PROGRAMMING Task 1 LEVEL 6 PROGRAMMING: Be able to use a text based language like Python and JavaScript & correctly use procedures and functions.
Advertisements

Alford Academy Business Education and Computing1 Advanced Higher Computing Based on Heriot-Watt University Scholar Materials File Handling.
1 CSI 101 Elements of Computing Fall 2009 Lecture #4 Using Flowcharts Monday February 2nd, 2009.
Programming Introduction November 9 Unit 7. What is Programming? Besides being a huge industry? Programming is the process used to write computer programs.
Programming Logic and Design, Introductory, Fourth Edition1 Understanding Computer Components and Operations (continued) A program must be free of syntax.
Sequencing Miss Regan. Blood Hound  Does anyone know what the Bloodhound project is?  Video 1 Video 1  Video 2 Video 2  Link to website Link to website.
Chapter Seven Advanced Shell Programming. 2 Lesson A Developing a Fully Featured Program.
Using the Multiple Choice Template Copy this presentation to your hard drive. Open up slide sorter, copy slides #3, 4, and 5 each time you are going to.
Noadswood Science,  To know the basics of Python coding and decoding Monday, September 07, 2015.
Topics Introduction Hardware and Software How Computers Store Data
Flowchart IDT. What is a flowchart? Visual representation of a flow of data Outline of process or a solution to a problem Outline the basic logic behind.
® Microsoft Access 2010 Tutorial 11 Using and Writing Visual Basic for Applications Code.
General Programming Introduction to Computing Science and Programming I.
Sorting and Modules. Sorting Lists have a sort method >>> L1 = ["this", "is", "a", "list", "of", "words"] >>> print L1 ['this', 'is', 'a', 'list', 'of',
PYTHON: PART 2 Catherine and Annie. VARIABLES  That last program was a little simple. You probably want something a little more challenging.  Let’s.
Python Programming Using Variables and input. Objectives We’re learning to build functions and to use inputs and outputs. Outcomes Build a function Use.
Type accurately challenge! This is a starter activity and should take 2 minutes [ slide 1 ] 1.Can you type out the code in Code Box 2.1 with no errors.
Lesson 4 Using Variables in Python – Creating a Simple ChatBot Program.
Lesson 6. Python 3.3 Objectives. In this lesson students will learn how to output data to the screen and request input from the user. Students will also.
Variables When programming it is often necessary to store a value for use later on in the program. A variable is a label given to a location in memory.
Chapter 2 part #1 C++ Program Structure
Python Selection. All the programs you have been developing so far have been sequential, this means that each instruction is executed in a set order.
Use Flowchart modeling to design and create an interactive quiz to be run on Powerpoint. Start Question Click to start the quiz Correct Incorrect, try.
Fundamentals of Algorithms MCS - 2 Lecture # 5. Representation of Algorithms (continued) Flowcharts.
Files Tutor: You will need ….
PROGRAMMING IN PYTHON LETS LEARN SOME CODE TOGETHER!
Python Lesson 1 1. Starter Create the following Excel spreadsheet and complete the calculations using formulae: 2 Add A1 and B1 A2 minus B2 A3 times B3.
2c – Textboxes and Buttons Lingma Acheson Department of Computer and Information Science, IUPUI CSCI N331 VB.NET Programming.
Introduction to Programming Python Lab 5: Strings and Output 05 February PythonLab5 lecture slides.ppt Ping Brennan
Introduction to Programming
Flowcharts. Learning Objectives To learn how to break down tasks How to create a flowchart.
IPC144 Session 4 Flowcharts 1. Objectives: By the end of this session, the student will be able to: List the three elements of the Structure Theorem Identify.
COMPREHENSIVE Access Tutorial 11 Using and Writing Visual Basic for Applications Code.
GCSE Computing: Programming GCSE Programming Remembering Python.
An Overview of the Energy Reduction Calculator.  Calculates reduction in emissions for a facility Emissions computed are Carbon Dioxide, Sulfur Dioxide,
Learning Objective To be able to… Understand flow chart symbols Complete and correct flow chart algorithms Create a program based on a flow chart.
ICS124 Session 9 Flowcharting 1. By the end of this section the student will be able to:  Name the three structures of the Structure Theorem  Identify.
IPC144 Session 4 Flowcharts 1. Objectives: By the end of this session, the student will be able to: List the three elements of the Structure Theorem Identify.
CS 101 – Oct. 7 Solving simple problems: create algorithm Structure of solution –Sequence of steps (1,2,3….) –Sometimes we need to make a choice –Sometimes.
Introduction to Programming Python Lab 8: Loops 26 February PythonLab8 lecture slides.ppt Ping Brennan
Getting Started With Python Brendan Routledge
Flow Charts And Pseudo Codes Grade 12. An algorithm is a complete step-by- step procedure for solving a problem or accomplishing a task.
Introducing Python 3 Introduction to Python. Introduction to Python L1 Introducing Python 3 Learning Objectives Know what Python is and some of the applications.
Lesson 1 Sequencing.
GCSE COMPUTER SCIENCE Practical Programming using Python Lesson 4 - Selection.
Programming – Algorithms (Flowcharts)
GCSE COMPUTER SCIENCE Practical Programming using Python
what is computer programming?
Lesson 1 - Sequencing.
Lesson 4 - Challenges.
Lesson 1 An Introduction
This shows the user interface and the SQL Select for a situation with two criteria in an AND relationship.
Introduction to Programming
Print slides for students reference
Algorithms Y10 Introduction.
Week 1 Computer Programming Year 9 – Unit 9.04
For -G7 programing language Teacher / Shamsa Hassan Alhassouni.
Using AMOS With SPSS Files.
Task 1 Computer Programming LEVEL 6 PROGRAMMING:
A look at Small basic The Text Window 2017.
12th Computer Science – Unit 5
Assessment Instruction
Input and Output Python3 Beginner #3.
Data Types Every variable has a given data type. The most common data types are: String - Text made up of numbers, letters and characters. Integer - Whole.
WJEC GCSE Computer Science
Hardware is… Software is…
PYTHON - VARIABLES AND OPERATORS
Presentation transcript:

Sequencing The most simple type of program uses sequencing, a set of instructions carried out one after another. Start End Display “Computer” Display “Science” Display “Rocks”

Flowcharts Flowcharts are used to plan programs before they are created. The start or end of the program. There may be more than one way to complete the algorithm and there may be more than one end box. A process, that is doing something for example calculating something. An input or output, for example: Input num1 A decision, YES or NO, or a choice of paths, for example: Is it a weekday? A subroutine or self-contained program that can be used as required. When a flowchart will not fit onto a single page we use this shape to show how the sections of the flowchart connect together.

Strings In programming we usually call normal text a string. A string is a collection of alphabetic and/or numeric characters. We tell the computer something is a string by putting quote marks around it. “What’s your name?”

Sequencing Start End Match the Python code to the correct part of the flowchart. Display “Computer” Display “Science” Display “Rocks”

Python Open the Python IDLE. Start a new program by clicking on File > New File. Enter the code from the previous slide. Save your program as sequencing.py and press F5 to run it.