The history of programming languages, find books that describe the history of programming languages

Updated on technology 2024-02-25
6 answers
  1. Anonymous users2024-02-06

    **The Way of Microsoft Core Technology Series.

    Executive summary. From the perspective of a Microsoft insider, this book reveals all aspects of software coding, software testing, and project management.

    The author is incisive and insightful, proposes solutions to many common problems in the software industry, and provides best practices.

    This book details how to improve the quality and value of software; Realistic management of project schedules, risks and specifications; Developed for common inefficiencies**; Apply process improvement methods to avoid stubbornness and blind obedience; planning a successful and satisfying career; develop and manage a thriving team, etc.

    This book is a summary of the author's past 28 years of experience in 6 different companies in the software industry.

    This book is a must-read not only for Microsoft employees, but also for all other engineers and managers in the software industry.

    About the Author. Eric Brechner, Director of Development Excellence at Microsoft Corporation, has more than 20 years of experience in the software industry.

    He has been writing "hard code" since 2001 as a resource for Microsoft employees.

    Since then, its opinion column has sparked an endless discussion of best practices among thousands of software developers within Microsoft — ideas that are now moving beyond Microsoft and into the entire development community.

  2. Anonymous users2024-02-05

    The development of computer programming languages has gone through a process from machine language, assembly language to high-level language.

    The first generation of machine languages.

    Machine languages are made up of binary instructions, and different CPUs have different instruction systems. Machine language programs are difficult to write, modify, and maintain, requiring users to directly allocate storage space, and the programming efficiency is extremely low. This language has been phased out.

    Second-generation assembly language.

    Assembly language instructions are symbolic of machine instructions, and there is a direct correspondence with machine instructions, so assembly language also has the disadvantages of difficult to learn and use, easy to make mistakes, and difficult to maintain. But assembly language also has its own advantages: it has direct access to the system interface, and the machine language program into which the assembler is translated is efficient.

    Third-generation high-level languages.

    High-level languages are user-oriented languages that are largely independent of the kind and structure of a computer. Its greatest advantage is that it is close to arithmetic language and natural language in form, and conceptually close to the concepts that people usually use.

    A single command in a high-level language can replace several, dozens, or even hundreds of instructions in assembly language.

    Therefore, high-level languages are easy to learn and use, have strong versatility, and are widely used. There are many types of high-level languages, which can be further classified in terms of application characteristics and descriptions of objective systems.

  3. Anonymous users2024-02-04

    There are two forms of general-purpose programming languages: assembly languages and high-level languages.

    The essence of assembly language is the same as that of machine language, both of which are directly manipulated on hardware, except that the instructions use abbreviated identifiers, which are easier to identify and remember. It also requires the programmer to write out the specific operation of each step in the form of commands. An assembler usually consists of three parts:

    Directives, pseudo-directives, and macros. Each sentence of instruction of the assembler can only correspond to a very subtle action in the actual operation process, such as moving, self-incrementing, so the assembly source program is generally more lengthy, complex, error-prone, and the use of assembly language programming requires more computer expertise, but the advantages of assembly language are also obvious, the operation that can be completed with assembly language is not the general high-level language can achieve, and the executable file generated by the source program through assembly is not only relatively small, but also executes quickly.

    High-level languages are currently the choice of the vast majority of programmers. Compared with assembly language, it not only combines many related machine instructions into a single instruction, but also removes details related to specific operations but not related to completing the work, such as the use of stacks, registers, etc., thus greatly simplifying the instructions in the program. At the same time, because a lot of details are omitted, the programmer doesn't need to have much expertise.

    High-level languages are mainly relative to assembly languages, which do not refer to a specific language, but include many programming languages, such as the popular VB, VC, FoxPro, Delphi, etc., and the syntax and command format of these languages are different.

  4. Anonymous users2024-02-03

    Hello, in recent years, the programming languages include GO language, Swift language, PHP language.

  5. Anonymous users2024-02-02

    Assembly language and high-level language.

  6. Anonymous users2024-02-01

    The description of a programming language can generally be divided into syntax and semantics. Syntax is the description of which symbols or words are correctly combined in a programming language, while semantics is the explanation of programming. Some languages are defined in specification documents, such as the C specification document, which is also part of the ISO standard, and the post-2011 version is ISO IEC 9899:

    2011, while other languages (like Perl) have a major programming language implementation file that is considered a reference implementation.

Related questions
3 answers2024-02-25

The specific steps are as follows:

Clause. 1. Specify what programming language you want to use (C or C++ or whatever); >>>More

7 answers2024-02-25

Which language should beginners start with?

25 answers2024-02-25

First think about how many parts the whole program needs, and then what functions each part needs, and then think about the process of each part, the global variables needed, and then make it up according to the content of the design.

4 answers2024-02-25

The introductory course of MCU C language programming is not difficult, it is not easy to say, and the first thing to understand is to understand what these two things are when learning MCU C language? The introductory programming of single-chip microcomputer is mainly to learn C language, followed by circuit and programming language. >>>More

7 answers2024-02-25

#include

using namespace std; >>>More