1 / 12

Review

Review. A computer program. is a structured combination of data and instructions that is used to operate a computer. is the set of instructions, data, and rules that can be used to construct a program. A programming language. * *. Review.

gravesl
Download Presentation

Review

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Review A computer program • is a structured combination of data and instructions that is used to operate a computer. • is the set of instructions, data, and rules that can be used to construct a program. A programming language * *

  2. Review • is the process of using a programming language to produce a computer program. Programming • is a step-by-step sequence of instructions that describes how a task is to be performed. An algorithm * *

  3. Review • is a description of an algorithm using short English-like statements. Pseudocode A flowchart • is a description of an algorithm that uses specifically defined graphical symbols. * *

  4. Review • is a logically consistent set of instructions that produce a specific result. A procedure *

  5. Review • defines a general set of data and procedural characteristics from which specific objects are created. A class • is a self-contained unit that consists of both data and the specific procedures that can be applied to the data. An object * *

  6. Review A source program • consists of the program statements comprising a C++ or other programming language program. • is the result of compiling a source program. An object program * *

  7. Review • adds code from libraries to your file. Collects the object code from all files in the workspace and puts them into one executable program. • is a program that can be run by a computer. An executable program Linking * *

  8. Review • is a program that translates a source program into an object program. A compiler • is a program that translates individual source program statements, one at a time, into executable statements. Each statement is executed immediately after translation. An interpreter * *

  9. Review • contain constant, variable, and function declarations needed by a program. h files *

  10. Review • are formatting instructions that are part of iostream.h. • \n º endl = hard return \t = tab Escape sequences *

  11. Review • controls the sequence of execution, evaluates an expression, or does nothing, • and ends with a semicolon. Statement *

  12. compiler h files (.obj file) object code linked to libraries object code from other source files exe. file Review (.cpp file)source code

More Related