Table of Contents at a Glance

Size: px
Start display at page:

Download "Table of Contents at a Glance"

Transcription

1 Table of Contents at a Glance Preface... xix Chapter 1 What Is CL?... 1 Chapter 2 Control Language Command Names... 7 Chapter 3 Command Parameters Chapter 4 The IBM i User Interface Chapter 5 Creating CL Programs Chapter 6 The Structure of a CL Program Chapter 7 Declaring Program Variables Chapter 8 Manipulating Variables with the CHGVAR Command Chapter 9 CL Control Structures Chapter 10 Expressions Chapter 11 Controlling Workflow Chapter 12 Basic Error Handling Chapter 13 Passing Parameters Chapter 14 Retrieving and Changing External Attributes Chapter 15 Files and Data Areas Chapter 16 Advanced Message Handling Chapter 17 Advanced File Techniques Chapter 18 Advanced Command Prompting Chapter 19 Using IBM-Supplied APIs Chapter 20 Displaying and Changing Command Properties Chapter 21 Understanding the Job Log Chapter 22 Understanding the Integrated Language Environment Chapter 23 User-Defined Commands Chapter 24 Command Processing Programs Chapter 25 Advanced Command Facilities Appendix A The Most-Often-Used CL Commands Appendix B Program Development Tools Appendix C Program Testing and Debugging...551

2 vii Table of Contents [Italic type indicates a sidebar.] Preface...?? INTRODUCTION TO CONTROL LANGUAGE Chapter 1 What Is CL?...1 Chapter Overview... 1 What CL Is... 1 What CL Is Not... Controlling Workflow with CL... 3 CL Execution Environment and Restrictions... 3 An Introductory Program... 3 Chapter Summary... 4 Key Terms... 4 Review Questions... 5 Chapter 2 Control Language Command Names...7 Chapter Overview... 7 Verbs and Subjects... 7 Modifiers and Subject Phrases... 9 Command Aliases...11 Chapter Summary Key Terms Review Questions Chapter 3 Command Parameters...13 Chapter Overview Command Parameters Required and Optional Parameters Entering Parameters with Keyword Notation Entering Parameters with Positional Notation The Order of Parameters Positional Keyword Limits Using *N Mixing Keyword and Positional Notation Types of Command Parameters Parameter Special Values Qualified Values Value Lists...20 Complex Lists Chapter Summary... 21

3 viii Programming in RPG IV, Fourth Edition Key Terms Review Questions Exercises...22 Chapter 4 The IBM i User Interface...25 Chapter Overview The IBM i Menu System Command-Line Operations Command-Line Function Keys The Prompt Facility The Command Prompt Display Determining Allowable Values Command-Prompt Function Keys Additional Parameters Prompt Special Characters Finding the Right CL Command Using the CMD Menus Chapter Summary Key Terms Review Questions Exercises...47 BASIC CL PROGRAMMING Chapter 5 Creating CL Programs...49 Chapter Overview The Capabilities of CL Programs Using a Source Physical File How to Create a CL Program Adding a Source Member Using WDSc to Add a Source Member Using PDM to Add a Source Member Entering CL Commands into a Source Member Compiling the CL Source Using the CL Compiler CL Compiler Options CL Compiler Reports Analyzing Compiler Reports Diagnosing Compile-Time Errors Diagnosing Errors with WDSc Binding a Program Using a Shortcut CL and the Original Program Model...70 Chapter Summary Key Terms... 71

4 Contents ix Review Questions Programming Assignments Chapter 6 The Structure of a CL Program...77 Chapter Overview Entering CL Source Statements Free-Format Statement Entry Upper and Lower Case Blank Lines Keyword and Positional Notation Entering Program Comments Command Continuation (+ and ) Using Labels The Sections of a CL Source Member Program Information Section Program Linkage Section Declarations Section Procedure Section Putting It All Together Chapter Summary Key Terms Review Questions Programming Assignments Chapter 7 Declaring Program Variables...93 Chapter Overview What Is a Program Variable? How to Declare a Variable The DCL Command Naming Variables Specifying the Data Type Specifying the Variable Size Coding in Style...96 Initializing the Value of a Variable Assigning Values to *CHAR Variables Assigning Values to *LGL Variables Assigning Values to Numeric Variables Miscellaneous Rules for Initial Values Using DCL with Pointers Declaring Based Variables Declaring Defined Variables More DCL Examples The DCLF Command DCLF Examples...104

5 x Programming in RPG IV, Fourth Edition Chapter Summary Key Terms Review Questions Exercises Programming Assignments Chapter 8 Manipulating Variables with the CHGVAR Command Chapter Overview The CHGVAR (Change Variable) Command Using CHGVAR with Character Variables Using CHGVAR with Numeric Variables Using CHGVAR with Logical Variables Performing Data Conversion with CHGVAR Converting Numeric Data to Character Data Converting Character Data to Numeric Data Using a Variable to Specify VALUE Using an Arithmetic Expression to Specify VALUE Using a Character String Expression to Specify VALUE Using Built-In Functions Using %SUBSTRING Using %BINARY Using Built-In Functions in the Receiver Variable The DMPCLPGM Command Using Functions with Pointers Chapter Summary Key Terms Review Questions Exercises Programming Assignments Chapter 9 CL Control Structures Chapter Overview CL and Structured Programming The GOTO Command IF/ELSE Structure Nested IF Structures Using the ELSE Command Nested IF/THEN/ELSE Structures DO Groups SELECT/WHEN/OTHERWISE Structure Program Looping and Iteration DOWHILE Command DOUNTIL Command DOFOR Command Loops and Early Exits...143

6 Contents xi Using Subroutines The CALLSUBR Command Leaving a Subroutine Using a Return Value The DCLPRCOPT Command Chapter Summary Key Terms Review Questions Exercises Programming Assignments Chapter 10 Expressions Chapter Overview What Is an Expression? Using Arithmetic Expressions Arithmetic Order of Operations Using the %BIN Function Using Character String Expressions Using the %SST Function Using Relational Expressions Relational Operators Character Operands of Different Lengths Using Relational Expressions with the CHGVAR Command Using Logical Expressions Evaluating Logical Relationships Using Logical Variables and Logical Constants Using More Than Two Operands Expression Order of Evaluation Chapter Summary Key Terms Review Questions Exercises Programming Assignments Chapter 11 Controlling Workflow Chapter Overview Work Management Overview What Is a Job? What Is a Job Description? What Is a Job Queue? What Is a Library List? Executing Programs with the CALL Command ILE Considerations The Call Stack...178

7 xii Programming in RPG IV, Fourth Edition Executing Programs with the TFRCTL Command The RETURN Command High-Level Language Considerations Executing Commands in Batch Using SBMJOB The CMD Parameter of the SBMJOB Command Other SBMJOB Parameters Job Definition Parameters for SBMJOB Library List Parameters for SBMJOB SBMJOB Output Parameters Scheduling Parameters for SBMJOB The Self-Submitting Program Chapter Summary Key Terms Review Questions Exercises Programming Assignments Chapter 12 Basic Error Handling Chapter Overview Types of Errors Error Messages Message Files The CHKOBJ Command The MONMSG Command Command-Level MONMSG Program-Level MONMSG Mixing Command- and Program-Level MONMSGs Monitoring for Generic Messages Specifying Multiple MONMSG Commands Errors Within a MONMSG The Interactive Job Log Ignoring Error Messages Receiving Escape Message Text Chapter Summary Key Terms Review Questions Exercises Programming Assignments INPUT/OUTPUT IN A CL PROGRAM Chapter 13 Passing Parameters Chapter Overview What Are Parameters? Defining Parameters in a Called Program

8 Contents xiii Passing Constants to a Called Program Passing Character Constants Passing Logical Constants Passing Decimal Constants Passing Variables to a Called Program The Mechanics of Passing Variables Passing Parameters Using the TFRCTL Command Passing Parameters Using the SBMJOB Command Using Hexadecimal Notation Chapter Summary Key Terms Review Questions Exercises Programming Assignments Chapter 14 Retrieving and Changing External Attributes Chapter Overview Return Variables The RTVJOBA Command The CHGJOB Command System Values The RTVSYSVAL Command The CHGSYSVAL Command Categories of System Values Date/Time System Values System Control System Values245 Library List System Value Other System Values The RTVUSRPRF Command The CHGUSRPRF Command Other RTV Commands Date Conversion Using the CVTDAT Command Chapter Summary Key Terms Review Questions Exercises Programming Assignments Chapter 15 Files and Data Areas Chapter Overview Working with Files Database Files Display Files CL and SQL...259

9 xiv Programming in RPG IV, Fourth Edition File Existence Requirements for CL Data Description Specifications DDS for Physical Files DDS for Logical Files DDS for Display Files Files Without DDS CL File Processing The DCLF Command The SNDRCVF Command The SNDF Command The RCVF Command The WAIT and ENDRCV Commands CL OUTFILE Support Data Areas Creating and Deleting a Data Area Displaying a Data Area s Contents Retrieving the Contents of a Data Area Changing the Contents of a Data Area The Local Data Area Chapter Summary Data Queues Key Terms Review Questions Exercises Programming Assignments ADVANCED CL PROGRAMMING Chapter 16 Advanced Message Handling Chapter Overview Messages What Is a Message? Message Queues Types of Messages Commands Used to Send Messages The SNDMSG Command The SNDBRKMSG Command The SNDPGMMSG Command The SNDUSRMSG Command Receiving Messages The TOPGMQ Parameter RCVMSG Examples Removing Messages RMVMSG Examples Standard Error-Handling Routines

10 Contents xv Chapter Summary Key Terms Review Questions Exercises Programming Assignments Chapter 17 Advanced File Techniques Chapter Overview Using Files in a CL Program Using File Overrides Using the OVRDBF Command Using the DLTOVR Command Using the OVRPRTF Command Positioning Database Files Preopening Database Files Using OPNQRYF Using CPYFRMQRYF Chapter Summary Key Terms Review Questions Exercises Programming Assignments Chapter 18 Advanced Command Prompting Chapter Overview Reviewing the Prompt Facility Simple Command Prompting Selective Prompting Chapter Summary Key Terms Review Questions Exercises Programming Assignments Chapter 19 Using IBM-Supplied APIs Chapter Overview Introduction to APIs Using QCMD Using QUSCMDLN Using QCMDCHK Prompting with QCMDCHK Using QCMDEXC QCMDEXC and Call Levels Other APIs...358

11 xvi Programming in RPG IV, Fourth Edition ILE Bindable APIs Chapter Summary Key Terms Review Questions Exercises Programming Assignments Chapter 20 Displaying and Changing Command Properties Chapter Overview Displaying the Properties of a CL Command Changing the Properties of a CL Command Changing Parameter Default Values Changing IBM-Supplied Commands Chapter Summary Key Terms Review Questions Exercises Chapter 21 Understanding the Job Log Chapter Overview What Is a Job Log? The LOG Attribute Logging CL Commands Analyzing the Job Log Keeping a Lean Job Log Chapter Summary Key Terms Review Questions Exercises Programming Assignments Chapter 22 Understanding the Integrated Language Environment Chapter Overview What Is ILE? What Is a Procedure? What Is a Module? What Is a Program? Creating ILE Modules and Programs One-Step Program Creation Multiple-Module Programs Updating ILE Programs Adding Modules Calling ILE Programs and Procedures Calling ILE Procedures Using a Static Call

12 Contents xvii Using Service Programs Understanding Activation Groups Default Activation Group User-Named Activation Group System-Named Activation Group *CALLER Activation Group Option *ENTMOD Activation Group Option Activation Groups Made Easy Activation Groups and File Overrides Call Stack Level Scoping Activation Group Scoping Job Scoping ILE Error Handling ILE Error-Handling Tips Chapter Summary Key Terms Review Questions Exercises Programming Assignments CREATING YOUR OWN COMMANDS Chapter 23 User-Defined Commands Chapter Overview Why Commands? The Components of a Command Command Definition Statements The CMD Statement The PARM Statement The QUAL Statement Other Command Definition Statements The CRTCMD Command Chapter Summary Key Terms Review Questions Exercises Programming Assignments Chapter 24 Command Processing Programs Chapter Overview Writing a Command Processing Program Parameters in the CPP Analyzing the CPP Processing List Parameters in the CPP Using QCMDEXC as a CPP

13 xviii Control Language Programming for IBM i, Third Edition Chapter Summary Key Terms Review Questions Exercises Programming Assignments Chapter 25 Advanced Command Facilities Chapter Overview Adding Help to Your Commands Using the GENCMDDOC Command UIM Tag Language Associating a Panel Group with a Command Validity Checking Programs Other Advanced Command Topics Chapter Summary Key Terms Review Questions Exercises Programming Assignments APPENDICES Appendix A The Most-Often-Used CL Commands Appendix B Program Development Tools Appendix C Program Testing and Debugging INDEX...561

562 Control Language Programming for IBM i

562 Control Language Programming for IBM i Index 561 Index + (addition operator), 156, 157 & (ampersand), 37 * (asterisk), 45 - (continuation character), 79, 81 + (continuation character) blanks preceding, 80 for comments, 81 defined, 79 example

More information

About the Authors. Preface

About the Authors. Preface Contents About the Authors Acknowledgments Preface iv v xv 1: Introduction to Programming and RPG 1 1.1. Chapter Overview 1 1.2. Programming 1 1.3. History of RPG 2 1.4. Program Variables 6 1.5. Libraries,

More information

V5R3 CL Enhancements. Larry Bolhuis Arbor Solutions, Inc.

V5R3 CL Enhancements. Larry Bolhuis Arbor Solutions, Inc. V5R3 CL Enhancements Larry Bolhuis Arbor Solutions, Inc. lbolhuis@arbsol.com CL Command Enhancements There have been new and changed IBM CL commands in EVERY release For V5R3: 57 new CL commands 247 changed

More information

CL The Story Continues

CL The Story Continues 55CE CL The Story Continues Bruce Vining bvining@brucevining.com Session: 550036 i want stress-free IT. i want control. i want an i. Copyright Bruce Vining Services LLC, 2009. All Rights Reserved. In This

More information

Contents. Acknowledgments Introduction

Contents. Acknowledgments Introduction Contents Acknowledgments Introduction iv xiii 1: Communicating with the System 1 The System 2 IBM i Objects 2 Subsystems 3 Types of Jobs 3 Control Language (CL) 4 System Values 5 Licensed Programs 6 User

More information

Preface... (vii) CHAPTER 1 INTRODUCTION TO COMPUTERS

Preface... (vii) CHAPTER 1 INTRODUCTION TO COMPUTERS Contents Preface... (vii) CHAPTER 1 INTRODUCTION TO COMPUTERS 1.1. INTRODUCTION TO COMPUTERS... 1 1.2. HISTORY OF C & C++... 3 1.3. DESIGN, DEVELOPMENT AND EXECUTION OF A PROGRAM... 3 1.4 TESTING OF PROGRAMS...

More information

INDEX. *AND (See logical variables)

INDEX. *AND (See logical variables) *AND (See logical variables) *BCAT (See concatenating strings) *CAT (See concatenating strings) *NOT (See logical variables) *OR (See logical variables) * to designate comment lines in code, 20-21 *TCAT

More information

Contents. Figures. Tables. Examples. Foreword. Preface. 1 Basics of Java Programming 1. xix. xxi. xxiii. xxvii. xxix

Contents. Figures. Tables. Examples. Foreword. Preface. 1 Basics of Java Programming 1. xix. xxi. xxiii. xxvii. xxix PGJC4_JSE8_OCA.book Page ix Monday, June 20, 2016 2:31 PM Contents Figures Tables Examples Foreword Preface xix xxi xxiii xxvii xxix 1 Basics of Java Programming 1 1.1 Introduction 2 1.2 Classes 2 Declaring

More information

PROBLEM SOLVING WITH FORTRAN 90

PROBLEM SOLVING WITH FORTRAN 90 David R. Brooks PROBLEM SOLVING WITH FORTRAN 90 FOR SCIENTISTS AND ENGINEERS Springer Contents Preface v 1.1 Overview for Instructors v 1.1.1 The Case for Fortran 90 vi 1.1.2 Structure of the Text vii

More information

A Web-Based Introduction

A Web-Based Introduction A Web-Based Introduction to Programming Essential Algorithms, Syntax, and Control Structures Using PHP, HTML, and MySQL Third Edition Mike O'Kane Carolina Academic Press Durham, North Carolina Contents

More information

Index. B Bachman diagram defined, 216 illustrated, 216, 380 Based-on logical files, information, 310

Index. B Bachman diagram defined, 216 illustrated, 216, 380 Based-on logical files, information, 310 541 Index & (ampersand character), 198 + (continuation character), 491 + (plus sign), 447 < (shift left) symbol, 432 > (greater-than symbol), 193 > (shift right) symbol, 432 - (hyphen), 198, 200 % wildcard

More information

C# Programming: From Problem Analysis to Program Design. Fourth Edition

C# Programming: From Problem Analysis to Program Design. Fourth Edition C# Programming: From Problem Analysis to Program Design Fourth Edition Preface xxi INTRODUCTION TO COMPUTING AND PROGRAMMING 1 History of Computers 2 System and Application Software 4 System Software 4

More information

"Charting the Course... Java Programming Language. Course Summary

Charting the Course... Java Programming Language. Course Summary Course Summary Description This course emphasizes becoming productive quickly as a Java application developer. This course quickly covers the Java language syntax and then moves into the object-oriented

More information

ощ 'ршорвшэш! цвн-эориэу ощ 'sajbpossv # PIPG DUJ 'ssjmoossv ^ PIPG pipa w н OX ЛЮН VAV

ощ 'ршорвшэш! цвн-эориэу ощ 'sajbpossv # PIPG DUJ 'ssjmoossv ^ PIPG pipa w н OX ЛЮН VAV ощ 'ршорвшэш! цвн-эориэу ощ 'sajbpossv # PIPG DUJ 'ssjmoossv ^ PIPG pipa w н OX ЛЮН VAV Contents Preface Chapter 1 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 1.10 1.11 1.12 1.13 1.14 1.15 1.16 1.17 1.18 1.19

More information

CONTENTS. PART 1 Structured Programming 1. 1 Getting started 3. 2 Basic programming elements 17

CONTENTS. PART 1 Structured Programming 1. 1 Getting started 3. 2 Basic programming elements 17 List of Programs xxv List of Figures xxix List of Tables xxxiii Preface to second version xxxv PART 1 Structured Programming 1 1 Getting started 3 1.1 Programming 3 1.2 Editing source code 5 Source code

More information

Contents. Preface. Introduction. Introduction to C Programming

Contents. Preface. Introduction. Introduction to C Programming c11fptoc.fm Page vii Saturday, March 23, 2013 4:15 PM Preface xv 1 Introduction 1 1.1 1.2 1.3 1.4 1.5 Introduction The C Programming Language C Standard Library C++ and Other C-Based Languages Typical

More information

Practical C++ Programming

Practical C++ Programming SECOND EDITION Practical C++ Programming Steve Oualline O'REILLY' Beijing Cambridge Farnham Koln Paris Sebastopol Taipei Tokyo Preface xv Part I. The Basics 1. What Is C++? 3 A Brief History of C++ 3 C++

More information

Fundamentals of the Java Programming Language

Fundamentals of the Java Programming Language Fundamentals of the Java Programming Language Student Guide SL-110 REV E D61798GC10 Edition 1.0 2009 D62399 Copyright 2006, 2009, Oracle and/or its affiliates. All rights reserved. Disclaimer This document

More information

BASIC OPERATORS AND FUNCTIONS

BASIC OPERATORS AND FUNCTIONS 4 BASIC OPERATORS AND FUNCTIONS Chapter 3 covers the use of isolated constants and variables in a CL procedure. This chapter explains the various manipulations you can perform in CL to combine two or more

More information

Beginning Perl. Third Edition. Apress. JAMES LEE with SIMON COZENS

Beginning Perl. Third Edition. Apress. JAMES LEE with SIMON COZENS Beginning Perl Third Edition JAMES LEE with SIMON COZENS Apress About the Author... About the Technical Reviewers Acknowledgements Suitrod yetion «. xvi xvii xviii «xix. Chapter 1: First Steps in Perl..

More information

Learning C# 3.0. Jesse Liberty and Brian MacDonald O'REILLY. Beijing Cambridge Farnham Köln Sebastopol Taipei Tokyo

Learning C# 3.0. Jesse Liberty and Brian MacDonald O'REILLY. Beijing Cambridge Farnham Köln Sebastopol Taipei Tokyo Learning C# 3.0 Jesse Liberty and Brian MacDonald O'REILLY Beijing Cambridge Farnham Köln Sebastopol Taipei Tokyo Table of Contents Preface xv 1. C# and.net Programming 1 Installing C# Express 2 C# 3.0

More information

CONTENTS. ... vii. ... xv The Old Standard xvi The New Standard xvi A Whole New Ball Game xvii e-rpg xviii INTRODUCTION

CONTENTS. ... vii. ... xv The Old Standard xvi The New Standard xvi A Whole New Ball Game xvii e-rpg xviii INTRODUCTION ............................... vii INTRODUCTION............................... xv The Old Standard xvi The New Standard xvi A Whole New Ball Game xvii e-rpg xviii Chapter 1: AN INTRODUCTION TO HTML.................

More information

Verilog HDL. A Guide to Digital Design and Synthesis. Samir Palnitkar. SunSoft Press A Prentice Hall Title

Verilog HDL. A Guide to Digital Design and Synthesis. Samir Palnitkar. SunSoft Press A Prentice Hall Title Verilog HDL A Guide to Digital Design and Synthesis Samir Palnitkar SunSoft Press A Prentice Hall Title Table of Contents About the Author Foreword Preface Acknowledgments v xxxi xxxiii xxxvii Part 1:

More information

It has always been a pain to call IBM APIs from CL programs

It has always been a pain to call IBM APIs from CL programs By Dan Riehl and Guy Vig V5R3 Control Language STUNNING DEVELOPMENTS In V5R3, IBM added 57 new CL commands and changed more than 240 commands. This isn t extraordinary because IBM enhances the set of CL

More information

Computer Programming C++ (wg) CCOs

Computer Programming C++ (wg) CCOs Computer Programming C++ (wg) CCOs I. The student will analyze the different systems, and languages of the computer. (SM 1.4, 3.1, 3.4, 3.6) II. The student will write, compile, link and run a simple C++

More information

Excel Programming with VBA (Macro Programming) 24 hours Getting Started

Excel Programming with VBA (Macro Programming) 24 hours Getting Started Excel Programming with VBA (Macro Programming) 24 hours Getting Started Introducing Visual Basic for Applications Displaying the Developer Tab in the Ribbon Recording a Macro Saving a Macro-Enabled Workbook

More information

INDEX. Note: boldface numbers indicate illustrations; (t) indicates a table. 257

INDEX. Note: boldface numbers indicate illustrations; (t) indicates a table. 257 INDEX A active subfiles, maximum number of, 24, 118 active windows, displaying multiple subfiles and, 180-181 Add Record subroutine, 78 ADDQUE subroutine for data queue subfiles, 198-199, 199, 200, 201

More information

The Designer's Guide to VHDL Second Edition

The Designer's Guide to VHDL Second Edition The Designer's Guide to VHDL Second Edition Peter J. Ashenden EDA CONSULTANT, ASHENDEN DESIGNS PTY. VISITING RESEARCH FELLOW, ADELAIDE UNIVERSITY Cl MORGAN KAUFMANN PUBLISHERS An Imprint of Elsevier SAN

More information

Acknowledgments Introduction. Chapter 1: Introduction to Access 2007 VBA 1. The Visual Basic Editor 18. Testing Phase 24

Acknowledgments Introduction. Chapter 1: Introduction to Access 2007 VBA 1. The Visual Basic Editor 18. Testing Phase 24 Acknowledgments Introduction Chapter 1: Introduction to Access 2007 VBA 1 What Is Access 2007 VBA? 1 What s New in Access 2007 VBA? 2 Access 2007 VBA Programming 101 3 Requirements-Gathering Phase 3 Design

More information

Preface to the Second Edition... xi A Note About Source Entry... xi

Preface to the Second Edition... xi A Note About Source Entry... xi Contents Preface to the Second Edition... xi A Note About Source Entry... xi Chapter 1: Pre Free-Format RPG IV... 1 RPG IV... 1 Extended Factor 2... 2 Built-in Functions... 2 Subprocedures... 3 Other Changes...

More information

(CL Compiler Enhancements from V5R3 to now)

(CL Compiler Enhancements from V5R3 to now) Session: IBM i Control Language (CL) CL at 7.1 and 7.2 (CL Compiler Enhancements from V5R3 to now) Guy Vig Guy.Vig@gmail.com i want stress-free IT. i want control. Copyright Guy Vig 2014 Overview of this

More information

CITY UNIVERSITY OF NEW YORK. i. Visit:

CITY UNIVERSITY OF NEW YORK. i. Visit: CITY UNIVERSITY OF NEW YORK I. ACCESSING IRB NET (New Registration) i. Visit: https://www.irbnet.org/release/index.html ii. New users: Click on New Registration in the top right corner iii. Fill-out the

More information

Microsoft. Microsoft Visual C# Step by Step. John Sharp

Microsoft. Microsoft Visual C# Step by Step. John Sharp Microsoft Microsoft Visual C#- 2010 Step by Step John Sharp Table of Contents Acknowledgments Introduction xvii xix Part I Introducing Microsoft Visual C# and Microsoft Visual Studio 2010 1 Welcome to

More information

1 Chapter Plan...1 Exercise - Simple Program...2

1 Chapter Plan...1 Exercise - Simple Program...2 Chapter 1: Introduction Exercise - Simple Program...2 2 Subject Matter...4 1. What is PL/1?...4 2. PL/1: Strengths and Advantages...5 3. Program Structure...6 4. Data Types...7 5. Built-in Functions...8

More information

Python Scripting for Computational Science

Python Scripting for Computational Science Hans Petter Langtangen Python Scripting for Computational Science Third Edition With 62 Figures 43 Springer Table of Contents 1 Introduction... 1 1.1 Scripting versus Traditional Programming... 1 1.1.1

More information

CHAPTER 1: INTRODUCING C# 3

CHAPTER 1: INTRODUCING C# 3 INTRODUCTION xix PART I: THE OOP LANGUAGE CHAPTER 1: INTRODUCING C# 3 What Is the.net Framework? 4 What s in the.net Framework? 4 Writing Applications Using the.net Framework 5 What Is C#? 8 Applications

More information

CONTENTS. INTRODUCTION xvii

CONTENTS. INTRODUCTION xvii INTRODUCTION xvii SECTION I: AN INTRODUCTION TO JAVA FOR RPG PROGRAMMERS 1 CHAPTER 1: JAVA FOR RPG PROGRAMMERS 3 AS/400 LIBRARIES AND JAVA PACKAGES 3 IMPORT 6 A PROGRAM WITH CLASS 7 LET S START HERE 7

More information

SOME ASSEMBLY REQUIRED

SOME ASSEMBLY REQUIRED SOME ASSEMBLY REQUIRED Assembly Language Programming with the AVR Microcontroller TIMOTHY S. MARGUSH CRC Press Taylor & Francis Group CRC Press is an imprint of the Taylor & Francis Croup an Informa business

More information

Contents. part 1: ILE Basics...7. Acknowledgments...iv

Contents. part 1: ILE Basics...7. Acknowledgments...iv Contents Acknowledgments...iv Introduction...1 A Brief Description of Our Journey...1 From Old Problematic Monoliths to Innovative, Lightweight, Efficient Programs...3 Why ILE? OPM Has Served Me Fine So

More information

CITY UNIVERSITY OF NEW YORK. Creating a New Project in IRBNet. i. After logging in, click Create New Project on left side of the page.

CITY UNIVERSITY OF NEW YORK. Creating a New Project in IRBNet. i. After logging in, click Create New Project on left side of the page. CITY UNIVERSITY OF NEW YORK Creating a New Project in IRBNet i. After logging in, click Create New Project on left side of the page. ii. Enter the title of the project, the principle investigator s (PI)

More information

Introduction PL/1 Programming

Introduction PL/1 Programming Chapter 1: Introduction Performance Objectives You will learn: Facilities and features of PL/1. Structure of programs written in PL/1. Data types. Storage classes, control, and dynamic storage allocation.

More information

С and the Programming for Multitasking. Thomas W. Schultz. Purdue University West Lafayette, Indiana

С and the Programming for Multitasking. Thomas W. Schultz. Purdue University West Lafayette, Indiana С and the 8051 Programming for Multitasking Thomas W. Schultz Purdue University West Lafayette, Indiana PTR Prentice Hall Englewood Cliffs, New Jersey 07632 Preface Introduction Chapter 1 WHY THE 8051?

More information

The Waite Group's. New. Primer Plus. Second Edition. Mitchell Waite and Stephen Prata SAMS

The Waite Group's. New. Primer Plus. Second Edition. Mitchell Waite and Stephen Prata SAMS The Waite Group's New Primer Plus Second Edition Mitchell Waite and Stephen Prata SAMS PUBLISHING A Division of Prentice Hall Computer Publishing 11711 North College, Carmel, Indiana 46032 USA Contents

More information

Contents. 2 Introduction to C++ Programming,

Contents. 2 Introduction to C++ Programming, cppfp2_toc.fm Page vii Thursday, February 14, 2013 9:33 AM Chapter 24 and Appendices F K are PDF documents posted online at www.informit.com/title/9780133439854 Preface xix 1 Introduction 1 1.1 Introduction

More information

Absolute C++ Walter Savitch

Absolute C++ Walter Savitch Absolute C++ sixth edition Walter Savitch Global edition This page intentionally left blank Absolute C++, Global Edition Cover Title Page Copyright Page Preface Acknowledgments Brief Contents Contents

More information

[CHAPTER] 1 INTRODUCTION 1

[CHAPTER] 1 INTRODUCTION 1 FM_TOC C7817 47493 1/28/11 9:29 AM Page iii Table of Contents [CHAPTER] 1 INTRODUCTION 1 1.1 Two Fundamental Ideas of Computer Science: Algorithms and Information Processing...2 1.1.1 Algorithms...2 1.1.2

More information

Advanced R. V!aylor & Francis Group. Hadley Wickham. ~ CRC Press

Advanced R. V!aylor & Francis Group. Hadley Wickham. ~ CRC Press ~ CRC Press V!aylor & Francis Group Advanced R Hadley Wickham ')'l If trlro r r 1 Introduction 1 1.1 Who should read this book 3 1.2 What you will get out of this book 3 1.3 Meta-techniques... 4 1.4 Recommended

More information

Pointers in C. A Hands on Approach. Naveen Toppo. Hrishikesh Dewan

Pointers in C. A Hands on Approach. Naveen Toppo. Hrishikesh Dewan Pointers in C A Hands on Approach Naveen Toppo Hrishikesh Dewan Contents About the Authors Acknowledgments Introduction xiii xv xvii S!Chapter 1: Memory, Runtime Memory Organization, and Virtual Memory

More information

Installing and Administering a Satellite Environment

Installing and Administering a Satellite Environment IBM DB2 Universal Database Installing and Administering a Satellite Environment Version 8 GC09-4823-00 IBM DB2 Universal Database Installing and Administering a Satellite Environment Version 8 GC09-4823-00

More information

Contents. 1 Introduction to Computers, the Internet and the World Wide Web 1. 2 Introduction to C Programming 26

Contents. 1 Introduction to Computers, the Internet and the World Wide Web 1. 2 Introduction to C Programming 26 Preface xix 1 Introduction to Computers, the Internet and the World Wide Web 1 1.1 Introduction 2 1.2 What Is a Computer? 4 1.3 Computer Organization 4 1.4 Evolution of Operating Systems 5 1.5 Personal,

More information

Rational Developer for i: What's New in 9.0.1

Rational Developer for i: What's New in 9.0.1 John Fellner, Developer, Rational Developer for i Rational Developer for i: What's New in 9.0.1 TUG Meeting of Members, Jan 22, 2014 Agenda Quick Product Intro What's New in Rational Developer for i v9.0.1

More information

"Charting the Course to Your Success!" MOC D Querying Microsoft SQL Server Course Summary

Charting the Course to Your Success! MOC D Querying Microsoft SQL Server Course Summary Course Summary Description This 5-day instructor led course provides students with the technical skills required to write basic Transact-SQL queries for Microsoft SQL Server 2014. This course is the foundation

More information

Acknowledgments Introduction. Part I: Programming Access Applications 1. Chapter 1: Overview of Programming for Access 3

Acknowledgments Introduction. Part I: Programming Access Applications 1. Chapter 1: Overview of Programming for Access 3 74029ftoc.qxd:WroxPro 9/27/07 1:40 PM Page xiii Acknowledgments Introduction x xxv Part I: Programming Access Applications 1 Chapter 1: Overview of Programming for Access 3 Writing Code for Access 3 The

More information

Index. user profile and, 7 Work with Objects Using PDM (WRKOBJPDM) and, 446

Index. user profile and, 7 Work with Objects Using PDM (WRKOBJPDM) and, 446 Index # 5250 emulators, 2 5250 sessions, 120 126 IBM i Access for Web and, 718 5250 user interface, in IBM i Access for Web, 720 727, 751 753 A Access for Web. See IBM i Access for Web; see also IBM i

More information

C Programming for Electronic Engineers

C Programming for Electronic Engineers C Programming for Electronic Engineers Keith Jackson BSc CEng MIEE with acknowledgement to Gavin Eamshaw MEng School of Electronic, Communication and Electrical Engineering University of Plymouth MACMILLAN

More information

This course is designed for web developers that want to learn HTML5, CSS3, JavaScript and jquery.

This course is designed for web developers that want to learn HTML5, CSS3, JavaScript and jquery. HTML5/CSS3/JavaScript Programming Course Summary Description This class is designed for students that have experience with basic HTML concepts that wish to learn about HTML Version 5, Cascading Style Sheets

More information

SAP' ABAP. Handbook. Kogent Learning Solutions, Inc. Sudbury, Massachusetts JONES AND BARTLETT PUBLISHERS BOSTON TORONTO LONDON SINUAPORI:

SAP' ABAP. Handbook. Kogent Learning Solutions, Inc. Sudbury, Massachusetts JONES AND BARTLETT PUBLISHERS BOSTON TORONTO LONDON SINUAPORI: SAP' ABAP Handbook Kogent Learning Solutions, Inc. JONES AND BARTLETT PUBLISHERS Sudbury, Massachusetts BOSTON TORONTO LONDON SINUAPORI: Table of Contents Introduction xxi About This Book How to Use This

More information

Acknowledgments xi Preface xiii About the Author xv About This Book xvii New in the Macro Language xxi

Acknowledgments xi Preface xiii About the Author xv About This Book xvii New in the Macro Language xxi Contents Part 1 Acknowledgments xi Preface xiii About the Author xv About This Book xvii New in the Macro Language xxi Macro Basics Chapter 1 Introduction 3 1.1 Macro Facility Overview 3 1.2 Terminology

More information

Learn Windows PowerShell 3 in a Month of Lunches

Learn Windows PowerShell 3 in a Month of Lunches Learn Windows PowerShell 3 in a Month of Lunches Second Edition DON JONES JEFFERY HICKS 11 MANN I NG Shelter Island contents preface xx'ii about this booh author online xx xix about the authors acknowledgments

More information

CERTIFICATE IN WEB PROGRAMMING

CERTIFICATE IN WEB PROGRAMMING COURSE DURATION: 6 MONTHS CONTENTS : CERTIFICATE IN WEB PROGRAMMING 1. PROGRAMMING IN C and C++ Language 2. HTML/CSS and JavaScript 3. PHP and MySQL 4. Project on Development of Web Application 1. PROGRAMMING

More information

Oracle BPM 10g R3 Programming 1 Essentials

Oracle BPM 10g R3 Programming 1 Essentials Oracle BPM 10g R3 Programming 1 Essentials Volume I Student Guide D55633GC10 Edition 1.0 March 2009 D58927 Authors Jill Moritz Kenny Somerville Technical Contributors and Reviewers Fernando Dobladez Carolina

More information

IBM. TSO/E REXX User's Guide. z/os. Version 2 Release 3 SA

IBM. TSO/E REXX User's Guide. z/os. Version 2 Release 3 SA z/os IBM TSO/E REXX User's Guide Version 2 Release 3 SA32-0982-30 Note Before using this information and the product it supports, read the information in Notices on page 205. This edition applies to Version

More information

Introduction. Assessment Test. Part I The Programmer s Exam 1

Introduction. Assessment Test. Part I The Programmer s Exam 1 4276FM.fm Page ix Thursday, October 2, 2003 11:22 AM at a Glance Introduction Assessment Test xix xxv Part I The Programmer s Exam 1 Chapter 1 Language Fundamentals 3 Chapter 2 Operators and Assignments

More information

Understanding the Concepts and Features of Macro Programming 1

Understanding the Concepts and Features of Macro Programming 1 Contents Preface ix Acknowledgments xi Part 1 Understanding the Concepts and Features of Macro Programming 1 Chapter 1 Introduction 3 What Is the SAS Macro Facility? 4 What Are the Advantages of the SAS

More information

1 OBJECT-ORIENTED PROGRAMMING 1

1 OBJECT-ORIENTED PROGRAMMING 1 PREFACE xvii 1 OBJECT-ORIENTED PROGRAMMING 1 1.1 Object-Oriented and Procedural Programming 2 Top-Down Design and Procedural Programming, 3 Problems with Top-Down Design, 3 Classes and Objects, 4 Fields

More information

Scenario Manager User Guide. Release September 2013

Scenario Manager User Guide. Release September 2013 Scenario Manager User Guide Release 6.2.1 September 2013 Scenario Manager User Guide Release 6.2.1 September 2013 Document Control Number: 9MN12-62110017 Document Number: SMUG-13-FCCM-0017-6.2.1-01 Oracle

More information

C for Electronic Engineering

C for Electronic Engineering C for Electronic Engineering with applied software engineering William Buchanan Prentice Hall London New York Toronto Sydney Tokyo Singapore Madrid Mexico City Munich CONTENTS PREFACE 1 INTRODUCTION 1.1

More information

Preface. The Purpose of this Book and Its Audience. Coverage and Approach

Preface. The Purpose of this Book and Its Audience. Coverage and Approach Preface The Purpose of this Book and Its Audience Java 5 Illuminated covers all of the material required for the successful completion of an introductory course in Java. While the focus is on presenting

More information

INDEX. A Absolute Value of Expression (%ABS), 26, 27 activation groups for database triggers, 257, 267, 279

INDEX. A Absolute Value of Expression (%ABS), 26, 27 activation groups for database triggers, 257, 267, 279 %ABS, 26, 27 %ADDR, 26, 28-31 %CHAR, 26, 31-32 %DEC, 26, 32-34 %DECH, 26, 32-34 %DECPOS, 26, 34-35 %DIV, 26, 35-36 %EDITC, 26, 36-39 %EDITFLT, 26, 36-39 %EDITW, 26, 36-39 %ELEM, 39-40 %EOF, 26, 40-41 %EQUAL,

More information

System Administration of PTC Windchill 11.0

System Administration of PTC Windchill 11.0 System Administration of PTC Windchill 11.0 Overview Course Code Course Length TRN-4830-T 16 Hours In this course, you will gain an understanding of how to perform routine Windchill system administration

More information

Python Scripting for Computational Science

Python Scripting for Computational Science Hans Petter Langtangen Python Scripting for Computational Science Third Edition With 62 Figures Sprin ger Table of Contents 1 Introduction 1 1.1 Scripting versus Traditional Programming 1 1.1.1 Why Scripting

More information

foreword to the first edition preface xxi acknowledgments xxiii about this book xxv about the cover illustration

foreword to the first edition preface xxi acknowledgments xxiii about this book xxv about the cover illustration contents foreword to the first edition preface xxi acknowledgments xxiii about this book xxv about the cover illustration xix xxxii PART 1 GETTING STARTED WITH ORM...1 1 2 Understanding object/relational

More information

Welcome to Teach Yourself Acknowledgments Fundamental C++ Programming p. 2 An Introduction to C++ p. 4 A Brief History of C++ p.

Welcome to Teach Yourself Acknowledgments Fundamental C++ Programming p. 2 An Introduction to C++ p. 4 A Brief History of C++ p. Welcome to Teach Yourself p. viii Acknowledgments p. xv Fundamental C++ Programming p. 2 An Introduction to C++ p. 4 A Brief History of C++ p. 6 Standard C++: A Programming Language and a Library p. 8

More information

Contents. Acknowledgments

Contents. Acknowledgments Contents Acknowledgments Introduction Why Another Book About Web Application Development? How Is This Book Arranged? Intended Audience Do I Need to Start from Scratch? Choosing Development Tools Summary

More information

Chapters and Appendix F are PDF documents posted online at the book s Companion Website (located at

Chapters and Appendix F are PDF documents posted online at the book s Companion Website (located at Contents Chapters 16 27 and Appendix F are PDF documents posted online at the book s Companion Website (located at www.pearsonhighered.com/deitel/). Preface Before You Begin xix xxix 1 Introduction to

More information

"Charting the Course... SharePoint 2007 Hands-On Labs Course Summary

Charting the Course... SharePoint 2007 Hands-On Labs Course Summary Course Summary Description This series of 33 hands-on labs allows students to explore the new features of Microsoft SharePoint Server, Microsoft Windows, Microsoft Office, including Microsoft Office Groove,

More information

Contents Introduction 1

Contents Introduction 1 SELF-STUDY iii Introduction 1 Course Purpose... 1 Course Goals...1 Exercises... 2 Scenario-Based Learning... 3 Multimedia Overview... 3 Assessment... 3 Hardware and Software Requirements... 4 Chapter 1

More information

Contents Chapter 1 Introduction to Programming and the Java Language

Contents Chapter 1 Introduction to Programming and the Java Language Chapter 1 Introduction to Programming and the Java Language 1.1 Basic Computer Concepts 5 1.1.1 Hardware 5 1.1.2 Operating Systems 8 1.1.3 Application Software 9 1.1.4 Computer Networks and the Internet

More information

Name :. Roll No. :... Invigilator s Signature : INTRODUCTION TO PROGRAMMING. Time Allotted : 3 Hours Full Marks : 70

Name :. Roll No. :... Invigilator s Signature : INTRODUCTION TO PROGRAMMING. Time Allotted : 3 Hours Full Marks : 70 Name :. Roll No. :..... Invigilator s Signature :.. 2011 INTRODUCTION TO PROGRAMMING Time Allotted : 3 Hours Full Marks : 70 The figures in the margin indicate full marks. Candidates are required to give

More information

Maintain an ILE RPG application using Remote System Explorer

Maintain an ILE RPG application using Remote System Explorer Maintain an ILE RPG application using Remote System Explorer ii Maintain an ILE RPG application using Remote System Explorer Contents Maintain an ILE RPG application using Remote System Explorer.......

More information

JAVA CONCEPTS Early Objects

JAVA CONCEPTS Early Objects INTERNATIONAL STUDENT VERSION JAVA CONCEPTS Early Objects Seventh Edition CAY HORSTMANN San Jose State University Wiley CONTENTS PREFACE v chapter i INTRODUCTION 1 1.1 Computer Programs 2 1.2 The Anatomy

More information

A Fast Review of C Essentials Part I

A Fast Review of C Essentials Part I A Fast Review of C Essentials Part I Structural Programming by Z. Cihan TAYSI Outline Program development C Essentials Functions Variables & constants Names Formatting Comments Preprocessor Data types

More information

About the Authors... iii Introduction... xvii. Chapter 1: System Software... 1

About the Authors... iii Introduction... xvii. Chapter 1: System Software... 1 Table of Contents About the Authors... iii Introduction... xvii Chapter 1: System Software... 1 1.1 Concept of System Software... 2 Types of Software Programs... 2 Software Programs and the Computing Machine...

More information

"Charting the Course... MOC C: Querying Data with Transact-SQL. Course Summary

Charting the Course... MOC C: Querying Data with Transact-SQL. Course Summary Course Summary Description This course is designed to introduce students to Transact-SQL. It is designed in such a way that the first three days can be taught as a course to students requiring the knowledge

More information

PYTHON. p ykos vtawynivis. Second eciitiovl. CO Ve, WESLEY J. CHUN

PYTHON. p ykos vtawynivis. Second eciitiovl. CO Ve, WESLEY J. CHUN CO Ve, PYTHON p ykos vtawynivis Second eciitiovl WESLEY J. CHUN. PRENTICE HALL Upper Saddle River, NJ Boston Indianapolis San Francisco New York Toronto Montreal London Munich Paris Madrid Capetown Sydney

More information

ILE Essentials, Part 1 Static Binding and Service Programs

ILE Essentials, Part 1 Static Binding and Service Programs ILE Essentials, Part 1 Static Binding and Service Programs Susan Gantner susan.gantner@partner400.com www.partner400.com SystemiDeveloper.com Your partner in IBM i Education In this session, we will take

More information

Introduction to PTC Windchill ProjectLink 11.0

Introduction to PTC Windchill ProjectLink 11.0 Introduction to PTC Windchill ProjectLink 11.0 Overview Course Code Course Length TRN-4756-T 8 Hours In this course, you will learn how to participate in and manage projects using Windchill ProjectLink

More information

ERserver. ILE Concepts. iseries. Version 5 Release 3 SC

ERserver. ILE Concepts. iseries. Version 5 Release 3 SC ERserver iseries ILE Concepts Version 5 Release 3 SC41-5606-07 ERserver iseries ILE Concepts Version 5 Release 3 SC41-5606-07 Note Before using this information and the product it supports, be sure to

More information

CHAPTER 1 Introduction to Computers and Programming CHAPTER 2 Introduction to C++ ( Hexadecimal 0xF4 and Octal literals 031) cout Object

CHAPTER 1 Introduction to Computers and Programming CHAPTER 2 Introduction to C++ ( Hexadecimal 0xF4 and Octal literals 031) cout Object CHAPTER 1 Introduction to Computers and Programming 1 1.1 Why Program? 1 1.2 Computer Systems: Hardware and Software 2 1.3 Programs and Programming Languages 8 1.4 What is a Program Made of? 14 1.5 Input,

More information

Contents. Using Interpreters... 5 Using Compilers... 5 Program Development Life Cycle... 6

Contents. Using Interpreters... 5 Using Compilers... 5 Program Development Life Cycle... 6 Contents ***Introduction*** Introduction to Programming... 1 Introduction... 2 What is a Program?... 2 Role Played by a Program to Perform a Task... 2 What is a Programming Language?... 3 Types of Programming

More information

Murach s Beginning Java with Eclipse

Murach s Beginning Java with Eclipse Murach s Beginning Java with Eclipse Introduction xv Section 1 Get started right Chapter 1 An introduction to Java programming 3 Chapter 2 How to start writing Java code 33 Chapter 3 How to use classes

More information

Introduction to Programming Using Java (98-388)

Introduction to Programming Using Java (98-388) Introduction to Programming Using Java (98-388) Understand Java fundamentals Describe the use of main in a Java application Signature of main, why it is static; how to consume an instance of your own class;

More information

Contents. Illustrations. 1 Introduction to Computers, the Internet, the Web and C# 1

Contents. Illustrations. 1 Introduction to Computers, the Internet, the Web and C# 1 csphtp1toc.fm Page viii Friday, December 14, 2001 1:49 PM Illustrations Preface viii xix xxxviii 1 Introduction to Computers, the Internet, the Web and C# 1 1.1 Introduction 2 1.2 What Is a Computer? 3

More information

Scanner Logic Programmer Manual

Scanner Logic Programmer Manual Scanner Logic Programmer Manual Language Reference Manual No. 50331442, Rev. 01 *Mark of Schlumberger. Other company, product, and service names are the properties of their respective owners. Copyright

More information

Introduction to Computers and C++ Programming p. 1 Computer Systems p. 2 Hardware p. 2 Software p. 7 High-Level Languages p. 8 Compilers p.

Introduction to Computers and C++ Programming p. 1 Computer Systems p. 2 Hardware p. 2 Software p. 7 High-Level Languages p. 8 Compilers p. Introduction to Computers and C++ Programming p. 1 Computer Systems p. 2 Hardware p. 2 Software p. 7 High-Level Languages p. 8 Compilers p. 9 Self-Test Exercises p. 11 History Note p. 12 Programming and

More information

Chapter 1 INTRODUCTION. SYS-ED/ Computer Education Techniques, Inc.

Chapter 1 INTRODUCTION. SYS-ED/ Computer Education Techniques, Inc. Chapter 1 INTRODUCTION SYS-ED/ Computer Education Techniques, Inc. Objectives You will learn: Facilities and features of PL/1. Structure of programs written in PL/1. Data types. Storage classes, control,

More information

UNIX Shell Programming

UNIX Shell Programming $!... 5:13 $$ and $!... 5:13.profile File... 7:4 /etc/bashrc... 10:13 /etc/profile... 10:12 /etc/profile File... 7:5 ~/.bash_login... 10:15 ~/.bash_logout... 10:18 ~/.bash_profile... 10:14 ~/.bashrc...

More information

Table of Contents. Preface... xxi

Table of Contents. Preface... xxi Table of Contents Preface... xxi Chapter 1: Introduction to Python... 1 Python... 2 Features of Python... 3 Execution of a Python Program... 7 Viewing the Byte Code... 9 Flavors of Python... 10 Python

More information

Tentative Teaching Plan Department of Software Engineering Name of Teacher Dr. Naeem Ahmed Mahoto Course Name Computer Programming

Tentative Teaching Plan Department of Software Engineering Name of Teacher Dr. Naeem Ahmed Mahoto Course Name Computer Programming Mehran University of Engineering Technology, Jamshoro FRM-003/00/QSP-004 Dec, 01, 2001 Tentative Teaching Plan Department of Software Engineering Name of Teacher Dr. Naeem Ahmed Mahoto Course Name Computer

More information

Chapters are PDF documents posted online at the book s Companion Website (located at

Chapters are PDF documents posted online at the book s Companion Website (located at vbhtp6printonlytoc.fm Page ix Wednesday, February 27, 2013 11:59 AM Chapters 16 31 are PDF documents posted online at the book s Companion Website (located at www.pearsonhighered.com/deitel/). Preface

More information