Matrix Computations in Basic on a Microcomputer*

Total Page:16

File Type:pdf, Size:1020Kb

Matrix Computations in Basic on a Microcomputer* Matrix Computations in Basic on a Microcomputer* NICHOLAS J. HIGHAM. GIMA Department of Mathematics, University of Manchester We consid er the effi cient implementation of matrix computations in standard BBC Microcomputer and the sse with a Torch interpreted Basic on a microcomputer. Linear equations routines SGEFA and SGESL from the U NPACK library ofFor tran programs are translated Z-80 second processor (we shall regard the last two into Basic and run on four microcomputers: the Commodore 64, the configurations as different machines). All the machines Amstrad CPC464, the BBC Microcomputer and the BBC with a Z-80 were used in their standard interpreted Basic program­ second processor. The computational cost of the routines is found to be ming environment (in the case of the sse with Z-80 dominated by subscripting calculations rather than by floating point second processor we used the Z-80 version of sse arithmetic. For the BBC Microcomputer and the Commodore 64, the BLAS routines which constitute the inner loops of SGEFA and SGESL are Basic, "BBCBASIC Z80"); in addition the Commodore 64 coded in assembly language; speed increases of factors 2·8 (ssc) and 5·3 was used with the Basic-related Coma! programming (Commodore 64) accrue, and the improved execution times are com­ language. For details of Basic the reader is recommended parable to ones which have been quoted for the more powerful and to consult Lientz, 6 Alcock, 7 ANSI, 8 Brown, 9 Genz and expensive IBM PC running under a Fortran compiler. The com­ Hopkins10 and Kemeny and Kurtz. 11 Good references BLAS putational cost of the routines using coded is found to be 12 13 dominated by floating point arithmetic, subscripting calculations and for Coma! are Atherton and Lindsay. The technical other overheads having been reduced to a negligible level, and it is specifications of the four machines and of their particular concluded that these hybrid Basic/assembly language routines extract language implementations are described in Higham. 14 near optimum performance from their host machines. Our findings are Here we define two terms that will be used frequently shown to be applicable to any matrix routine wh ose computational cost can be measured in "fl ops." in the following sections. Machine code (or machine language) is the collection of instructions that a micro­ processor recognises and can execute as fundamental 1. Introduction 1 operations. To the microprocessor, a machine code STEWART describes his experiences in implementing a instruction is simply a binary bit pattern that specifies an linear equations solver on three hand-held calculators. action to be performed. Assembly language is a low level His routine for the Hewlett Packard HP-41C, coded in language bearing a one to one relationship to machine the machine's low level programming language, solved a code; it allows the use of mnemonics to refer to machine system of linear equations of order 10 in 250 seconds. 2 code instructions, and symbolic names (or labels) to refer Dongarra gives a list of the times taken by various to numeric values and addresses. The translation from micro-, mini- and mainframe computers to solve a linear assembly language to machine code is carried out by an system of order 100 using standard linear equations assembler. Programming in assembly language is easier, software written in Fortran. The timings include one for less prone to error, and much less tedious than pro­ the IBM PC microcomputer: this machine solved the gramming in machine code. 100 x 100 problem in 20 minutes. In sections 2 and 3 we describe the development of For several years I have used in my research the efficient hybrid Basic/assembly language translations of Commodore Pet and Commodore 64 micro­ two standard Fortran subroutines for solving systems 3 4 5 computers, · · which in terms of cost and computing of linear equations. Section 4 presents and analyses the power lie between the hand-held calculators and the results of timing experiments carried out on the four test more powerful microcomputers such as the IBM PC. machines using the hybrid routines and, for comparison, 1 Unlike the calculators used by Stewart my microcom­ the equivalent purely Basic versions. puters run a high level programming language, Basic, but In section 5 we introduce a set of benchmarks for they are not equipped to run Fortran, the language of interpreted Basics and apply them to the four test choice for scientific computation on large computers. machines. The results obtained are used to gain insight Consideration of the papers of Stewart and Dongarra into the results of section 4. Finally, in section 6 we led me to ask the following questions. summarise our findings in relation to questions (1.1), (1.2) (1.1 ) How should algorithms for matrix computations be and (1.3). implemented on a microcomputer in order to make The view taken in this work is that one wishes to use the best possible use of the machine's processing the fastest and most accurate special-purpose algorithms power, if Basic is the only available high-level available for solving on a microcomputer the problem at language? hand (cf K. Stewart). 15 This is the view that is. naturally (1.2) What will be the dominant computational costs in taken by a numerical analysis researcher who uses a implementations that answer question (1.1)? microcomputer as a more convenient, easy-to-use (1.3) How can one make use of the rich supply of high substitute for a mainframe computer. An alternative 1 6 1 7 quality Fortran software when coding algorithms approach, taken by Nash, • is to develop compact, in Basic? versatile routines for small computers that are easy to These questions are investigated in this paper. implement and to maintain, and that can be used to soiv:e In this work we experimented with four microcom­ a variety of computational problems; some loss of effici­ puters: the Commodore 64, the Amstrad CPC 464, the ency is-accepted in return for the economies achieved. We * The views expressed in this paper are not necessarily those of the believe that our findings concerning the efficiency of Institute. interpreted Basic programs could usefully be employed Ja11uar yjFebruary, 1986, Vo lume 22 13 in enhancing the efficiency of the compact routines, such as is done in some Fortran implementations of UNPACK as those in Nash, 1 7 albeit with loss of machine (references 20 and 18, p. 1.23). independence. An alternative approach is to write the BLAS m assembly language; the BLAS calls can then be replaced by machine-specific Basic statements that pa~s contr~l 2. Translating two UNPACK subroutines into Basic to the specially written machine code routmes. Thts To investigate questions (1.1), (1.2) and (1.3), and to approach promises to achieve the dual aim of increased enable us to compare our experiments with those of efficiency, since machine code generally runs much faster Stewart and Dongarra, we decided to focus on the than interpreted Basic code and the bulk of the com­ problem of solving a system of linear equations­ putation in SGEFA is done inside the BLAS. In fact it is true probably the most fundamental and widely occurring for most of the UNPACK routines that if the total number problem in numerical linear algebra. We took as our of assignments, array element references and floating starting point the routines SGEFA/ and SGESL in the point additions and multiplications is O(nq) (q = 2, 3), UNPACK library of Fortran programs for analysing and 1 then only O(nq - ) of these operations are performed solving linear systems. 18 SGEFA performs LU factorisa­ outside the BLAS. tion of a matrix A, using a column oriented version of We have tried both approaches towards translating Gaussian elimination with partial pivoting, and SGESL the BLAS. In section 4 we compare the performances of uses the factorisation to solve a linear system Ax = b programs based on the two approaches. But first, in the (reference 18, Ch. 1) . next section, we examine in detail the theoretical and the Consider the following outline of the factorisation practical aspects of coding the BLAS in assembly language algorithm used by SGEFA. Here A = (ai) is an n x n real for use with a Basic interpreter on a microcomputer. matrix. Algorithm 2.1 Fork= 1, ... , n-1 3. Assembly language BLAS (2.1) Find the smallest r?:; k such that 3.1. Theoretical gains in efficiency a,k = max { aik i = k, ... , I I I I: n} Before describing the details of coding the BLAS in Swap akk and a,k assembly language we first consider what we can hope to (2.2) Fori= k+ 1, ... , n achieve by using these special BLAS with an interpreted mik = -aiJ akk Basic. Endfor i One of the characteristics of the 6502 and Z-80 central For j = k+ 1, ... , n processing units (cPus) of our test machines is that their Swap akj and a,j instruction sets do not contain a multiply operation; (2.3) Fori= k+ 1, ... ,n therefore all four machines must carry out floating point aij aij mik akj = + * arithmetic in software. The four Basic interpreters con­ Endfor i tain individual collections of floating point arithmetic Endfor j subroutines and, under the reasonable assumption that Endfor k. these routines are efficiently coded, it is sensible to In the Fortran code SGEFA the loops (2.2) and (2.3), and attempt to make use of these routines in the assembly the search (2. 1), are executed by the Basic Linear Algebra language BLAS. In addition to simplifying the program­ Subprograms (BLAS).
Recommended publications
  • ACPI (Ang. Advanced Configuration and Power Interface, Zaawansowany Interfejs Zarządzania Konfiguracją I Energią) – Otwarty
    ACPI (ang. Advanced Configuration and Power Interface, zaawansowany interfejs zarządzania konfiguracją i energią) – otwarty standard opracowany przez firmy Intel, Microsoft i Toshiba, do których później dołączyły HP oraz Phoenix, po raz pierwszy ogłoszony w grudniu 1996. ACPI zwiększa możliwości systemów zarządzania energią oferowane przez wcześniejsze rozwiązanie APM. Umożliwia systemowi operacyjnemu kontrolowanie ilości energii dostarczanej do poszczególnych urządzeń komputera (napędu CD-ROM, twardego dysku oraz urządzeń peryferyjnych) i, podobnie jak APM, umożliwia ich wyłączanie, gdy nie są używane a konieczne jest oszczędzanie energii. ADC - Przetwornik analogowo-cyfrowy A/C (ang. A/D – analog to digital; ADC – analog to digital converter), to układ służący do zamiany sygnału analogowego (ciągłego) na reprezentację cyfrową (sygnał cyfrowy). Dzięki temu możliwe jest przetwarzanie ich w urządzeniach elektronicznych opartych o architekturę zero-jedynkową oraz gromadzenie na dostosowanych do tej architektury nośnikach danych. Proces ten polega na uproszczeniu sygnału analogowego do postaci skwantowanej (dyskretnej), czyli zastąpieniu wartości zmieniających się płynnie do wartości zmieniających się skokowo w odpowiedniej skali (dokładności) odwzorowania. Przetwarzanie A/C tworzą 3 etapy: próbkowanie, kwantyzacja i kodowanie. Działanie przeciwne do wyżej wymienionego wykonuje przetwornik cyfrowo-analogowy C/A. AGP - Accelerated Graphics Port (AGP, czasem nazywany Advanced Graphics Port) – zmodyfikowana magistrala PCI opracowanej przez firmę Intel zaprojektowana do obsługi kart graficznych. Jest to 32- bitowa magistrala PCI zoptymalizowana do szybkiego przesyłania dużych ilości danych pomiędzy pamięcią operacyjną a kartą graficzną. Wyparta przez szybszą magistralę PCI Express. AGP Pro - specjalna wersja gniazda rozszerzeń AGP przeznaczona do profesjonalnych kart graficznych, które zużywają dużo prądu. Gniazdo AGP Pro ma 48 pinów więcej niż standardowe gniazdo AGP. Służą one niemal wyłącznie jako dodatkowe linie zasilania.
    [Show full text]
  • BASIC CODE 2010 Edition by the League of Minnesota Cities Duke Addicks, Special Counsel Rachel Carlson, Staff Attorney
    THE MINNESOTA BASIC CODE 2010 Edition By The League of Minnesota Cities Duke Addicks, Special Counsel Rachel Carlson, Staff Attorney Published by American Legal Publishing Corporation 432 Walnut Street, 12th Floor Cincinnati, Ohio 45202 Tel: (800) 445-5588 Fax: (513) 763-3562 E-Mail: [email protected] Internet: http://www.amlegal.com PREFACE TO THE MINNESOTA BASIC CODE, 2010 EDITION The Minnesota Basic Code This League of Minnesota Cities/American Legal Publishing (LMC/ALP) Minnesota Basic Code (MBC) is an effort to provide a modern and comprehensive code of ordinances for smaller Minnesota cities without the expense of a customized code of ordinances. Its provisions are also useful to all Minnesota cities that wish to have models for the basic city ordinances on the subjects contained in the code. The code reflects current state statutes, case law and rules through January, 2010. The MBC will be supplemented periodically to reflect legislative enactments and new case law and rules. The supplements will consist of new pages which will replace or be in addition to the pages contained in this edition. In addition, the supplements will contain new model ordinances that will be included into the MBC unless the city decides not to incorporate them into their code. Authors and Editors This Minnesota Basic Code is partly based on the Model Ordinance Code for Minnesota Cities, Revised Edition 1980, prepared by Orville C. Peterson, former Executive Director of the League of Minnesota Cities, and the 1989 Model Ordinance Code prepared by Thomas L. Grundhoefer, then Staff Attorney and now General Counsel for the League.
    [Show full text]
  • Adding a 5 Pin DIN to an Amstrad CPC 464
    arduitape.blogspot.com Adding a 5 pin DIN to an Amstrad CPC 464 Share 4-5 minutes Adding a 5 pin DIN to an Amstrad CPC 464 After mentioning that I had gotten a CPC and attached a DIN to it so that I could connect it to the TZXDuino I have had a few requests on how to do it so I thought I'd try a guide. You will need to purchase 180 degree 5 pin female din that is chassis mountable. This is the type that I purchased except mine also had a mounting plate too. The standard 6128 cassette connector is wired like this. Each pin is numbered on the back so that you know which one you are connecting it too so don't worry if the pins are in different positions as it depends on whether you are looking from the connection side or the soldering side. I would use different coloured wiring for each type of connection. I used the following Ground - Black Data Input - White Data Output - Pink Remote Control - Brown At this point I added 4 male pins to the end of my wiring so that I could build a connector so that I could easily disconnect the DIN should I need to work on the cassette drive. Next is connecting the wiring to the cassette drive Make sure that when you solder you do not create any shorts and connect the wiring as follows. Close Up your computer and then test to make sure that it all works. If you want to use the built in cassette recorder you just unplug the cassette leads from the DIN and use it as normal.
    [Show full text]
  • Lindoo2019 Miami Xojo Presentation
    Back to the Basics, in an Two Effort to Improve Student distinct retention in Intro to schools Programming Classes CS Dr. Ed Lindoo Associate Professor Computer Information Systems (CC&IS) 3 year average CS and CIS Drop/Fail rate • 3 year average • 50+ percent drop/fail rate in intro to programming class Two CIS classes taught by CS • Specifically CC&IS students were failing at a 62% rate! • Big problem! • If they fail this course, they don’t continue in the program • Represents a huge loss of revenue to the school • Intro to programming class taught by CS department • I was asked by our Dean to “Fix it” • Computer Science students and Information Systems students • Performed extensive research on why students fail. (business students) took the class together. • After sifting through all the research, I decided to go back to • Business students don’t have the strong technical skills to the basics, BASIC programing that is. jump into a Java or C++ course • I started thinking back to my days of BASIC and QBASIC • Certainly not as an intro class • Remember BASIC? • But that’s what was happening • Well that wasn’t going to cut it! • Further research found a common theme • Visual Programming Environments • Easier to understand languages. DON’T START WITH C++ • I thought long and hard about it • Re-wrote the entire course, Intro to Programming based on Xojo • Even though I had done a lot of work in VB.net, I felt like that was too heavy for this course • Ahh, but there’s a catch…………………isn’t there always? • Then I remembered back to my days of using Real Basic, so I • Must pass a Java course once they pass this class.
    [Show full text]
  • Programming Manual Version 2.0
    www.tinybasic.de programming manual version 2.0 TinyBasic Programming Manual Version 2.0 April 2008 altenburg © 2006-2008 by U. Altenburg CHAPTER 1 Introduction.....................................................8 EDITOR, COMPILER, DOWNLOAD, CONSOLE, SCOPE CHAPTER 2 Preprocessor……….........................................12 #TARGET, #INCLUDE, #DEFINE, #UNDEF, #IFDEF, #IFNDEF, #ELSE, #ENDIF CHAPTER 3 Variables and Types.......................................14 CHAR, BYTE, WORD, INTEGER, LONG, FLOAT, DATA, READ, RESTORE, LOAD, STORE, INC, DEC CHAPTER 4 Maths and Expressions..................................19 +, -, *, /, <, >, <=, >=, <>, <<, >>, (), [], NOT, AND, OR, XOR, MOD CHAPTER 5 Control Flow...................................................22 IF, THEN, ELSE, ELSIF, ENDIF, DO, LOOP, FOR, NEXT, WHILE, WEND, EXIT, ON, GOTO, GOSUB, RETURN, WAIT, PAUSE TinyBasic Programming www.tinybasic.de 5 CHAPTER 6 Functions.......................................................28 LO, HI, MIN, MAX, LEN, POS, VAL, PI, SIN, COS, TAN, ATN, DEG, RAD, SQR, EXP, LOG, POW, ABS, INT, ROUND, POINT, PEEK, EOF CHAPTER 7 Input and Output...........................................33 PUT, GET, PRINT, INPUT, OPEN, CLOSE, FLUSH, FIND, INITGSM, SENDSMS, RECVSMS, ERR, CR, NL, CHR, HEX, SPC, TAB, USING CHAPTER 8 Date and Time................................................40 SETCLOCK, DATE, TIME, HOUR, MINUTE, SECOND, DAY, MONTH, YEAR CHAPTER 9 Displays and Graphics...................................42 SETDISPLAY, SETSYMBOL, CLS, FONT, COLOR, PLOT, MOVE, DRAW, FRAME,
    [Show full text]
  • M the Official Amstrad Business Magazine
    Vol. 1 No. 4 December 1986 AMSTRAD£1.25 | COMPUTING- V; ■ I mm m >■ V aL- The Official Amstrad Business Magazine The Condor 1 Commands - They couldn’t be simpler! Database Creation and Maintenance DEFINE Create, redefine or describe a database DESTROY Eliminate a database or file FORMAT Create or revise a form or HELP screen REORG Reorganize the structure of a database; add or delete items Information Input and Update APPEND Attach records of one database to another EMPTY Eliminate all data in a database ENTER Insert new data into a database POST Update entries in one database with those from another UPDATE Change entries in a J--.abase meeting specified cni Jiiitions Informations* ssingand Report Writing COMPARE ' ;v*i.*are orgies in two ■■■...•.vjfcsfa- /not) n • hing o editions and The Database Manager and Reporter. c. < RE ;• i JLT database COMPUTE . ie<: iesina You know that Caxton only publish superior software products. LIST 0; datf.'i j;,se records in Cardbox is the world’s best-selling simple electronic card index. sesjc :?-^er Brainstorm is the world’s first ideas processor. Scratchpad plus is the PRINT Pirfctf. shtab^va records in ewisr only enhanced Virtual Memory Spreadsheet available foryour PRINTER Pri; ;lei output control and Amstrad. And Touch ’n’ Go is the UK’s most highly respected disk- refection SELECT Select database records based typing T\itor. meeting specified conditions, creating a Now we present Condor 1 - Mainframe computing for your Amstrad. RESULT database SORT Sort database records by Condor 1 is an extensive database management and reporting system entries STAX View or print statistics of for the non-programmer.
    [Show full text]
  • Microsoft Small Basic
    Microsoft Small Basic An introduction to Programming Chapter 1 An Introduction Small Basic and Programming Computer Programming is defined as the process of creating computer software using programming languages. Just like we speak and understand English or Spanish or French, computers can understand programs written in certain languages. These are called programming languages. In the beginning there were just a few programming languages and they were really easy to learn and comprehend. But as computers and software became more and more sophisticated, programming languages evolved fast, gathering more complex concepts along the way. As a result most modern programming languages and their concepts are pretty challenging to grasp by a beginner. This fact has started discouraging people from learning or attempting computer programming. Small Basic is a programming language that is designed to make programming extremely easy, approachable and fun for beginners. Small Basic’s intention is to bring down the barrier and serve as a stepping stone to the amazing world of computer programming. The Small Basic Environment Let us start with a quick introduction to the Small Basic Environment. When you first launch SmallBasic, you will see a window that looks like the following figure. Figure 1 - The Small Basic Environment This is the Small Basic Environment, where we’ll write and run our Small Basic programs. This environment has several distinct elements which are identified by numbers. The Editor, identified by [1] is where we will write our Small Basic programs. When you open a sample program or a previously saved program, it will show up on this editor.
    [Show full text]
  • Scanned Document
    OJ )> Vl () 0 ,0 ,m' I 1-V II&JS mm&Radio4 I nederlandse ornroep stichting I THE CHIP SHOP BASICODE2 mmmRadio4 - Broadcasting Support Services CONTENTS ©NOS nederlandse omroep stichting, Hilversum, Netherland 1. INTRODUCTION 5 ISBN 0-906965-14-4 2. HOW TO USE BASICODE-2 7 This edition first published by Broadcasting Support Services January 1984 3. BASICODE- THE SPECIFICATIONS 9 THE CHIP SHOP BBC Radio4 4. BASICODE-2 PROTOCOL 12 British Broadcasting Corporation Portland Place 5. APPLE II & lie 26 London W1A 1AA 6. BBC (A& B) 29 All rights reserved. This handbook and the accompanying computer programs are copyright. No part of this handbook or 7. COMMODORE COMPUTERS 31 the accompanying computer programs may be reproduced, 8. SHARP MZSOA 36 translated, copied or transmitted by any means whatsoever without the prior written permission of the copyright owners. 9. SINCLAIR ZX81 37 The publisher assumes no responsibility for errors, nor liability 10. TANDY TRS-80 & VIDEOGENIE 41 for loss or damage, however caused, arising from the use of the Basicode 2 kit. 11. THE FUTURE 47 The BASICODE-2 kit is available for £3.95 frorr:: Broadcasting Support Services P.O. Box? London W3 6XJ Please make cheques or postal orders payable to Broadcasting Support Services. Published for The Chip Shop, Radio 4, by Broadcasting Support Services- an independent educational charity providing follow­ up services for viewers and listeners. Introduction Chapter One BASICODE-2 INTRODUCTION BASICODE has been developed by the radio programme Hobbyscoop This book and the accompanying cassette contain the details of NOS­ which is broadcast weekly by Nederlanse Omroep Stichting (NOS), BASICODE.
    [Show full text]
  • Exploring Student Perceptions About the Use of Visual Programming
    Exploring student perceptions about the use of visual programming environments, their relation to student learning styles and their impact on student motivation in undergraduate introductory programming modules Maira Kotsovoulou (BSc, MSc) July 2019 This thesis is submitted in partial fulfilment of the requirements for the degree of Doctor of Philosophy. Department of Educational Research, Lancaster University, UK. Exploring student perceptions about the use of visual programming environments, their relation to student learning styles and their impact on student motivation in undergraduate introductory programming modules Maira Kotsovoulou (BSc, MSc) This thesis results entirely from my own work and has not been offered previously for any other degree or diploma. The word count is 57,743 excluding references. Signature ........................................................ Maira Kotsovoulou (BSc, MSc) Exploring student perceptions about the use of visual programming environments, their relation to student learning styles and their impact on student motivation in undergraduate introductory programming modules Doctor of Philosophy, July 2019 Abstract My research aims to explore how students perceive the usability and enjoyment of visual/block-based programming environments (VPEs), to what extent their learning styles relate to these perceptions and finally to what extent these tools facilitate student understanding of basic programming constructs and impact their motivation to learn programming. My overall methodological approach is a case study that explores the nature of potential benefits to using a VPE in an introductory programming module, within the specific context of an English-speaking institution of higher learning in Southern Europe. Part 1 of this research is a pilot study, which uses participatory action research as a methodological practice to identify which visual programming environment will be selected for the main study.
    [Show full text]
  • 4. the BBC BASIC Assembler
    ARM Assembly Language Programming - Chapter 4 - The BBC BASIC Assembler 4. The BBC BASIC Assembler There are two main ways of writing ARM assembly language programs. One is to use a dedicated assembler. Such a program takes a text file containing ARM assembly language instructions, assembles it, and produces another file containing the equivalent machine code. These two files are called the source files and object files respectively. An alternative approach is to use the assembler built-in to BBC BASIC. The ability to mix assembler with BASIC is a very useful feature of the language, and one that is relatively straightforward to use. For this reason, and because of the widespread availability of BBC BASIC, we describe how to use its built-in assembler. The examples of the next two chapters are also in the format expected by the BASIC assembler. 4.1 First principles Two special 'statements' are used to enter and exit from the assembler. The open square bracket character, [, marks the start of assembly language source. Whenever this character is encountered where BASIC expects to see a statement like PRINT or an assignment, BASIC stops executing the program and starts to assemble ARM instructions into machine code. The end of the source is marked by the close square bracket, ]. If this is read where BASIC is expecting to see an instruction to be assembled, it leaves assembler mode and starts executing the (BASIC) program again. To see the effect of entering and leaving the assembler, type in this short program: 10 PRINT "Outside the assembler" 20 [ ;In the assembler 30 ] 40 PRINT "Outside the assembler" If you RUN this, you should see something like the following: Outside the assembler 00000000 ;In the assembler Outside the assembler Between the two lines produced by the PRINT statements is one which the assembler printed.
    [Show full text]
  • Full Form of Basic in Computer Language
    Full Form Of Basic In Computer Language Arrased and intransitive Obadiah resit: which Rockwell is soused enough? Prentiss safeguards her nitromethane yesternight, she posed it drastically. How rustling is Morley when comelier and canescent Ned depolarize some banana? Learning pascal are usually, the extern modifier is defined in basic computer full language of sense 3 Popular Types of Computer Language eduCBA. Instead of using machine code it uses a programming language. Programming in one natural language say taken full scope set the English language. BASIC was to early programming language that is still despise the simplest and most popular of programming languages BASIC stands for Beginner's. It is practically impossible to teach good programming to students that have had one prior exposure to BASIC In its classic form BASIC also. Computer Related Full Form PDF For BoardCompetitive Examination BAL Basic Assembly Language BER Bit less Rate BFD Binary File. Included in computer language of computers can be covered in. All Full Forms for Computer Subjectpdf Domain Name. The basics of BASIC the programming language of the 190s. Learn then to program drawings animations and games using JavaScript ProcessingJS or learn how these create webpages with HTML CSS You implement share. Basic Computer Terms. Important Full Forms Related to Programming Languages. BASIC Commands Dartmouth College. An html tags that time and that you are defined rules, compilers convert the habit to create a language of in basic form computer full control. What both RAM & ROM Mean their Business Chroncom. PHP Full Form GeeksforGeeks. What is C The Basics of C Programming HowStuffWorks.
    [Show full text]
  • 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]