Chapter One Flashcards
Computer System
Is a combination of all the components required to process and store data using a computer.
Hardware
Is the collection of physical devices that comprise a computer system.
Software
Consists of programs that tell the computer what to do.
Programs
Are sets of instructions for a computer.
Programming
Is the act of developing and writing programs.
Application Software
Comprises all the programs you apply to a task.
App
Is a piece of application software; the term is frequently used for applications on mobile devices.
System Software
Comprises the program that you use to manage your computer.
Input
Describes the entry of data into computer memory using hardware devices such as keyboards and mice.
Data items
Include all the text, numbers, and other information processed by a computer.
Processing
Data items may involve organizing them, checking them for accuracy, or performing mathematical operations on them.
CPU or central processing unit
Is the computer hardware component that processes data.
Output
Describes the operation of retrieving information from memory and sending it to a device, such as a monitor or printer, so people can view, interpret, and work with the results.
Information
Is processed data.
Storage devices
Are types of hardware equipment, such as disks, that hold information for later retrieval.
Cloud
Refers to remote computers accessed through the internet.
Programming languages
Such as Visual Basic, C#, C++, or java are used to write programs.
Program Code
Is the set of instructions a programmer writes in a programming language.
Coding the Program
Is the act of writing programming language instructions.
Syntax
Of a language is its grammar rules.
Syntax Error
Is an error in language or grammar.
Computer Memory
Is the temporary, internal storage within a computer.
Random Access Memory (RAM)
Is temporary, internal computer storage.
Volatile
Describes storage whose contents are lost when power is lost.
Nonvolatile
Describes storage whose contents are retained when power is lost.
Machine Language
Is a computer’s on/off circuitry language.
Source Code
Is the statements a programmer writes in a programming language.
Object Code
Is translated machine language.
Compiler or Interpreter
Translates a high-level language into machine language and indicates if you have used a programming language incorrectly.
Binary Language
Is represented using a series of 0s and 1s
To Run or Execute
A program is to carry out its instructions.
Scripting Languages (also called Scripting Programming Languages or Script Languages)
Such as Python, Lua, Perl, and PHP are used to write programs that are typed directly from a keyboard. Scripting languages are stored as text rather than as binary executables files.
A Logical Error
Occurs when incorrect instructions are performed, or when instructions are performed in the wrong order.
Logic
Of a computer program is the complete sequence of instructions that lead to a problem’s solution.
Variable
Is a named memory location whose value can vary.
Program Development Cycle
Consists of the steps that occur during a programs lifetime.
Users (end users)
Are people who employ and benefit from computer programs.
Documentation
Consists of all the supporting paperwork for a program.
Algorithm
Is the sequence of steps necessary to solve any problem.
IPO Chart
Is a program development tool that delineates input, processing, and output tasks.
TOE Chart
Is a program development tool that lists tasks, objects, and events.
Desk-checking
Is the process of walking through a program solution on paper.
High-level programming Language
Supports English-like syntax.
Low-level machine Language
Is made up of 1s and 0s and does not use easily interpreted variable name.
Debugging
Is the process of finding and correcting program errors.
Conversion
Is the entire set of actions an organization must take to switch over to using a new program or set of programs.
Maintenance
Consists of all the improvements and corrections made to a program after it is in production.
Pseudocode
Is an English-like representation of the logical steps it takes to solve a problem.
Flowchart
Is a pictorial representation of the logical steps it takes to solve a problem.
Input symbol
Indicates an input operation and is represented by a parallelogram in flowcharts.
Processing symbol
Indicates a processing operation and is represented by a rectangle in flowcharts.
Output symbol
Indicates an output operation and is represented by a parallelogram in flowcharts
Input/output symbol I/O symbol
Is represented by a parallelogram in flowcharts.
Flowlines or arrows
Connect the steps in a flowchart.
Terminal symbol
Indicates the beginning or end of a flowchart segment and is represented by a lozenge.
Infinite Loop
Occurs when repeating logic cannot end.
Making a Decision
Is the act of testing a value.
Decision symbol
Is shaped like a diamond and used to represent decisions in flowcharts.
Dummy value
Is a preselected value that stops the execution of a program.
Sentinel value
Is a preselected value that stops the execution of a program.
Term eof
Means End Of File.
Text editor
Is a program that you use to create simple text files; it is similar to a word processor, but without as many features.
Integrated Development Environment (IDE)
is a software package that provides an editor, compiler, and other programming tools.
Microsoft Visual Studio IDE
Is a software package that contains useful tools for creating programs in Visual Basic, C++, and C#.
Command Line
Is a location on your computer screen at which you type text entries to communicate with the computers imparting system
Graphical user interface (GUI)
Allows users to interact with a program in a graphical environment.
Procedural Programming
Is a programming model that focuses on the procedures that programmers create.
Object-oriented programming
Is a programming model that focuses on objects, or “things,” and describes their features (also called attributes) and behaviors.