CMP 131 Introduction to Computer Programming

Slides:



Advertisements
Similar presentations
Dr. Ken Hoganson, © August 2014 Programming in R COURSE NOTES 2 Hoganson Language Translation.
Advertisements

Lecture 1: Overview of Computers & Programming
Systems Software.
Programming Types of Testing.
Slides prepared by Rose Williams, Binghamton University Chapter 1 Getting Started 1.1 Introduction to Java.
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with Programming Logic & Design First Edition by Tony Gaddis.
1 Lecture 1  Getting ready to program  Hardware Model  Software Model  Programming Languages  The C Language  Software Engineering  Programming.
Chapter 2: Impact of Machine Architectures What is the Relationship Between Programs, Programming Languages, and Computers.
CMP 131 Introduction to Computer Programming Violetta Cavalli-Sforza Week 1, Lab.
Principles of Programming Chapter 1: Introduction  In this chapter you will learn about:  Overview of Computer Component  Overview of Programming 
Computer Programming-1 CSC 111 Chapter 1 : Introduction.
1 Chapter-01 Introduction to Computers and C++ Programming.
CCSA 221 Programming in C CHAPTER 2 SOME FUNDAMENTALS 1 ALHANOUF ALAMR.
© Janice Regan, CMPT 128, Jan CMPT 128 Introduction to Computing Science for Engineering Students Creating a program.
Systems Software & Operating systems
Technology in Action Chapter 10 Behind the Scenes: Software Programming Copyright © 2014 Pearson Education, Inc. Publishing as Prentice Hall.
An intro to programming. The purpose of writing a program is to solve a problem or take advantage of an opportunity Consists of multiple steps:  Understanding.
Tranlators. Machine Language The lowest-level programming languageprogramming language Machine languages are the only languages understood by computers.languagescomputers.
CISC105 General Computer Science Class 1 – 6/5/2006.
1 Programming Languages Tevfik Koşar Lecture - II January 19 th, 2006.
Chapter 1 Section 1.1 Introduction to Java Slides prepared by Rose Williams, Binghamton University Kenrick Mock, University of Alaska Anchorage.
Unit-1 Introduction Prepared by: Prof. Harish I Rathod
1 Lecture 2 : Computer System and Programming. Computer? a programmable machine that  Receives input  Stores and manipulates data  Provides output.
Chapter 1 Introduction Chapter 1 Introduction 1 st Semester 2015 CSC 1101 Computer Programming-1.
Basic of Programming Language Skill Area Computer System Computer Program Programming Language Programmer Translators.
CHAPTER 1 INTRODUCTION 1 st Semester H King Saud University College Of Applied Studies and Community Services CSC 1101 Computer Programming-1.
CHAPTER 1 INTRODUCTION 2 nd Semester H King Saud University College Of Applied Studies and Community Services CSC 1101 Computer Programming-1.
Chapter 4 Software. Chapter 4: Software Generations of Languages Each computer is wired to perform certain operations in response to an instruction. An.
Computer and Programming. Computer Basics: Outline Hardware and Memory Programs Programming Languages and Compilers.
Lecture (8) Programming Design Dr. Emad Elsharkawy Eng- Omar Salah Dr:Emad Elsharkawy 1 Saturday, 13 February 2016.
Chapter 1: Introduction to Visual Basic.NET: Background and Perspective Visual Basic.NET Programming: From Problem Analysis to Program Design.
Chapter 11  Getting ready to program  Hardware Model  Software Model  Programming Languages  Facts about C++  Program Development Process  The Hello-world.
1 Asstt. Prof Navjot Kaur Computer Dept PRESENTED BY.
نظام المحاضرات الالكترونينظام المحاضرات الالكتروني Computer Software.
Introduction to Computer Programming Concepts M. Uyguroğlu R. Uyguroğlu.
Some of the utilities associated with the development of programs. These program development tools allow users to write and construct programs that the.
Computer Software 1.
1 The user’s view  A user is a person employing the computer to do useful work  Examples of useful work include spreadsheets word processing developing.
Introduction to computer software. Programming the computer Program, is a sequence of instructions, written to perform a specified task on a computer.
Chapter 1 Introduction 2nd Semester H
Introduction to Computers
Topic 2: Hardware and Software
Basic Concepts: computer, program, programming …
DDC 2223 SYSTEM SOFTWARE DDC2223 SYSTEM SOFTWARE.
Advanced Computer Systems
Component 1.6.
Chapter 1 Introduction.
Introduction to Compiler Construction
Operating System Interface between a user and the computer hardware
Lecture 1 Introduction Richard Gesick.
CSCI-235 Micro-Computer Applications
COMPUTER ORGANIZATION & ASSEMBLY LANGUAGE
Computer System and Programming
ICS103 Programming in C Lecture 1: Overview of Computers & Programming
Chapter 1 Introduction.
A451 Theory – 7 Programming 7A, B - Algorithms.
Java programming lecture one
Unit# 8: Introduction to Computer Programming
TRANSLATORS AND IDEs Key Revision Points.
Translators & Facilities of Languages
Assembler, Compiler, Interpreter
Introduction to Computers
Computers: Hardware and Software
Topics Introduction Hardware and Software How Computers Store Data
Introduction CSC 111.
King Saud University College Of Applied Studies and Community Services CSC 1101 Computer Programming-1 Done By: Asmal Alosaimi Edited By: Fatimah Alakeel.
Low Level Programming Languages
Assembler, Compiler, Interpreter
King Saud University College Of Applied Studies and Community Services CSC 1101 Computer Programming-1 Done By: Asmal Alosaimi Edited By: Fatimah Alakeel.
Programming language translators
Presentation transcript:

CMP 131 Introduction to Computer Programming Violetta Cavalli-Sforza Week 1, Lab

Outline of Topics Hardware/Software interface Computer Languages Layers of the Machine Kinds of Software Computer Languages Syntax, Semantics, Grammars What happens to your program? Compilation, Linking, Execution Program errors Compilation vs. Interpretation etc.

Software Categories System SW Application SW Programs written for computer systems Compilers, operating systems, … Application SW Programs written for computer users Word-processors, spreadsheets, & other application packages

A Layered View of the Computer Application Programs Word-Processors, Spreadsheets, Database Software, IDEs, etc… System Software Compilers, Interpreters,Preprocessors, etc. Operating System, Device Drivers Machine with all its hardware

Operating System (OS) Provides several essential services: Loading & running application programs Allocating memory & processor time Providing input & output facilities Managing files of information

Programs Programs are written in programming languages A PL is PL = programming language Pieces of the same program can be written in different PLs Languages closer to the machine can be more efficient As long as they agree on how to communicate A PL is A special purpose and limited language A set of rules and symbols used to construct a computer program A language used to interact with the computer

Computer Languages Machine Language Assembly Language Uses binary code Machine-dependent Not portable Assembly Language Uses mnemonics Not usually portable High-Level Language (HLL) Uses English-like language Machine independent Portable (but must be compiled for different platforms) Examples: Pascal, C, C++, Java, Fortran, . . .

Machine Language The representation of a computer program which is actually read and understood by the computer. A program in machine code consists of a sequence of machine instructions. Instructions: Machine instructions are in binary code Instructions specify operations and memory cells involved in the operation Example: Operation Address 0010 0000 0000 0100 0100 0000 0000 0101 0011 0000 0000 0110

Assembly Language A symbolic representation of the machine language of a specific processor. Is converted to machine code by an assembler. Usually, each line of assembly code produces one machine instruction (One-to-one correspondence). Programming in assembly language is slow and error-prone but is more efficient in terms of hardware performance. Mnemonic representation of the instructions and data Example: Load Price Add Tax Store Cost

High-level language A programming language which use statements consisting of English-like keywords such as "FOR", "PRINT" or “IF“, ... etc. Each statement corresponds to several machine language instructions (one-to-many correspondence). Much easier to program than in assembly language. Data are referenced using descriptive names Operations can be described using familiar symbols Example: Cost := Price + Tax

Syntax & Semantics Syntax: Semantics: The structure of strings in some language. A language's syntax is described by a grammar. Examples: Binary number <binary_number> = <bit> | <bit> <binary_number> <bit> = 0 | 1 Identifier <identifier> = <letter> {<letter> | <digit> } <letter> = a | b | . . . | z <digit = 0 | 1 | . . . | 9 Semantics: The meaning of the language

Syntax & Grammars Syntax descriptions for a PL are themselves written in a formal language. E.g. Backus-Naur Form (BNF) The formal language is not a PL but it can be implemented by a compiler to enforce grammar restrictions. Some PLs look more like grammar descriptions than like instructions.

Compilers & Programs Compiler A program that converts another program from some source language (or high-level programming language / HLL) to machine language (object code). Some compilers output assembly language which is then converted to machine language by a separate assembler. Is distinguished from an assembler by the fact that each input statement, in general, correspond to more than one machine instruction.

Compilation into Assembly L Assembly Language Source Program Compiler Assembly Language Machine Language Assembler Instead of to ML Facilitates debugging Isolates compiler from changes in format of ML (new OS) Only assembler must be changed!

Compilers & Programs Source program The form in which a computer program, written in some formal programming language, is written by the programmer. Can be compiled automatically into object code or machine code or executed by an interpreter. Pascal source programs have extension ‘.pas’

Compilers & Programs Object program Executable program Output from the compiler Equivalent machine language translation of the source program Files usually have extension ‘.obj’ Executable program Output from linker/loader Machine language program linked with necessary libraries & other files Files usually have extension ‘.exe’

What is a Linker? A program that pulls other programs together so that they can run. Most programs are very large and consist of several modules. Even small programs use existing code provided by the programming environment called libraries. The linker pulls everything together, makes sure that references to other parts of the program (code) are resolved.

Running Programs Steps that the computer goes through to run a program: Memory Machine language program (executable file) C P U Input Data Data entered during execution Computed results Program Output

Program Execution Steps taken by the CPU to run a program (instructions are in machine language): Fetch an instruction Decode (interpret) the instruction Retrieve data, if needed Execute (perform) actual processing Store the results, if needed

Program Errors Syntax Errors: Runtime error: Logical errors: Errors in grammar of the language Runtime error: When there are no syntax errors, but the program can’t complete execution Divide by zero Invalid input data Logical errors: The program completes execution, but delivers incorrect results Incorrect usage of parentheses

Compilation Source Program Target Program Compiler Target Program Input Output Compiler translates source into target (a machine language program) Compiler goes away at execution time Compiler is itself a machine language program, presumably created by compiling some other high-level program Machine language, when written in a format understood by the OS is object code

Interpretation The interpreter stays around during execution Source Program Interpreter Output Input The interpreter stays around during execution It reads and executes statements one at a time

Compilation vs. Interpretation Syntax errors caught before running the program Better performance Decisions made once, at compile time Interpretation: Better diagnostics (error messages) More flexibility Supports late binding (delaying decisions about program implementation until runtime) Can better cope with PLs where type and size of variables depend on input Supports creation/modification of program code on the fly (e.g. Lisp, Prolog)

Mixture of C & I Many programming languages implement this Source Program Intermediate Program Translator Intermediate Program VM Output Input Many programming languages implement this Interpreter implements a Virtual Machine (VM).

JAVA For portability: Compiler Java bytecode Interpreter ML For flexibility: Just In Time (JIT) compiler translates bytecode into ML just before execution

Homework/Contact While I’m learning to use the folder stuff, by tomorrow some time you will be able to find slides from this week attached to http://www.cs.cmu.edu/~violetta/ Look for the link to IIHEM at the bottom of the page. Read Chapter 1, Sections 1 & 2 of your textbook carefully. Think of 3 tasks you have encountered in your studies that you would like to write a program for. Send them mail to me, and questions you might have at: violetta_rabat@yahoo.fr