The Manual for True Basic Free Is Here

Total Page:16

File Type:pdf, Size:1020Kb

The Manual for True Basic Free Is Here Introduction Your True BASIC Free is identical to our powerful full-featured Language System and will run programs of any size. It only has two major limitations: • New or modified programs are limited to 250 lines. • The utilities used to create free-standing, double-click applications are not included. Otherwise, your True BASIC Free is identical to our other Lan- guage System versions. You are able to run programs of any size, use libraries and modules, and invoke DO programs. All the True BASIC statements and functions are included for your use. The current True BASIC Language System series consists of: True BASIC Free - MacOS and DOS versions with line limit True BASIC Student - MacOS and DOS with no line limits True BASIC Standard - MacOS & DOS with developer tools True BASIC BRONZE - MacOS, OS/2 and Windows versions True BASIC SILVER - MacOS, OS/2 and Windows versions The www.truebasic.com website lists features, specifications, and prices of each of these editions. First release - January 1999. © True BASIC Inc. All rights reserved. 1 Many of the concepts and operations described in this guide will be new to you. To make it easier for you to understand, we use the following style conventions to make clear the many new concepts you will encounter: Important new terms: words in bold type Variable names: words in italic True BASIC keywords: ALL CAPS Program listings: Code font Items to be typed by user: Code font Important concepts: x Bold type within lines Menus & menu commands: MENU font Names of programs: ALL CAPS Names of built-in functions: ALL CAPS This guide frequently refers to the True BASIC Bible. This is an unabridged listing of all statements and functions found in True BASIC. It is available in two formats: CD version: Item 75-001-True BASIC Bible CD Book version: Item 70-BK31-True BASIC Bible Both can be ordered from True BASIC Inc., via our website http:// www.truebasic.com or by phone at 603 298-8517. True BASIC Free – User Guide 2 Contents 1. An Introduction to Programming 2. Why True BASIC? 3. The Parts of True BASIC Free 4. Running Demo Programs 5. Writing and Running Your First Program 6. Modifying and Saving Programs 7. Constants, Variables, and Expressions 8. More on INPUT and OUTPUT 9. Loop Structures 10. Decision Structures 11. Formatting and Printing Your Program 12. Editing Hints and Shortcuts 13. Using and Storing Data 14. Arrays and Matrices 15. Functions and Subroutines 16. Creating and Using Libraries 17. Graphics 18. Sound and Music 19. Correcting Errors and Debugging Your Program Appendix A: ASCII Character Set Appendix B: List of True BASIC Statements Appendix C: List of True BASIC Built-in Functions True BASIC Free – User Guide 3 1 • An Introduction to Programming What is a computer program? What is a programming language? Why should you want to learn to write programs? A computer program contains the instructions that tell the computer to do a certain task, such as play a game of football, for- mat and print a letter, or predict the survival of lemmings over several generations. People who used the earliest computers had to know how to write their own programs. There were no stores down the block where they could buy a ready-to-use package that would track cash flow for their company. Today, most people who use computers are not programmers. Instead, they use application packages such as word proces- sors, spreadsheets, address organizers, or flight simulators. You can become a very sophisticated computer user and know nothing about writing programs. Yet even if you have no intention of becoming a software devel- oper or writing complex applications packages, you can still learn to program and enjoy solving your own problems in your own way. Why should people learn to program and why would you want to write your own programs? There are several personal and practical reasons for learning to program: • Acquire training and practice in logical thinking. Many busi- ness schools continued to teach programming to their students even after spreadsheets and database packages became widely available. • Get a better understanding of how computers work. Everything a computer does boils down to programmed instructions. • Create your own solutions to those little tasks that aren’t easily handled by general-purpose applications. Calculate the results of a multi-race sailing regatta. Or combine judges’ scores and dis- tances for a ski jumping meet. • Explore a new career field. Computer specialists have to start somewhere. And the computer industry needs “new blood” if we are to avoid becoming “hostage” again to those few who know how to program. • Just have fun! Write a program to simulate a baseball game, or analyze a bridge hand, or solve a puzzle. True BASIC Free – User Guide 4 The True BASIC Free package introduces you to programming format and structures common to today’s structured program- ming languages. The best way to learn is to sit down at a com- puter and do all the examples as you go through this book. This book does not cover all features in-depth, but it will give you a good start and hint at some of the additional power available with the True BASIC language. As the next step in your programming adventure you might want DiscoveryPak to consider purchasing a copy of the True BASIC DiscoveryPak 52 Ready-to-Run which contains more than fifty ready-to-run programs, covering True BASIC Programs for subject areas from art to vocabulary. Fun and Learning The DiscoveryPak programs were designed to teach coding con- cepts as you use them in interesting programs. Creative changes are suggested for each program. True BASIC DiscoveryPak, True BASIC, Inc., 406 pp. (ISBN 0- 939553-06-6) Item: 25-DOS&L or 25-MAC&L Other books available include: Personal Math and Computing, Frank Wattenberg, MIT Press, 556 pp. (ISBN 0-262-23157-3) Item: 70-BK11 True BASIC by Problem Solving, Brian D. Hahn, VCH Pub- lishers, 337 pp. (ISBN 3-527-26863-4) Item: 70-BK15 Programming in True BASIC: Problem Solving with Structure and Style, Stewart M. Venit & Sandra Schleiffers, West Pub- lishing, 498 pp. (ISBN 0-314-78410-1) Item: 70-BK32 The above books are available directly from True BASIC, where all the listed titles are carried in stock. Our complete book list with descriptions and current prices is also found at www.truebasic.com/books. True BASIC Free – User Guide 5 2. Why True BASIC? True BASIC is the ideal language for the beginning student and for the sophisticated programmer who wants to solve complex problems on several different computers. Two key phrases sum up the benefits of True BASIC over other languages: powerful simplicity and portability. Simply Powerful! • True BASIC is simple enough to let the beginning student write useful and interesting programs right from the start. True BASIC’s screen editor makes it easy to read, write, and modify programs. New programmers can use the simpler features without knowing anything about the full complexity of the language. • The same True BASIC language contains a full range of modern programming structures. The advanced programmer has access to such tools as graphics, sound, external libraries, modules, and full matrix algebra. • You will never have to unlearn the logic and structures you learn in True BASIC. Because of its power, True BASIC may be the only language you ever need, but the skills learned here will also apply to object oriented or other modern languages. Portable and Compatible • True BASIC programs run on any of today’s major computer systems. (There are versions for IBM and compatible personal computers, Apple Macintosh, OS/2, Linux, and computers using the UNIX™ operating system.) You can easily move your programs from one computer to another. The only differences you’ll see are in the editing features (and possibly in graphics and sound depending on the limitations of the computers.) • True BASIC conforms to American and international programming standards. BASIC is the most widely used programming language in the world and is not limited by national boundaries. There is even a Japanese version of True BASIC that is designed to fully exploit the personal computers used in Japan. As a structured language, True BASIC promotes good programming skills. True BASIC programs are easy to read. From the beginning, you’ll learn modern looping and decision structures. You’ll learn about using blank lines, comments, and indenting to make your programs easy to follow and modify later in the process. True BASIC Free – User Guide 6 You’ll also learn how to use functions and subroutines to break your programs into small, manageable units. These units simplify your programming task. They let you concentrate on one problem at a time. They also let you create programs that are easy for humans to read and understand! (Users of other versions of BASIC may notice this book uses no line numbers or potentially confusing GOTO statements. True BASIC allows these holdovers from an older style of programming, but we do not recommend them.) Dartmouth College Professors John G. Kemeny and Thomas E. Kurtz invented BASIC in the 1960s. The modern True BASIC language maintains their original philosophy. They designed a language that was easy for beginners, but provided power for advanced programmers. In the 1970s, graphics devices appeared and the concept of structured programming was widely accepted. At Dartmouth, BASIC continued to grow with these developments. Unfortunately, some of the earlier versions on the first personal computers were limited and did not benefit from new developments. Since 1985, True BASIC has provided an easy-to-use yet powerful, fully structured language for users of personal computers.
Recommended publications
  • Basic: the Language That Started a Revolution
    TUTORIAL BASIC BASIC: THE LANGUAGE THAT TUTORIAL STARTED A REVOLUTION Explore the language that powered the rise of the microcomputer – JULIET KEMP including the BBC Micro, the Sinclair ZX80, the Commodore 64 et al. ike many of my generation, BASIC was the first John Kemeny, who spent time working on the WHY DO THIS? computer language I ever wrote. In my case, it Manhattan Project during WWII, and was inspired by • Learn the Python of was on a Sharp MZ-700 (integral tape drive, John von Neumann (as seen in Linux Voice 004), was its day L very snazzy) hooked up to my grandma’s old black chair of the Dartmouth Mathematics Department • Gain common ground with children of the 80s and white telly. For other people it was on a BBC from 1955 to 1967 (he was later president of the • Realise how easy we’ve Micro, or a Spectrum, or a Commodore. BASIC, college). One of his chief interests was in pioneering got it nowadays explicitly designed to make computers more computer use for ‘ordinary people’ – not just accessible to general users, has been around since mathematicians and physicists. He argued that all 1964, but it was the microcomputer boom of the late liberal arts students should have access to computing 1970s and early 1980s that made it so hugely popular. facilities, allowing them to understand at least a little And in various dialects and BASIC-influenced about how a computer operated and what it would do; languages (such as Visual Basic), it’s still around and not computer specialists, but generalists with active today.
    [Show full text]
  • John G. Kemeny Thomas E. Kurtz Bronze EDITION GUIDE for Windows and Macos BRONZE Edition Reference Manual
    The Original from the Inventors of BASIC John G. Kemeny Thomas E. Kurtz bronze EDITION GUIDE for Windows and MacOS BRONZE Edition Reference Manual bronze Edition Guide for the True BASIC Language System Copyright © 2002 by True BASIC Incorporated ISBN: 0-939553-39-2 All rights reserved. No part of this manual may be reproduced by any means, electronic, mechanical, or photocopying, without the prior written permission of True BASIC, Inc. Address any request for reprinting portions of any material contained in this documentation, listing the purpose of the reprint or citation, and the expected edition size of the publication to True BASIC as the address listed below. Trademarks and their owners: True BASIC: True BASIC, Inc.; IBM: International Business Machines; Apple Macintosh, MacOS: Apple Computer; MS-DOS, Windows, Windows95, Windows98: Microsoft. Published by: True BASIC, Inc. 1523 Maple Street Hartford, VT 05047-0501 USA MANUAL NUMBER: 7222/M 1-800 436-2111 US & Canada Sales Department 1-802 296-2711 International Orders 1-802 296-2715 Fax (24-hour availability) [email protected] Customer Support http://www.truebasic.com Website. Printed in the United States of America. 01/2002 3 Contents 1. An Introduction to Programming .................................................................. 9 2. Why True BASIC? .............................................................................................. 11 3. Installing True BASIC and Running Demo Programs .............................. 13 Installing the BRONZE Edition on Windows
    [Show full text]
  • Statements and Functions
    Statements and Functions The following statments and functions are found in ALL versions of the True BASIC Programming Language: ORDINARY STATEMENTS AND STRUCTURES: PROGRAM END LET DO Loop Structure EXIT DO LOOP FOR Loop Structure EXIT FOR NEXT SELECT CASE Structure CASE IF IF Structure ELSEIF ELSE END IF END SELECT CASE ELSE OTHER STATEMENTS: ASK FREE MEMORY DIM PAUSE RANDOMIZE REM STOP FOR LINE-NUMBERED PROGRAMS: GOSUB ON GOSUB GOTO ON GOTO RETURN TO SET VARIOUS OPTIONS: OPTION ANGLE OPTION NOLET OPTION ARITHMETIC OPTION TYPO OPTION BASE OPTION USING OPTION COLLATE True BASIC Functions and Statements — 1 INPUT AND OUTPUT STATEMENTS: DATA INPUT LINE INPUT MAT INPUT MAT LINE INPUT MAT PRINT MAT READ PRINT READ RESTORE ASK MARGIN SET MARGIN ASK ZONEWIDTH SET ZONEWIDTH FILE STATEMENTS: CLOSE #n ERASE #n INPUT #n: LINE INPUT #n: OPEN #n: RESET #n: PRINT #n: FUNCTIONS AND SUBROUTINES: CALL DECLARE DEF (FUNCTION) DEF DEF Structure EXIT DEF END DEF EXTERNAL LIBRARY LOCAL SUB Structure EXIT SUB END SUB FUNCTION FUNCTION Structure EXIT FUNCTION END FUNCTION DECLARE NUMERIC DECLARE STRING DECLARE SUB CHAIN GRAPHICS AND SOUND STATEMENTS: BOX AREA BOX CIRCLE BOX CLEAR BOX DISK BOX ELLIPSE BOX KEEP BOX LINES True BASIC Functions and Statements — 2 BOX SHOW CLEAR DRAW SOUND FLOOD PICTURE Structure EXIT PICTURE END PICTURE PLAY PLOT PLOT AREA PLOT LINES PLOT POINTS PLOT TEXT SET WINDOW SET TEXT JUSTIFY ASK BACK ASK COLOR ASK COLOR MIX ASK CURSOR ASK DIRECTORY ASK MAX COLOR ASK MAX CURSOR ASK MODE ASK NAME ASK PIXELS ASK SCREEN ASK TEXT JUSTIFY ASK
    [Show full text]
  • Tbas MANUAL V. 1.0.Beta
    tbas MANUAL v. 1.0.beta by Antonio Maschio with the great great help of Tom Lake, Bruce Axtens and Ian Jones and some suggestions by Marcus Cruz ABSTRACT Welcome to the world of tbas! tbas is a powerful con- sole BASIC interpreter, with many statements and many func- tions, and with the most advanced features for console pro- gramming. This manual is not a BASIC primer; I assume you have the most common knowledge about programming; it’s more like a reference manual that helps in using correctly the various statements, functions and their options. Read also the tbas man page for other more general info and the installing instructions. Readers are encouraged to report all errors and inconsisten- cies (and all mistakes in the English sentences) found to ing dot antonio dot maschio at gmail dot com The tbas international team wants to thank you. 14 September 2019 -2- 1. Introduction tbas is a BASIC language interpreter (with an optional built-in interac- tive session) that reads textual files written in the BASIC language; files may be in any format - UNIX, DOS, Mac. Statements may be written in lower or upper or mixed case letters, since tbas is case insensitive. Line numbers are not necessary, and are required only either as labels for the GOTO/GOSUB jumps, or in the interactive session (option -i) or in case you have to run successively your program in a different num- bered-lines BASIC interpreter or compiler. It is completed with the famous MAT statements and a large math functions and operators set.
    [Show full text]
  • Basic Programming Software for Mac
    Basic programming software for mac Chipmunk Basic is an interpreter for the BASIC Programming Language. It runs on multiple Chipmunk Basic for Mac OS X - (Version , Apr01). Learning to program your Mac is a great idea, and there are plenty of great (and mostly free) resources out there to help you learn coding. other BASIC compiler you may have used, whether for the Amiga, PC or Mac. PureBasic is a portable programming language which currently works Linux. KBasic is a powerful programming language, which is simply intuitive and easy to learn. It is a new programming language, a further BASIC dialect and is related. Objective-Basic is a powerful BASIC programming language for Mac, which is simply intuitive and fast easy to learn. It is related to Visual Basic. Swift is a new programming language created by Apple for building iOS and Mac apps. It's powerful and easy to use, even for beginners. QB64 isn't exactly pretty, but it's a dialect of QBasic, with mac, windows, a structured basic with limited variable scoping (subroutine or program-wide), I have compiled old QBasic code unmodified provided it didn't do file. BASIC for Linux(R), Mac(R) OS X and Windows(R). KBasic is a powerful programming language, which is simply intuitive and easy to learn. It is a new. the idea to make software available for everybody: a programming language Objective-Basic requires Mac OS X Lion ( or higher) and Xcode 4 ( or. BASIC is an easy to use version of BASIC designed to teach There is hope for kids to learn an amazing programming language.
    [Show full text]
  • BASIC Compiler
    6 Example: BASIC Compiler Program ®le for this chapter: basic The BASIC programming language was designed by John Kemeny and Thomas Kurtz in the late 1960s. (The name is an acronym for Beginner's All-purpose Symbolic Instruction Code.) It was ®rst implemented on a large, central computer facility at Dartmouth; the designers' goal was to have a language that all students could use for simple problems, in contrast to the arcane programming languages used by most experts at that time. A decade later, when the microcomputer was invented, BASIC took on a new importance. Kemeny and Kurtz designed a simple language for the sake of the users, but that simplicity also made the language easy for the computer! Every programming language requires a computer program to translate it into instructions that the computer can carry out. For example, the Logo programs you write are translated by a Logo interpreter. But Logo is a relatively complex language, and a Logo interpreter is a pretty big program. The ®rst microcomputers had only a few thousand bytes of memory. (Today's home computers, by contrast, have several million bytes.) Those early personal computers couldn't handle Logo, but it was possible to write a BASIC interpreter that would ®t them. As a result, BASIC became the near-universal language for amateur computer enthusiasts in the late 1970s and early 1980s. Today's personal computers come with translators for a wide variety of programming languages, and also with software packages that enable many people to accomplish their computing tasks without writing programs of their own at all.
    [Show full text]
  • About Basic for Ms-Dos
    TERNS A\C rO\D T O\S OF SA-! A+D .CEZSE OF TAhDV COMP-TER EO, PNEhT A40 SOF-;\AQF J.RCnASE3 F33V 7AC 0 SnACI( :3VPA\'-OhhED COVP-TER CEhTERS RETA j-?RE? A\? >A0 S SrAC< F9A\Cn SEES 'IR 2EA-E;IS AT TnE R A-TnOR ZEC -0CAT OhS LIMITED WARRANTY CUSTOMER OBLIGATIONS A CUSTOMER assumes full responsibility that this computer hardware purchased (the Equipment and any copies of software included with the Equipment or licensed se arately (the Software ) meets the specifications capacity capabilities versatility and other requirements of CUETOMER 6 CUSTOMER assumes full responsibility lor the condAon and effectiveness of the operating environment in whlch toe Equipment and Software are to function and lor its installation LIMITED WARRANTIES AND CONDITIONS OF SALE A For a period of ninety (901 calendar days lrom the date of the Radio Shack sales document received upon purchase of the Equipment RADIO SHACK warrants to the original CUSTOMER that the Equipment and the medium upon which the Software is stored is free from manufacturing defects This warranty is only applicable lo purchases of Tandy Equipment by the original customer from Radlo Shack company-owned computer cenlers retail stores, and Radlo Shack franchisees and dealers at their aulhorlzed locations The warrantv is 111. 6 9ADIO SPACK sha I not be liable for any damages caused by delay in delivering or furnishing Equipment and or Softviare C No actio1 ar sin out of any claimed breach of this Warranty or transactions under this Warranty may be brought rr'ore than two 92) years after the cause of action has accrued or more than four (4) years after the date of the Radio Shack sales document for the Equlpment or Software whichever first occurs D Sore states do not a1 ow the imitat on or exclusion of incidental or coiseouential damages so the above imitationis) or exclusionls) may lot apply to CUSTOMER IV.
    [Show full text]
  • Bax58c Is a Program That Compiles Basic Programs to Generate Programs for the TI58C Emulator
    Bax58C is a program that compiles Basic programs to generate programs for the TI58C emulator. © 2011 Pierre Houbert (13/11/2020) Page 1 SUMMARY Presentation ................................................................ 4 The compilation ............................................................. 6 Using the program ............................................ 8 Basic language ........................................................... 10 • <étiquette > 11 • CALL ( statement ) 12 • CHAIN ( statement ) 13 • CLEAR ( statement ) 14 • CLS ( statement ) 15 • DIM ( statement ) 16 • DO ( statement ) 17 • END ( statement ) 18 • FOR ( statement ) 19 • GOSUB ( statement ) 20 • GOTO ( statement ) 21 • IF ( statement ) 22 • INPUT ( statement ) 23 • LET ( statement ) 24 • ON ( statement ) 25 • PRINT ( statement ) 26 • PRINT TAB ( statement ) 27 • PRINT USING ( statement ) 28 • REM ( statement ) 29 • RETURN ( statement ) 30 • SET ( statement ) 31 • SLEEP ( statement ) 32 • SOUND ( statement ) 33 • STOP ( statement ) 34 • SWAP ( statement ) 35 • ABS (...) (function) 36 • ASC (...) (function) 36 • ATN (...) (function) 36 • CHR (...) (function) 36 • COS (...) (function) 36 © 2011 Pierre Houbert (13/11/2020) Page 2 • EXP (...) (function) 36 • FRAC (...) (function) 36 • INT (...) (function) 36 • LOG (...) (function) 36 • RND(...) (function) 36 • SGN (...) (function) 36 • SIN (...) (function) 36 • SQR (...) (function) 36 • TAN (...) (function) 36 • INKEY ( variable ) 37 • DATE (...) (variable) 38 • TIME (...) (variable) 39 • PI (constant) 40 Languages
    [Show full text]
  • Gfa BASIC for Atari ST)
    TOTALLY BASIC A Reference, Cross-Reference and Substitution Guide. Covering over two dozen subsets on nearly a dozen platforms from A to ZOrder. Direct support for: AMIGA: Amiga Basic, Hi Soft BASIC and True BASIC. Apple II: Integer BASIC and Apple Soft BASIC. Atari 8 bit: Atari XL BASIC. Atari ST. ST BASIC 1.0/2.0, Hi Soft BASIC, BBC BASIC, FAST BASIC and GfA BASIC. Commodore 8 bit: PET, C-64 BASIC and C-128 BASIC. CP/M: MBASIC and ABASIC. Macintosh: MS BASIC, Z BASIC, Future BASIC, VIP BASIC and True BASIC. Mainframes: ANSI Minimal BASIC. PC DOS: Business BASIC II. BASICA, IBM BASIC, MS BASIC, GW BASIC, QBASIC, Quick BASIC, Turbo BASIC, Power BASIC, True Basic, Microsoft Professional Development Basic 7.0 and Visual BASIC. PC Windows: CA REALIZER, Visual BASIC 1 through 6 Professional. Psion: OPL. Tandy/Radio Shack: TRS-80 BASIC, Color Computer BASIC and Tandy BASIC for PC. Timex - Sinclair: 100 BASIC. Spectrum Color BASIC. VAX: DCL BASIC. Copyright © 2003 by Earl R. Dingman. All Rights Reserved. TOTALLY BASIC: A Reference ©1989-2003 Earl R. Dingman ACOS() (GfA BASIC 3.0 for Atari ST, True BASIC for Amiga, Macintosh, PC and Unix) Provides the Arc COSine for the value placed inside the parentheses. Syntax: PRINT ACOS(n) or X = ACOS(n) Substitutions: Generally use a DEF FN or DEFFN function: DEF FNACOS(n) = ATN(n / SQR(-n * n+1)) + 1.5708 Then you would use the created function in the program: FNACOS(n). Also see: DEF FN and DEFFN plus OPTION ANGLE ACS SUBSTITUTION FACTOR: Excellent PORTABILITY: None ACS (Timex/Sinclair BASIC) Returns the Arc CoSine of a value in radians.
    [Show full text]
  • The Language List - Version 2.4, January 23, 1995
    The Language List - Version 2.4, January 23, 1995 Collected information on about 2350 computer languages, past and present. Available online as: http://cui_www.unige.ch/langlist ftp://wuarchive.wustl.edu/doc/misc/lang-list.txt Maintained by: Bill Kinnersley Computer Science Department University of Kansas Lawrence, KS 66045 [email protected] Started Mar 7, 1991 by Tom Rombouts <[email protected]> This document is intended to become one of the longest lists of computer programming languages ever assembled (or compiled). Its purpose is not to be a definitive scholarly work, but rather to collect and provide the best information that we can in a timely fashion. Its accuracy and completeness depends on the readers of Usenet, so if you know about something that should be added, please help us out. Hundreds of netters have already contributed to this effort. We hope that this list will continue to evolve as a useful resource available to everyone on the net with an interest in programming languages. "YOU LEFT OUT LANGUAGE ___!" If you have information about a language that is not on this list, please e-mail the relevant details to the current maintainer, as shown above. If you can cite a published reference to the language, that will help in determining authenticity. What Languages Should Be Included The "Published" Rule - A language should be "published" to be included in this list. There is no precise criterion here, but for example a language devised solely for the compiler course you're taking doesn't count. Even a language that is the topic of a PhD thesis might not necessarily be included.
    [Show full text]
  • True BASIC by Alan Patterson) CONTENTS
    Computing Software Development [INTERMEDIATE 2] David Bethune (Adapted for True BASIC by Alan Patterson) CONTENTS Acknowledgements Alan Patterson acknowledges that he has only changed the original work by David Bethune where it was necessary to convert any references to Visual Basic into the equivalent for True BASIC. Every effort has been made to secure all copyright permissions prior to publication. The publishers will be pleased to rectify any inadvertent omissions at the earliest opportunity. Learning and Teaching Scotland gratefully acknowledge this contribution to the National Qualifications support programme for Computing. First published 2004 © Learning and Teaching Scotland 2004 This publication may be reproduced in whole or in part for educational purposes by educational establishments in Scotland provided that no profit accrues at any stage. SOFTWARE DEVELOPMENT (INT 2, COMPUTING ii INTRODUCTION Contents INTRODUCTION ................................................................................................ 3 Tutor guide 3 Student guide 4 SECTION 1 ........................................................................................................ 5 1.1 Software 5 1.2 The development process 6 1.3 A dance in the dark every Monday 8 1.4 Analysis 10 1.5 Design 11 1.6 Implementation 12 1.7 Testing 12 1.8 Documentation 13 1.9 Evaluation 13 1.10 Maintenance 14 SECTION 2 ...................................................................................................... 15 2.1 Computer languages 15 2.2 High and low level
    [Show full text]
  • Apple III Business BASIC Reference Manual Volum
    Apple Business BASIC Reference Manual - Volume 1 Notice Apple Computer reserves the right to make improvements in the product described in this manual at any time and without notice. Disclaimer of All Warranties And Liabilities Apple Computer makes no warranties, either express or implied, with respect to this manual or with respect to the software described in this manual, its . quality, performance, merchantability, or fitness for any particular purpose. Apple Computer software is sold or licensed "as is:· The entire risk as to its quality and performance is with the buyer. Should the programs prove defective following their purchase, the buyer (and not Apple Computer, its distributor, or its retailer) assumes the entire cost of all necessary servicing, repair, or correction and any incidental or consequential damages. In no event will Apple Computer be liable for direct, indirect, incidental, or consequential damages resulting from any defect in the software, even if Apple Computer has been advised of the possibility of such damages. Some states do not allow the exclusion or limitation.of implied warranties or liability for incidental or consequential damages, so the above limitation or exclusion may not apply to you. This manual is copyrighted. All rights are reserved. This document may not, in whole or part, be copied, photocopied, reproduced, translated or redu.ced to any electronic medium or machine readable form without prior consent, in writing, from Apple Computer. © 1981 by Apple Computer 10260 Bandley Drive Cupertino, California
    [Show full text]