Which tool used to plan computer programs is an english-like representation of program steps?

Is a combination of all the components required to process and store data using a computer

Is the collection of physical devices that contain a computer system.

What are some examples of Hardware?

keyboards, mouse, speakers and printers

is computer instructions that tell the hardware what to do.

are sets of instructions for a computer

Is the act of developing and writing programs.

comprises all the programs you apply to a task

What are some examples of application software?

word processing, spreadsheets, payroll and inventory programs and games

Comprises the programs that you use to manage your computer, including operating systems

What are some examples of System Software?

Windows, Linux, Apple, UNIX

Together computer hardware and software accomplish three major operations in most programs:

input, output, processing

Describes the entry of data items into computer memory using hardware devices.

Hardware devices that perform input operations include?

Include all the text, numbers, and other information processed by a computer

Data items may involve organizing them, checking them for accuracy, or performing mathematical operations on them.

Is the hardware component that processes data

CPU (Central Processing Unit)

Describes the operation of retrieving information from memory and sending it to a device, so people can view, interpret and work with the results.

What are the output devices?

Are types of hardware equipment, that hold information for later retrieval.

What are some examples of storage Devices?

Flash drive, disk, flash media

Are used to write languages.

What are some examples of Programming Languages?

Visual Basic, C#, C++, Java, or COBOL

Is the set of instructions a programmer writes in a programming language

Is the act of writing programming language instructions. 

Of a language is its grammar rules.

Is an error in language or grammar.

Is the temporary, internal storage within a computer.

Is temporary, internal computer storage.

RAM (Random Access Memory)

Describes storage whose contents are lost when power is lost.

Describes storage whose contents are retained when power is lost.

Is a computer's on/off circuitry language.

Is the statements a programmer writes in a programming language.

Is translated machine language

Translates a high-level language into machine language and indicates if you have used a programming language incorrectly.

Is represented using a series of 0s and 1s.

A program to carry out its instructions

Used to write programs that are typed directly from a keyboard.

What are some examples of Scripting Languages?

Scripting languages are stored as text rather than as _____ executable files.

Occurs when incorrect instructions are performed, or when instructions are performed in the wrong order.

You develop the ____ of the computer program when you give instructions to the computer in a specific sequence, without omitting any instructions or adding extraneous instructions

Is a name memory location whose value can vary

consists of the steps that occur during a program's lifetime.

The Program development cycle

What are the seven steps of The Program Development Cycle?

1. Understand the problem, 2. Plan the logic, 3.Code the program, 4. Use Software (a compiler or interpreter) to translate the program into machine language, 5. Test the program, 6. put the program into production, 7. Maintain the program

Are people who employ and benefit from computer programs

Consists of all the supporting paperwork for a program.

Is the sequence of steps necessary to solve any problem.

What are the two most common planning tools in programming?

Pseudocode and flowcharts

Is a program development tool that lists tasks, objectives, and events.

Is a program development tool that delineates input, output, processing.

Is the process of walking through a program solution on paper.

Supports English-like syntax.

High-Level Programming Language 

Is made up of 1s and 0s and does not use easily interpreted variable names.

Low-Level machine language 

Is the process of finding and correcting program errors.

Is the entire set of actions an organization must take to switch over to using a new program or set of programs.

Consists of all the improvements and corrections made to a program after it is in production.

is an English -like representation of the logical steps it takes to solve a problem.

is a pictorial representation of the logical steps it takes to solve a problem.

indicates an input operation and is represented by a parallelogram in flowcharts.

indicates a processing operation and is represented by a rectangle in flowcharts.

indicates an output operation and is represented by a parallelogram in flowcharts. 

is represented by a parallelogram in flowcharts

Input/Output symbol or I/O Symbol

connect the steps in a flowchart

indicates the beginning or end of a flowchart segment and is represented by a lozenge.

is a repetition of a series of steps.

occurs when repeating logic cannot end.

is the act of testing a value

is shaped like a diamond and used to represent a decision on a flowchart

is a preselected value that stops the execution of a program.

dummy value and sentinel value

is a program that you use to create simple text files; it is similar to a word processor, but without as many features.

is a software package that provides an editor, compiler, and other programming tools.

integrated development environment (IDE)

is software package that contains useful fools for creating programs in Visual Basic, C++, and C#.

Microsoft Visual Studio IDE

is a location on your computer screen at which you type text entries to communicate with the compute's operating systems.

allows users to interact with a program in a graphical environment.

Graphical User Interface (GUI)

is a programming model that focuses on the procedures that programmers create.

is a programming model that focuses on objects, or "things", and describes their features (also called attributes) and behaviors.

Object-oriented programming

True/False. Hardware is the equipment, or the devices, associated with a computer. Software is computer instructions.

True/False.The grammar rules of a computer programming language are its syntax.

True/False.You write programs using machine language, and translation software converts the statements to a programming language.

False.You write a programming language such as Visual Basic or Java, and a translation program (called a compiler or interpreter) converts the statements to machine language, which is 1s and 0s.

True/False. A program with syntax errors can execute but might produce incorrect results.

False. A program with syntax errors cannot execute; a program with no syntax errors can execute, but might produce incorrect results.

True/False. Although the syntax of programming languages differs, the same program logic can be expressed in different languages.

True/False. Most simple computer programs include steps that perform, input, processing, and output.

What are the 7 steps in the Program Development Cycle?

1. understand the problem 2. plan the logic 3. code the program 4. use software (a compiler or interpreter) to translate the program into machine language. 5. test the program 6. Put the program into production 7. Maintain the program.

True/False. Understanding the problem that must be solved can be one of the most difficult aspects of programming.

True/False. The two most commonly used logic -planning tools are flowcharts and pseudocode.

Flowcharting a program is a very different process if you use an older programming language instead of a newer one.

False. Despite their differences, programming languages are quiet alike in their basic capabilities---- each can handle input operations, arithmetic processing, output operations, and other standard functions. The logic developed to solve a programming problem can be executed using any number of languages.

What is the logic-planning tool and name of the parallelogram?

Flowchart and Input/Output Symbol (I/O Symbol)

What is the name of the logic-planning tool and name of the rectangle?

Flowchart and processing symbol

What is the name of the logic-planning tool and the arrow?

What is the name of the logic-planning tool and the shape of a racetrack?

Flowchart and Terminal Symbol/Lozenge

What is the logic-planning tool and the diamond shape name?

Flowchart and Decision Symbol

True/False. A program that contains an infinite loop is one that never ends.

A preselected value that stops the execution of a program is often called a dummy value or sentinel value.

True/False. Many programming languages use the term fe (file end) to refer to a marker that automatically acts as a sentinel. 

False. The term eof (end of file) is the common term for a file sentinel. 

You can type a program into what two editors?

plain text editor and text editor

True/False. You can type a program into an editor that is part of an integrated development environment, but using a plain text editor provides you with more programming help. 

False. An integrated development environment provides more programming help than a plain text editor.

True/False. When a program runs from the command line, a user types text to provide input.

True/False. Although GUI and command-line environments look different, the logic of input, processing and output apply to both program types. 

True/False.The oldest computer programs were written in many separate modules. 

False. The oldest programs were written in a single piece; newer programs are divided into modules. 

Which tool used to plan computer programs is a pictorial representation of program steps?

A flowchart diagram is a graphical representation of the series of steps to run a program. In other words, a flow chart is the graphical form of an algorithm. There are different geometric patterns to demonstrate that set of rules. Flowchart can be particularly helpful in programming.

Which language is used to write programs in simple English words?

The assembly language is written in simple English language, so it is easily understandable by the users. It does not require any translator as the machine code is directly executed by the computer. In assembly language, the assembler is used to convert the assembly code into machine code.

What are three 3 types of programming and tools?

There are three types of programming languages: machine language, assembly language, and high-level language. Machine language is easier for the computer to understand but harder for the programmer to understand.

What are the step by step instructions of writing a computer program called?

The process of writing computer instructions in a programming language is known as Coding..
A computer program is usually written by a computer programmer in a programming language. ... .
That line of code is written in the Python programming language..