Learning Programming Terminology

Антон Меринов

Антон Меринов

Автор статьи. Интересы, навыки: Профессиональное администрирование СУБД Oracle Database, веб-разработка, IT-World. Подробнее.

 
 
 

Main programming termsA computer program is a set of instructions that you write to tell a computer what to do. Computer equipment, such as a monitor or keyboard, is hardware, and programs are software. A program that performs a task for a user (such as calculating and producing paychecks, word processing, or playing a game) is application software; a program that manages the computer itself (such as Windows or Linux) is system software. The logic behind any computer program, whether it is an application or system program, determines the exact order of instructions needed to produce desired results. Much of this book describes how to develop the logic to create application software.

All computer programs ultimately are converted to machine language. Machine language, or machine code, is the most basic set of instructions that a computer can execute. Each type of processor (the internal hardware that handles computer instructions) has its own set of machine language instructions. Programmers often describe machine language using 1s and 0s to represent the on-and-off circuitry of computer systems.

The system that uses only 1s and 0s is the binary numbering system. Appendix B describes the binary system in detail. Later in this article, you will learn that bytecode is the name for the binary code created when Java programs are converted to machine language.

Machine language is a low-level programming language, or one that corresponds closely to a computer processor’s circuitry. Low-level languages require you to use memory addresses for specific machines when you create commands. This means that low-level languages are difficult to use and must be customized for every type of machine on which a program runs.

Fortunately, programming has evolved into an easier task because of the development of high-level programming languages. A high-level programming language allows you to use a vocabulary of reasonable terms, such as read, write, or add, instead of the sequences of 1s and 0s that perform these tasks. High-level languages also allow you to assign single-word, intuitive names to areas of computer memory where you store data. This means you can use identifiers such as hoursWorked or rateOfPay, rather than having to remember their memory locations. Currently, over 2,000 high-level programming languages are available to developers; Java is one of them.

Each high-level language has its own syntax, or rules about how language elements are combined correctly to produce usable statements. For example, depending on the specific high-level language, you might use the verb print or write to produce output. All languages have a specific, limited vocabulary (the language’s keywords) and a specific set of rules for using that vocabulary. When you are learning a computer programming language, such as Java, C++, or Visual Basic, you really are learning the vocabulary and syntax for that language.

Using a programming language, programmers write a series of program statements, similar to English sentences, to carry out the tasks they want the program to perform. Program statements are also known as commands because they are orders to the computer, such as "output this word” or “add these two numbers.”

Main terms for programmers

After the program statements are written, high-level language programmers use a computer program called a compiler or interpreter to translate their language statements into machine language. A compiler translates an entire program before carrying out any statements, or executing them, whereas an interpreter translates one program statement at a time, executing a statement as soon as it is translated.

Whether you use a compiler or interpreter often depends on the programming language you use. For example, C++ is a compiled language, and Visual Basic is an interpreted language. Each type of translator has its supporters; programs written in compiled languages execute more quickly, whereas programs written in interpreted languages can be easier to develop and debug. Java uses the best of both technolo­gies: a compiler to translate your programming statements and an interpreter to read the compiled code line by line when the program executes (also called at run time).

Compilers and interpreters issue one or more error messages each time they encounter an invalid program statement—that is, a statement containing a syntax error, or misuse of the language. Examples of syntax errors include misspelling a keyword or omitting a word that a statement requires. When a syntax error is detected, the programmer can correct the error and attempt another translation. Repairing all syntax errors is the first part of the process of debugging a program—freeing the program of all flaws or errors, also known as bugs. Figure 1-1 illustrates the steps a programmer takes while developing an executable program.

The program development process

Figure 1-1 The program development process

As Figure 1-1 shows, you might write a program with correct syntax that still contains logic errors. A logic error is a bug that allows a program to run, but that causes it to operate incorrectly. Correct logic requires that all the right commands be issued in the appropriate order. Examples of logic errors include multiplying two values when you meant to divide them or producing output prior to obtaining the appropriate input. When you develop a program of any significant size, you should plan its logic before you write any program statements.

Correcting logic errors is much more difficult than correcting syntax errors. Syntax errors are discovered by the language translator when you compile a program, but a program can be free of syntax errors and execute while still retaining logic errors. Often you can identify logic errors only when you examine a program’s output. For example, if you know an employee’s paycheck should contain the value $4,000, but when you examine a payroll program’s output you see that it holds $40, then a logic error has occurred. Perhaps an incorrect calculation was performed, or maybe the hours worked value was output by mistake instead of the net pay value. When output is incorrect, the programmer must carefully examine all the statements within the program, revise or move the offending statements, and translate and test the program again.

Just because a program produces correct output does not mean it is free from logic errors. For example, suppose that a program should multiply two values entered by the user, that the user enters two 2s, and the output is 4. The program might actually be adding the values by mistake. The programmer would discover the logic error only by entering different values, such as 5 and 7, and examining the result.

Programmers call some logic errors semantic errors. For example, if you misspell a programming language word, you commit a syntax error, but if you use a correct word in the wrong context, you commit a semantic error.

 

TWO TRUTHS & A LIE

In each “Two Truths & a Lie" section, two of the numbered statements are true, and one is false. Identify the false statement and explain why it is false.

  1. Unlike a low-level programming language, a high-level programming language allows you to use a vocabulary of reasonable terms instead of the sequences of on-and-off switches that perform the corresponding tasks.
  2. A syntax error occurs when you misuse a language; locating and repairing all syntax errors is part of the process of debugging a program.
  3. Logic errors are fairly easy to find because the software that translates a program finds all the logic errors for you.

Вас заинтересует / Intresting for you:

The benefits of functional pro...
The benefits of functional pro... 1817 views enyberet Fri, 14 Sep 2018, 04:55:03
Database Systems We Considered
Database Systems We Considered 1421 views Александров Попков Fri, 19 Oct 2018, 16:13:09
Business process classificatio...
Business process classificatio... 3169 views Семен Mon, 04 Nov 2019, 06:11:13
What Is a Service Level Agreem...
What Is a Service Level Agreem... 2497 views wootan Sat, 18 Aug 2018, 13:43:02
Comments (0)
There are no comments posted here yet
Leave your comments
Posting as Guest
×
Suggested Locations