Brief History of Computer Systems, Software, and Programming The

Total Page:16

File Type:pdf, Size:1020Kb

Brief History of Computer Systems, Software, and Programming The Brief History of Computer Systems, Software, and Programming The first modern computer came into existence in the 1940s. No single person invented the computer—the credit goes to the many inventors who have worked on different pieces of the computer over the years. Man’s quest to simplify mathematical computations has led to extensive research, algorithm development, and other innovations. Laptops, tablets, smartphones, and many other devices are a product of these innovations. This article will detail the history of these innovations in mathematics, programming, and software and computer system design. What Is a Computer? A computer is an electronic device that stores and processes data. It comprises both hardware and software. The term hardware refers to the physical aspects of the computer and comprises the following main components: 1. central processing unit (CPU); 2. memory; 3. storage devices (disks, CDs, and tapes); 4. input and output devices (monitors, keyboards, mice, and printers). All these components are connected to each other through the system bus. The figure below provides a visual overview of the main parts of the computer. Figure 1: The main components of a computer. Computer programs are written by programmers, and they guide the computer through an orderly set of actions to perform some operation. The term software refers to these programs that instruct hardware to perform specific tasks. The instructions to the http://www.saylor.org/courses/cs101/#1.1 The Saylor Foundation Saylor.org Page 1 of 9 computer can be given using different programming languages. These languages have evolved over time. History of Computing The earliest device to keep track of calculations was an abacus. It was used around 50 BC and was very popular in Asia. A popular form of abacus is shown below. Figure 2: An abacus.1 John Napier, a Scottish mathematician, physicist, and astronomer, defined natural logarithms in 1614 to simplify calculations. The use of logarithms greatly simplified the complex astronomical, navigational, mathematical, and scientific calculations that were commonplace at that time. He also invented Napier’s bones, a mathematical tool that used a set of numbered rods to simplified multiplication. Figure 3: Napier’s bones.2 1 This image is in the public domain. The original can be found here. 2 This image is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license. It is attributed to Wikipedia user La Enciclopedia Libre Universal en Español. The original can be found here. http://www.saylor.org/courses/cs101/#1.1 The Saylor Foundation Saylor.org Page 2 of 9 Charles Babbage, a British mathematician and inventor, first proposed the idea of a programmable computer. While studying complex astronomical calculations that others had done by hand, he found numerous mistakes, which motivated him to design a “mechanical computer” that could do these calculations without errors. Though he designed such a machine, it was never built during his lifetime. The need for programming came with the idea of making general purpose hardware that could be used to carry out a variety of tasks. Ada Lovelace, who was the world’s first programmer, published a paper in which she demonstrated how Babbage’s analytical engine could be programmed to perform various computations. Another device called a punch card was used in the late 1800s to keep track of data that could be read by machines. Punch cards stored information in digital format, which was represented at the time by specific series of holes in paper cardstock. Herman Hollerith applied the idea of representing information as holes in paper cards to speed up the tabulation process in the 1890 US Census. Hollerith’s work contributed to initial programming methods, and punch cards were used to communicate with computers well into the 1970s. We still use the technique of punch cards today in the voting process, and punch cards were subject to media attention with the “hanging chads” issue during the 2000 US presidential elections, when some ballots were not punched properly, making votes difficult to count. Figure 4: A punch card programmed with FORTRAN.3 In the late 1940s, John von Neumann introduced the idea of a computer architecture based on stored programs. The key idea was to store both the data and the program in memory. The idea behind storing programs in a memory was based on the construction of these programs using a small set of generic operations. This became known as von Neumann Architecture in the field of computer science. It was a major advance in computer design, because until this point computers were programmed by setting switches and physically wiring the components. Storing programs in memory completely changed that. This was also the start of machine language (a sequence of 0s and 1s) as a means of programming of the computer. A set of sequences of 0s and 1s were used to indicate the operations and the operands on which these operations would be performed. An example of a machine language program looks something like this: 3 This image is in the public domain. The original can be found here. http://www.saylor.org/courses/cs101/#1.1 The Saylor Foundation Saylor.org Page 3 of 9 Figure 5: An example of a machine language program Each line in the program contains a 16-bit code that represents either a machine instruction or a single data value. For example, the first few bits may indicate that the operation to be performed is addition, and the following bits may provide the numbers that need to be added. Another sequence may have initial bits to indicate that data needs to be fetched from the memory, and the following bits will provide the address in the memory from which the data will be fetched. It was difficult to program using 0s and 1s as different pieces of code looked similar. Giving sections of these 0s and 1s symbolic names would make the task of programming easier as the programmer could focus on data and operations in creating programs. This led to the creation of assembly languages in the 1950s; programmers used these assembly languages to write software. An assembly language is a low-level programming language which is close to machine language but provides clarity into operations of a machine through the use of symbols. An example of a machine language program looks something like this: LD R1, NUMBER1 LD R2, NUMBER2 ADD R3, R1, R2 Figure 6: An assembly language program for adding two numbers The first computer, ENIAC (Electronic Numerical Integrator and Computer), was built by the United States Army’s Ballistic Research Laboratory in 1946. It was part of research aimed at providing better ballistic missiles to the U.S. Army during World War II. http://www.saylor.org/courses/cs101/#1.1 The Saylor Foundation Saylor.org Page 4 of 9 Figure 7: ENIAC, the first computer.4 Dr. Presper Eckert and Dr. John Mauchly, two members of the team that built ENIAC, started their own company, Universal Automatic Computer, or UNIVAC, to build the first commercial computer. Their first client was the United States Census Bureau, which needed a computer to keep track of the growing U.S. population. The computer was successfully built in 1951 at the cost of about one million dollars (about $9 million in today’s money). Machine Language and Programming Languages Machines understand 0s and 1s. The task of software is to express computation in a higher-level language and then translate it into a sequence of 0s and 1s that machines can understand. When you express the computation in a higher-level language, this is referred to as raising the level of abstraction in programming context. A typical software application, such as a word processor or an operating system, may include millions of lines of software code. However, the hardware can only execute low-level instructions presented to it in the form of the machine language consisting of 0s and 1s. Several layers of software are needed to convert the high-level application code into the machine language. As shown in the figure below, a system software layer such as the operating system controls the hardware; the user controls application programs, which run on top of the operating system layer. 4 This image is in the public domain. The original can be found here. http://www.saylor.org/courses/cs101/#1.1 The Saylor Foundation Saylor.org Page 5 of 9 Figure 8: A layered structure showing where the operating system software and application software are situated while running on a typical desktop computer.5 Programming Languages During the 1950s and 1960s, several high-level programming languages were introduced, such as FORTRAN, COBOL, Lisp, ALGOL, and PL/I. The 1970s saw the introduction of languages such as Pascal, C, and Prolog. Most of these languages such as Pascal, C, and FORTRAN are procedural programming languages. Procedural programming is also referred to as imperative programming. The basic idea of this programming style is to specify the steps that the program must take to reach the desired state. An exception to this style of programming comes from languages called Lisp and Prolog. Lisp is a functional programming language, and Prolog is a logic programming language. In functional programming style, evaluation of mathematical style functions take place and the state variables are not used. In logic programming, a program is expressed as a sequence of logical assertions and these assertions are automatically evaluated to come up with the result. These languages include a logic evaluation engine along with the compiler. In the late 1970s, a new design approach called object-oriented programming (OOP) was developed.
Recommended publications
  • Retrocomputing As Preservation and Remix
    Retrocomputing as Preservation and Remix Yuri Takhteyev Quinn DuPont University of Toronto University of Toronto [email protected] [email protected] Abstract This paper looks at the world of retrocomputing, a constellation of largely non-professional practices involving old computing technology. Retrocomputing includes many activities that can be seen as constituting “preservation.” At the same time, it is often transformative, producing assemblages that “remix” fragments from the past with newer elements or joining together historic components that were never combined before. While such “remix” may seem to undermine preservation, it allows for fragments of computing history to be reintegrated into a living, ongoing practice, contributing to preservation in a broader sense. The seemingly unorganized nature of retrocomputing assemblages also provides space for alternative “situated knowledges” and histories of computing, which can sometimes be quite sophisticated. Recognizing such alternative epistemologies paves the way for alternative approaches to preservation. Keywords: retrocomputing, software preservation, remix Recovering #popsource In late March of 2012 Jordan Mechner received a shipment from his father, a box full of old floppies. Among them was a 3.5 inch disk labelled: “Prince of Persia / Source Code (Apple) / ©1989 Jordan Mechner (Original).” Mechner’s announcement of this find on his blog the next day took the world of nerds by storm.1 Prince of Persia, a game that Mechner single-handedly developed in the late 1980s, revolutionized computer games when it came out due to its surprisingly realistic representation of human movement. After being ported to DOS and Apple’s Mac OS in the early 1990s the game sold 2 million copies (Pham, 2001).
    [Show full text]
  • The Past, Present, and Future of Software Evolution
    The Past, Present, and Future of Software Evolution Michael W. Godfrey Daniel M. German Software Architecture Group (SWAG) Software Engineering Group School of Computer Science Department of Computer Science University of Waterloo, CANADA University of Victoria, CANADA email: [email protected] email: [email protected] Abstract How does our system compare to that of our competitors? How easy would it be to port to MacOS? Are users still Change is an essential characteristic of software devel- angry about the spyware incident? As new features are de- opment, as software systems must respond to evolving re- vised and deployed, as new runtime platforms are envis- quirements, platforms, and other environmental pressures. aged, as new constraints on quality attributes are requested, In this paper, we discuss the concept of software evolu- so must software systems continually be adapted to their tion from several perspectives. We examine how it relates changing environment. to and differs from software maintenance. We discuss in- This paper explores the notion of software evolution. We sights about software evolution arising from Lehman’s laws start by comparing software evolution to the related idea of software evolution and the staged lifecycle model of Ben- of software maintenance and briefly explore the history of nett and Rajlich. We compare software evolution to other both terms. We discuss two well known research results of kinds of evolution, from science and social sciences, and we software evolution: Lehman’s laws of software evolution examine the forces that shape change. Finally, we discuss and the staged lifecycle model of Bennett and Rajlich. We the changing nature of software in general as it relates to also relate software evolution to biological evolution, and evolution, and we propose open challenges and future di- discuss their commonalities and differences.
    [Show full text]
  • A Brief History of Software Engineering Niklaus Wirth ([email protected]) (25.2.2008)
    1 A Brief History of Software Engineering Niklaus Wirth ([email protected]) (25.2.2008) Abstract We present a personal perspective of the Art of Programming. We start with its state around 1960 and follow its development to the present day. The term Software Engineering became known after a conference in 1968, when the difficulties and pitfalls of designing complex systems were frankly discussed. A search for solutions began. It concentrated on better methodologies and tools. The most prominent were programming languages reflecting the procedural, modular, and then object-oriented styles. Software engineering is intimately tied to their emergence and improvement. Also of significance were efforts of systematizing, even automating program documentation and testing. Ultimately, analytic verification and correctness proofs were supposed to replace testing. More recently, the rapid growth of computing power made it possible to apply computing to ever more complicated tasks. This trend dramatically increased the demands on software engineers. Programs and systems became complex and almost impossible to fully understand. The sinking cost and the abundance of computing resources inevitably reduced the care for good design. Quality seemed extravagant, a loser in the race for profit. But we should be concerned about the resulting deterioration in quality. Our limitations are no longer given by slow hardware, but by our own intellectual capability. From experience we know that most programs could be significantly improved, made more reliable, economical and comfortable to use. The 1960s and the Origin of Software Engineering It is unfortunate that people dealing with computers often have little interest in the history of their subject.
    [Show full text]
  • The History of Computing in the History of Technology
    The History of Computing in the History of Technology Michael S. Mahoney Program in History of Science Princeton University, Princeton, NJ (Annals of the History of Computing 10(1988), 113-125) After surveying the current state of the literature in the history of computing, this paper discusses some of the major issues addressed by recent work in the history of technology. It suggests aspects of the development of computing which are pertinent to those issues and hence for which that recent work could provide models of historical analysis. As a new scientific technology with unique features, computing in turn can provide new perspectives on the history of technology. Introduction record-keeping by a new industry of data processing. As a primary vehicle of Since World War II 'information' has emerged communication over both space and t ime, it as a fundamental scientific and technological has come to form the core of modern concept applied to phenomena ranging from information technolo gy. What the black holes to DNA, from the organization of English-speaking world refers to as "computer cells to the processes of human thought, and science" is known to the rest of western from the management of corporations to the Europe as informatique (or Informatik or allocation of global resources. In addition to informatica). Much of the concern over reshaping established disciplines, it has information as a commodity and as a natural stimulated the formation of a panoply of new resource derives from the computer and from subjects and areas of inquiry concerned with computer-based communications technolo gy.
    [Show full text]
  • An Overview of Software Evolution
    An Overview of Software Evolution CPRE 416-Software Evolution and Maintenance-Lecture 2 1 Software Evolution • What is it? • How important is it? • What to do about it? 2 An early history of software engineering • The following slides provide a condensation of the ideas of Robert L. Glass in his book "In the Beginning: Recollections of Software Pioneers" about the history of software engineering. 3 The Pioneering Era (1955-1965) • New computers were coming out every year or two. • Programmers did not have computers on their desks and had to go to the "machine room". • Jobs were run by signing up for machine time. Punch cards were used. • Computer hardware was application-specific. Scientific and business tasks needed different machines. 4 The Pioneering Era (1955-1965) • High-level languages like FORTRAN, COBOL, and ALGOL were developed. • No software companies were selling packaged software. • Academia did not yet teach the principles of computer science. 5 The Stabilizing Era (1965-1980) • Came the IBM 360. • This was the largest software project to date. • The 360 also combined scientific and business applications onto one machine. 6 The Stabilizing Era (1965-1980) • Programmers had to use the job control language (JCL) to tell OS what to do. • PL/I, introduced by IBM to merge all programming languages into one, failed. • The notion of timesharing emerged. • Software became a corporate asset and its value became huge. • Academic computing started in the late 60's. • Software engineering discipline did not yet exist. 7 The Stabilizing Era (1965-1980) • High-hype disciplines like Artificial Intelligence emerged.. • Structured Programming burst on the scene.
    [Show full text]
  • The History of Unix in the History of Software Haigh Thomas
    The History of Unix in the History of Software Haigh Thomas To cite this version: Haigh Thomas. The History of Unix in the History of Software. Cahiers d’histoire du Cnam, Cnam, 2017, La recherche sur les systèmes : des pivots dans l’histoire de l’informatique – II/II, 7-8 (7-8), pp77-90. hal-03027081 HAL Id: hal-03027081 https://hal.archives-ouvertes.fr/hal-03027081 Submitted on 9 Dec 2020 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. 77 The History of Unix in the History of Software Thomas Haigh University of Wisconsin - Milwaukee & Siegen University. You might wonder what I am doing The “software crisis” and here, at an event on this history of Unix. the 1968 NATO Conference As I have not researched or written about on Software Engineering the history of Unix I had the same question myself. But I have looked at many other The topic of the “software crisis” things around the history of software and has been written about a lot by profes- this morning will be talking about how sional historians, more than anything some of those topics, including the 1968 else in the entire history of software2.
    [Show full text]
  • The Value of Source Code to Digital Preservation Strategies
    School of Information Student Research Journal Volume 2 Issue 2 Article 5 January 2013 Consider the Source: The Value of Source Code to Digital Preservation Strategies Michel Castagné The University of British Columbia, [email protected] Follow this and additional works at: https://scholarworks.sjsu.edu/ischoolsrj Part of the Library and Information Science Commons Recommended Citation Castagné, M. (2013). Consider the Source: The Value of Source Code to Digital Preservation Strategies. School of Information Student Research Journal, 2(2). https://doi.org/10.31979/2575-2499.020205 Retrieved from https://scholarworks.sjsu.edu/ischoolsrj/vol2/iss2/5 This article is brought to you by the open access Journals at SJSU ScholarWorks. It has been accepted for inclusion in School of Information Student Research Journal by an authorized administrator of SJSU ScholarWorks. For more information, please contact [email protected]. Consider the Source: The Value of Source Code to Digital Preservation Strategies Abstract One of the major challenges in the digital preservation field is the difficulty of ensuring long-term access to digital objects, especially in cases when the software that was used to create an object is no longer current. Software source code has a human-readable, documentary structure that makes it an overlooked aspect of digital preservation strategies, in addition to a valuable component for the records of modern computing history. The author surveys several approaches to software preservation and finds that, yb supporting open source initiatives, digital libraries can improve their ability to preserve access to their collections for future generations. Keywords source code, open source, digital preservation, software preservation About Author Michel Castagné is a Master of Library and Information Studies candidate at the University of British Columbia.
    [Show full text]
  • Javascript Affogato
    JavaScript Afogato: Programming a Culture of Improvised Expertise Brian Lennon Pennsylvania State University ABSTRACT: This essay attempts a philological—meaning a both technically and socially attentive—historical study of an individual computer programming language, JavaScript. From its introduction, JavaScript’s reception by software developers, and its importance in web development as we now understand it, was structured by a con- tinuous negotiation of expertise. I use the term “improvised expertise” to describe both conditions for and effects of the unanticipated de- velopment of JavaScript, originally designed for casual and inexpert coders, into a complex of technical artifacts and practices whose range and complexity of use has today propelled it into domains previously dominated by other, often older and more prestigious languages. “Im- provised expertise” also marks the conditions for and effects of three specific developmental dynamics in JavaScript’s recent history: first, the rapidly accelerated development of the language itself, in the ver- sions of its standard specification; second, the recent, abruptly emerg- ing, yet rapid growth of JavaScript in server-side networking, data pro- cessing, and other so-called back-end development tasks previously off limits to it; third, the equally recent and abrupt, yet decisive emer- gence of JavaScript as the dominant language of a new generation of dynamic web application frameworks and the developer tool chains or tooling suites that support them. Introduction 2016 was an inconspicuously transitional year for the information space once commonly referred to as the World Wide Web. Those Configurations, 2018, 26:47–72 © 2018 by Johns Hopkins University Press and the Society for Literature, Science, and the Arts.
    [Show full text]
  • A Survey of the Practice of Computational Science
    A Survey of the Practice of Computational Science Prakash Prabhu Thomas B. Jablin Arun Raman Yun Zhang Jialu Huang Hanjun Kim Nick P. Johnson Feng Liu Soumyadeep Ghosh Stephen Beard Taewook Oh Matthew Zoufaly David Walker David I. August Princeton University fpprabhu,tjablin,rarun,yunzhang,[email protected] fhanjunk,npjohnso,fengliu,soumyade,[email protected] ftwoh,mzoufaly,dpw,[email protected] ABSTRACT even for computer scientists [33]. Given this background, Computing plays an indispensable role in scientific research. this paper seeks to answer the question: How are scientists Presently, researchers in science have different problems, coping with the growing computing demands? needs, and beliefs about computation than professional pro- Recently, an online survey conducted a broad study of the grammers. In order to accelerate the progress of science, programming practices of a wide range of researchers, re- computer scientists must understand these problems, needs, vealing many potential problems encountered in correctly and beliefs. To this end, this paper presents a survey of writing scientific programs [30, 43]. Continuing in the same spirit, this paper presents an in-depth study of the practice of scientists from diverse disciplines, practicing computational 1 science at a doctoral-granting university with very high re- computational science at Princeton University, a RU/VH search activity. The survey covers many things, among institution. This study is conducted through a survey of them, prevalent programming practices within this scien- researchers from diverse scientific disciplines. This survey tific community, the importance of computational power in covers important aspects of computational science including different fields, use of tools to enhance performance and soft- programming practices commonly employed by researchers, ware productivity, computational resources leveraged, and the importance of computational power, and the perfor- prevalence of parallel computation.
    [Show full text]
  • Science Gateways: the Long Road to the Birth of an Institute
    Proceedings of the 50th Hawaii International Conference on System Sciences | 2017 Science Gateways: The Long Road to the Birth of an Institute Sandra Gesing Katherine Lawrence University of Notre Dame University of Michigan Notre Dame, USA Ann Harbor, USA Linda B. Hayden [email protected] [email protected] Elizabeth City State University Elizabeth City, USA Nancy Wilkins-Diehr Michael Zentner [email protected] University of California Purdue University San Diego, USA West Lafayette, USA [email protected] [email protected] Suresh Marru Indiana University Maytal Dahan Marlon E. Pierce Bloomington, USA University of Texas Indiana University [email protected] Austin, USA Bloomington, USA [email protected] [email protected] Abstract community-based access to shared, distributed Nowadays, research in various disciplines is enhanced resources and services - telescopes, sensor arrays, via computational methods, cutting-edge technologies supercomputers, digital repositories, software as a and diverse resources including computational service, collaboration environments, and more. infrastructures and instruments. Such infrastructures Gateways enable the formation of scientific are often complex and researchers need means to communities, accelerating and transforming the conduct their research in an efficient way without discovery process, and engaging citizens and students getting distracted with information technology in the scientific process. They represent a fundamental nuances. Science gateways address such demands and social and technological change in how science is offer user interfaces tailored to a specific community. being conducted. Creators of science gateways face a breadth of topics Since gateways form end-to-end solutions tailored and manifold challenges, which necessitate close to the communities’ needs, the creators of science collaboration with the domain specialists but also gateways are concerned with a diversity of topics and calling in experts for diverse aspects of a science have to tackle various challenges.
    [Show full text]
  • Brief History of Computer and Their Application
    Brief History Of Computer And Their Application Displeased and well-meant Mort parbuckle her aerodynes wale or ceases globularly. Ira is lubberly transformative after disquisitional Knox rook his fibs cumulatively. Unblissful Silvester exonerating some funnel-webs and unknit his etherealisation so anes! From adversely affecting other and their instructions Apple computer history of applications emerge that you can be used. The computer industry to their cursor control readers are needed networking, special offers color monitor. Among computer and computational physics, and users could play a military. She is history of application to search and brief history of software that honour goes further. In computer industry might already gone their appreciation to calculate predicted tide levels. This and application may request that he began working in bedrock and his machine to continuously. This brief content and their locations and card, are partially sponsored by comparing long does cctv solutions more. In their way to left to store one application, practical use buffers that could now about greater speed and forwarding of computable. Still be hosted within a computer system level format on their computers. Nothing could perform addition to applications include the history of computable functions of. Zuse and its use and history of computer and brief sketch of. In a universal use similar experiments and brief history. As computer history, computing applications written in brief history of application software that. Languages in europe, you hear about greater amount of application of computer history and brief, helped their use today, microsoft windows xp, the unix as the routers in these data that.
    [Show full text]
  • SHORT HISTORY of SOFTWARE METHODS by David F. Rico This Short History Identifies 32 Major Classes of Software Methods That Have Emerged Over the Last 50 Years
    SHORT HISTORY OF SOFTWARE METHODS by David F. Rico This short history identifies 32 major classes of software methods that have emerged over the last 50 years. There are many variations of each major class of software method, which renders the number of software methods in the hundreds. This short history contains a brief synopsis of each of the 32 major classes of software methods, identifying the decade and year they appeared, their purpose, their major tenets, their strengths, and their weaknesses. The year each software method appeared corresponds to the seminal work that introduced the method based on extensive bibliographic research and the strengths and weaknesses were based on scholarly and empirical works to provide an objective capstone for each method. Mainframe Era Midrange Era Microcomputer Era Internet Era Personalized Era 1960s 1970s 1980s 1990s 2000s Flowcharting Structured Design Formal Specification Software Estimation Software Reliability Iterative/Incremental Software Inspections Structured Analysis Software Testing Configuration Control Quality Assurance Project Management Defect Prevention Process Improvement CASE Tools Object Oriented Software Reuse Rapid Prototyping Concurrent Lifecycle Software Factory Domain Analysis Quality Management Risk Management Software Architecture Software Metrics Six Sigma Buy versus Make Personal Processes Product Lines Synch-n-Stabilize Team Processes Agile Methods Market Conditions Market Conditions Market Conditions Market Conditions Market Conditions y Mainframe computer y Computer
    [Show full text]