Ch 1 Introduction Flashcards
Algorithm
A general store by step process for solving a problem
Bug
An error in a program
Byte code
An intermediate language between source code and object code. Many modern languages first compile am source code into byte code and then interpret the byte code with a program called a virtual machine
Comment
Information in a program that is meant for other programmers and has no effect on the execution of the program
Compile
To translate a program written in a high level language into a low level language all at once, in preparation for later execution
Debugging
The process of finding and removing any of the three kinds of programming errors
Exception
Another name for a runtime error
Executable
Another name for an object that is ready to be executed
Formal language
Any one of the languages that prior have designed for specific purposes such as representing mathematical ideas or computer programs. All programming languages are formal languages
High level language
A programming language like Python that is designed to be easy for humans to write and read
Interpret
To execute a program in a high level language by translating it line by line
Low level language
A programming language that is designed to be easy for a computer to execute also called machine language or assembly language
Natural language
Any one of the languages that people speak that evolved naturally
Object code
The output of the compiler after it translates the program
Parse
To examine a program and analyze the syntactic structure