Structural Programming IS1113 Weeks 011 Introduction to Computer

  • Slides: 32
Download presentation
Structural Programming IS-1113 Weeks – 01/1 Introduction to Computer Programming and Problem Solving

Structural Programming IS-1113 Weeks – 01/1 Introduction to Computer Programming and Problem Solving

Introduction Lecturer Name : Rian F. Umbara, S. Si, M. Si Class Rules: Attendance:

Introduction Lecturer Name : Rian F. Umbara, S. Si, M. Si Class Rules: Attendance: min 80 % Late Tolerance: 15 minutes Do not cheat Do not open the internet without permission 1 1

Referensi 1. 2. 3. 4. 5. A Guide to Programming Logic & Design, Farrel,

Referensi 1. 2. 3. 4. 5. A Guide to Programming Logic & Design, Farrel, Joyce, Course Technology Downey, Allen B. How to think like Computer Scientist, Open Source Textbook, Waterville, 1999 Felleisen, Mathias, Findler, Robert B. Flatt Mathew, Khrismurthi : How to Design Program : An Introduction to programming and computing, MIT Press, London Handbook Poltek Other Books 2

Description An Introduction to algorithm and data structures, program development life cycle, logic diagram,

Description An Introduction to algorithm and data structures, program development life cycle, logic diagram, basic control structures (seq, if-else, repetitive) in the frame work of structural programming using Pascal as the programming language. This course also introduce various levels in programming language for solving problems 3

Learning Objectives Upon to successful completion of the course student have : 1. Ability

Learning Objectives Upon to successful completion of the course student have : 1. Ability to solve problems by writing algorithms in a structured way; 2. Good understanding about data types such as numeric, alphabetic, character and Boolean; 3. Fundamental computer programming and the Pascal language; 4. Good concept of arrays and use of arrays; 5. Ability in using Functions and their benefit in modular decomposition; 6. Good concept in String manipulation (parsing) 7. Good understanding about User defined data type (record) 8. Good concept in advanced data structures (linked table or stack) 4

Scoring Test : Mid Final Pre test Post test Task : : 25 %

Scoring Test : Mid Final Pre test Post test Task : : 25 % 40 % : : : 10 % 15 % 5

Chapter 1 Introduction

Chapter 1 Introduction

Objectives In this lesson, you will learn about: Defining how computer works electronically System

Objectives In this lesson, you will learn about: Defining how computer works electronically System Component : Input, Process, and Output Defining levels of programming language Define wahat ‘program’ is Brief introduction in software engineering Using flowchart as a design tool Using Pseudocode as design tool 7 7

Overview of computers A computer is a collection of several electronic components that work

Overview of computers A computer is a collection of several electronic components that work together to process instructions provided by a user. You can use computers to: Solve complicated mathematical problems. Process large amounts of information without errors. Automate day-to-day transactions. This reduces the number of people required to perform a particular task. Send e-mail messages to people across the world. Play games and indulge in recreational activities. 8 8

Computer Programming ? Computers do what we tell them to do, NOT what we

Computer Programming ? Computers do what we tell them to do, NOT what we want them to do Computer Programming involves writing instructions and giving them to the computer to complete a task. 9 9

Hardware Components of a Computer • • Hardware components are the physical components of

Hardware Components of a Computer • • Hardware components are the physical components of a computer. Following are the hardware components of a computer: • Input Devices • Output Devices • Processing Device • Storage Devices 10 10

HARDWARE 11 11

HARDWARE 11 11

SOFTWARE 12 12

SOFTWARE 12 12

Problem Solving Analysis Problem specification Design Algorithm Implementation Program Compilation Executable (solution) 13 13

Problem Solving Analysis Problem specification Design Algorithm Implementation Program Compilation Executable (solution) 13 13

What is a (computer) program ? A program is a sequence of instructions that

What is a (computer) program ? A program is a sequence of instructions that specifies how to perform a computation. The instructions (or commands, or statements) look different in different programming languages 14 14 Source : //OOPWeb. com : How To Think Like A Computer Scientist Learning with C++ by Allen B_ Downey

What Is Programming ? the act of creating software or some other set of

What Is Programming ? the act of creating software or some other set of instructions for a computer. (cyber. law. harvard. edu/readinessguide/glossary. html) The extrusion of a parison which differs in thickness in the length direction in order to equalize wall thickness of the blown container. . (www. all-pak. com/plasticgloss. asp) is the process of writing a sequence of instructions to be excuted by a computer to solve a problem. It is also considered as the act of writing computer programs. Computer programs are set of instructions that tell a computer to perform certain operations. . (hubpages. com/hub/Concepts-and-Principles-of-Programming ) A system in which specific requirements of the client are determined in written form and, when approved by the client, become the basis for all future planning. The effects of successful programming will be felt by the client as long as he or she lives with the facility executed. . (www. officespacefinder. co. uk/officespacegloss 2. html ) 15 15

Programming Language A programming language is an artificial language that can be used to

Programming Language A programming language is an artificial language that can be used to write programs which control the behavior of a machine, particularly a computer Programming languages are defined by syntactic and semantic rules which describe their structure and meaning respectively Thousands of different programming languages have been created so far, and new languages are created every year 16 16

Who Is a Programmer ? A programmer is a person who writes the required

Who Is a Programmer ? A programmer is a person who writes the required computer programs. Programmers translate the expected tasks given in human understandable form into machine understandable form by using compilers and interpreters. 17 17

Input and Output Normally, a computer received two kinds of input: the program the

Input and Output Normally, a computer received two kinds of input: the program the data needed by the program. The output is the result(s) produced by following the instructions in the program 18 18

Running Program 19 19

Running Program 19 19

Programming Languages A language is a means of communication between people. A programmer writes

Programming Languages A language is a means of communication between people. A programmer writes a set of instructions in a programming language to instruct the computer to perform a task. This set of instructions is called a program. 20 20

Levels of Programming Languages Programming languages can be classified into three broad categories :

Levels of Programming Languages Programming languages can be classified into three broad categories : • Machine Language • Assembly Language • High-level Language 21 21

Programming Languages Machine Language 0000100100010100 001110010000 000100010110 Assembly Language LDA TIME ADA INC MUL

Programming Languages Machine Language 0000100100010100 001110010000 000100010110 Assembly Language LDA TIME ADA INC MUL VEL STA POS High-level Language A = B * (C + D) 22 22

Basic Functions There a few basic functions that appear in just about every language:

Basic Functions There a few basic functions that appear in just about every language: input Get data from the keyboard, or a file, or some other device. output Display data on the screen or send data to a file or other device. math Perform basic mathematical operations like addition and multiplication. testing Check for certain conditions and execute the appropriate sequence of statements. repetition Perform some action repeatedly, usually with some variation. 23 23

Compiler & Interpreter Compiler is a specific software that gets the whole Source Code

Compiler & Interpreter Compiler is a specific software that gets the whole Source Code (Computer program written in human understandable form) and translates it into Object Code (Computer Program that is in machine understandable form) all at a time. Interpreter is translating and executing one statement (command of Computer Program) of Source Code into Object Code at a time. (It means, interpreters translate and execute computer programs line by line). 24 24

Compiler • To execute a program written in a high-level language • A computer

Compiler • To execute a program written in a high-level language • A computer needs translation software called a compiler • A compiler is language-specific, and each high-level language has its own compiler. 25 25

Interpreter • • Some high-level languages use a different type of translator program called

Interpreter • • Some high-level languages use a different type of translator program called an interpreter. An interpreter takes a high-level language instruction, converts it to a machine language instruction, executes it and does not save the object code. 26 26

Executing Program Using Compiler: Source Code Compiler Execute Program Using Interpreter: Source Code Object

Executing Program Using Compiler: Source Code Compiler Execute Program Using Interpreter: Source Code Object Code Interpreter Execute a line of Program 27 27

Algorithms An algorithm is a sequence of steps required to accomplish a task. The

Algorithms An algorithm is a sequence of steps required to accomplish a task. The steps can be categorized into the following three phases: Input phase Process phase Output phase 28

Program Design Tool Flowchart : the graphical representation of algorithms Pseudocode : Pseudocode represents

Program Design Tool Flowchart : the graphical representation of algorithms Pseudocode : Pseudocode represents an algorithm in English language. 29

Representing Algorithm 1 (Program Design Tool) • • A flowchart consists of symbols, which

Representing Algorithm 1 (Program Design Tool) • • A flowchart consists of symbols, which represent the steps or stages in an algorithm. The different symbols used in a flowchart are Flow line Input/Output On Page Connector Process Decision Off Page Connector Procedure/ Subroutine Start and Stop prepa ration 30 30

Representing Algorithm 2 Pseudocode • Pseudocode is used as an alternative to a flowchart.

Representing Algorithm 2 Pseudocode • Pseudocode is used as an alternative to a flowchart. • The statements used in pseudocode are simple and written in a sequential manner. • There a number of keywords used in pseudocode: • Dictionary • begin…end • Accept (Read/Input) • Display (write/Output) • if…then-else 31 31