Computers & Programming Languages

Slides:



Advertisements
Similar presentations
Chapter 4 Ch 1 – Introduction to Computers and Java Flow of Control Loops 1.
Advertisements

PROBLEM SOLVING TECHNIQUES
3.1.3 Program Flow control_1 Understand the need for structure Breaking things down.
Prof. B. I. Khodanpur HOD – Dept. of CSE R. V. College of Engineering
ME 142 Engineering Computation I Fundamentals of Procedural Computer Programming.
Flow Chart.
Chapter 2- Visual Basic Schneider
INTRODUCTION COMPUTATIONAL MODELS. 2 What is Computer Science Sciences deal with building and studying models of real world objects /systems. What is.
Chapter 3 Planning Your Solution
CHAPTER 4: ALGORITHM 4.1 Introduction stages identified in the program development process: 1. Problem analysis and specification 2. Data organization.
Chapter 3 Planning Your Solution
Review Algorithm Analysis Problem Solving Space Complexity
Programming Logic and System Analysis
Fundamentals of C programming
PROGRAMMING, ALGORITHMS AND FLOWCHARTS
Design the program Create a detailed description of program –Use charts or ordinary language (pseudocode) Identify algorithms needed –Algorithm: a step-by-step.
3-4 Lesson 3-4 Example 1 Use the formula A = ℓ w to solve for ℓ, length. The area of the rectangle is 72 square yards. Its width is 9 yards. What is the.
Describe the Program Development Cycle. Program Development Cycle The program development cycle is a series of steps programmers use to build computer.
Extended Prelude to Programming Concepts & Design, 3/e by Stewart Venit and Elizabeth Drake Chapter 2: Flowcharts.
Software Life Cycle What Requirements Gathering, Problem definition
IXA 1234 : C++ PROGRAMMING CHAPTER 1. PROGRAMMING LANGUAGE Programming language is a computer program that can solve certain problem / task Keyword: Computer.
ALGORITHMS AND FLOWCHARTS CSCI 105 – Computer Fluency.
Definition of Terms Software/Programs Programs that directs the operation of a computer system Set of instructions Codes Programming Process of planning,
Program Planning and Design. What is Program Planning and Design? Program planning and design is simply knowing what you want to do and how you want to.
PROGRAM DEVELOPMENT CYCLE. Problem Statement: Problem Statement help diagnose the situation so that your focus is on the problem, helpful tools at this.
1 Program Planning and Design Important stages before actual program is written.
Structured Programming (4 Credits)
Visual Basic Flowcharts October 10, Turn in your vocabulary words before you leave!
Chapter 2- Visual Basic Schneider1 Chapter 2 Problem Solving.
Flowcharts C++ Lab. Algorithm An informal definition of an algorithm is: a step-by-step method for solving a problem or doing a task. Input data A step-by-step.
Flow Charts WHAT ARE THEY AND WHY DO WE USE THEM?.
MIT App Inventor Lesson 3 Algorithms Variables Procedures.
Problem Solving.  Similar to Solving Math Word Problem  Read the Problem  Decide how to go about Solving the Problem  Solve the Problem  Test the.
How Computers Solve Problems Computers also use Algorithms to solve problems, and change data into information Computers can only perform one simple step.
Introduction to Problem Solving Programming is a problem solving activity. When you write a program, you are actually writing an instruction for the computer.
Flow Charts And Pseudo Codes Grade 12. An algorithm is a complete step-by- step procedure for solving a problem or accomplishing a task.
 Problem Analysis  Coding  Debugging  Testing.
Program design Program Design Process has 2 phases:
Learning outcomes 5 Developing Code – Using Flowcharts
ICS 3UI - Introduction to Computer Science
GC101 Introduction to computers and programs
MANUPLATION OF FLOWCHARTS
Lesson 2 Flowcharting.
Unit 3: ALGORITHMS AND FLOWCHARTS
Chapter One Problem Solving
Chapter 2- Visual Basic Schneider
FLOWCHARTS.
COVERED BASICS ABOUT ALGORITHMS AND FLOWCHARTS
CS111 Computer Programming
Computer Programming Flowchart.
Algorithms An algorithm is a sequence of steps written in the form of English phrases that specific the tasks that are performed while solving the problem.It.
Lecture 2 Introduction to Programming
Introduction to Algorithm – part 1
Algorithm Algorithm is a step-by-step procedure or formula or set of instruction for solving a problem Its written in English language or natural language.
Computational Thinking
Computational Thinking
Software Development Process
(Course Introduction)
Chapter 2- Visual Basic Schneider
Manipulation of Charts with Visual Basic
Chapter 1 Introduction(1.1)
CSC128 FUNDAMENTALS OF COMPUTER PROBLEM SOLVING
Chapter 2- Visual Basic Schneider
ME 142 Engineering Computation I
Click to add Text Computers & Instructions. Computers are given instructions in the form of computer programs that are created through the development.
ICT Gaming Lesson 2.
Introduction to Programming
Basic Concepts of Algorithm
WRITING AN ALGORITHM, PSEUDOCODE, AND FLOWCHART LESSON 2.
Introduction to Programming
Presentation transcript:

Computers & Programming Languages

Lesson2- Objectives Identify Program & Programming. Identify Algorithm. Identify Flowchart.

Activity 1 2 Minutes

Program & Programming What is the difference between the program and the programming ? Program is : a sequence of statements intended to accomplish a task. Programming is : a process of problem solving

Steps of Programming Process Design an algorithm Test your algorithm Use the program Analyze Problem Implement algorithm Algorithm??

Algorithm A set of steps that are followed in order to solve a problem or to complete a specific task.

Activity in your book P-149 2 Minutes

A graphical representation of an algorithm Flow Chart A graphical representation of an algorithm Selection Repetition Sequence

Flow Chart Symbols Example : Find Area of a Circle

Advantages of using flowchart: Communication Coding of the program Documentation Efficient Program Maintenance Effective Analysis

Activity in your book P-152

Challenge: Write an algorithm and design the flow chart for the following case: Mariam got a land in rectangle shape , with H height and W width and intended to sell the land by X price for single square meter . What will be the price of the land ?