Deck 9: Introduction to High-Level Language Programming

Full screen (f)
exit full mode
Question
Newer languages such as Java and C# were developed specifically to run on a variety of hardware platforms without the need for a separate ____________________ for each type of machine.
Use Space or
up arrow
down arrow
to flip the card.
Question
Individual assembly language statements, though easier to read, can be no more powerful than the underlying ____________________.
Question
In assembly language, the programmer need not manage the details of the movement of data items within memory.
Question
A modern programming EXE provides a text editor, a file manager, a compiler, a linker and loader, and tools for debugging, all within this one piece of software. _________________________
Question
When we moved from machine language to assembly language, we needed a piece of system software-a(n)____________________-to translate assembly language instructions into machine language.
Question
The problem identification document commits the final and complete problem specification to paper and guides the software developers in all subsequent decisions.
Question
In early programming languages, conserving machine resources was not an issue.
Question
In a high-level language, the programmer's only responsibilities for managing data items are to declare (or in the case of Python, create)all constants and variables the program will use.
Question
The availability of the appropriate compiler guarantees that a program developed on one type of machine can be compiled on a different type of machine.
Question
The programmer's task is to devise the appropriate step-by-step sequence of "imperative commands" that, when carried out by the computer, accomplish the desired task.
Question
The ____________________ computer architecture is characterized by sequential fetch-decode-execute cycles.
Question
If anything is changed on an already-tested module, regression testing is done to be sure that this change hasn't introduced a new error into code that was previously correct.
Question
Each assembly language statement corresponds to, at most, one ____________________ language statement.
Question
A program written in a(n)procedural language consists of sequences of statements that manipulate data items. _________________________
Question
Even though a high-level programming language allows the programmer to think of memory locations in abstract rather than physical terms, the programmer is still directing, via program instructions, every change in the value of a memory location.
Question
Maintenance should be viewed as a separate step in the software development life cycle. _________________________
Question
The program implementation phase is the time to plan how it is to be done. _________________________
Question
Each low-level language supports if statements and while loops. _________________________
Question
Each language learned about the uses of its own notation (--, //, or #)to denote a program comment.
Question
Program maintenance, the process of adapting an existing software product, may consume as much as 85% of the total software development life cycle budget.
Question
Source code is also known as _______.

A)assembly language instructions
B)link language instructions
C)compiling instructions
D)high-level language instructions
Question
Machine language is also known as ____ code.

A)object
B)source
C)link
D)reloadable
Question
Which language does NOT require a semicolon to terminate an executable program statement?

A)Python
B)Ada
C)C++
D)C#
Question
The ______ code for a task that needs to be performed often can be stored in a code library

A)object
B)processing
C)container
D)assembly
Question
Syntax is the rules for exactly how _______ must be written in a programming language.

A)orders
B)instructions
C)executables
D)statements
Question
In assembly language, the programmer must take a microscopic view of a task, breaking it down into tiny subtasks at the level of what is going on in individual ____.

A)memory locations
B)programs
C)subtasks
D)tasks
Question
Procedural languages are also called ____ languages.

A)immediate
B)translated
C)interpreted
D)imperative
Question
Assembly language programs are ____ specific.

A)language
B)compiler
C)architecture
D)machine
Question
A ____ stores and fetches values to and from memory cells.

A)random access memory
B)read-only memory
C)flash memory
D)memory cache encoder
Question
Rapid prototyping allows _______ between the user and the programmer to be identified and corrected early in the development process.

A)processing errors
B)config errors
C)miscommunications
D)interfacing errors
Question
Imperative commands are instructions in the _______.

A)machine Language
B)assembly Language
C)processing language
D)programming language
Question
____ a program means running it on many data sets to be sure its performance falls within required limits.

A)Debugging
B)Benchmarking
C)Configuring
D)Coding
Question
____ includes online tutorials or help systems that the user can bring up while the program is running, and (less often)written user's manuals.

A)Technical documentation
B)Rough documentation
C)First-level documentation
D)User documentation
Question
____ is the process of translating the detailed designs into computer code.

A)Translating
B)Interpreting
C)Coding
D)Configuring
Question
The ____ evaluates a proposed project and compares the costs and benefits of various solutions.

A)design study
B)feasibility study
C)specification study
D)work breakdown study
Question
The software translator used to convert our high-level language instructions into machine language instructions is called a(n)____.

A)compiler
B)editor
C)loader
D)linker
Question
High-level programming languages were created to overcome the deficiencies of _______ language.

A)compiling
B)assembly
C)object
D)link
Question
_______ is the time to plan how the program will accomplish the determined task.

A)Program design
B)Assembly design
C)Processing design
D)Program statement document
Question
____ takes place on each module (subtask code)as it is completed.

A)Regression testing
B)System testing
C)Unit testing
D)Integration testing
Question
Most programming languages are now presented within an ____.

A)integrated development environment
B)integrated deployment environment
C)implementation development environment
D)interactive development environment
Question
With regard to imperative languages, what is the programmer's task?
Question
Discuss all the different types of documentation and the various purposes they serve.
Question
What is pair programming?
Question
Briefly discuss program maintenance and the importance of continuing upkeep on the software.
Question
List four expectations of a program written in a high-level language.
Question
Briefly present the function of the following components of an IDE: text editor, file system, language translator, and debugger.
Question
Talk about the importance of compilers with special attention to modern, portable software.
Question
What is the purpose of the feasibility study?
Question
Briefly discuss the importance of debugging in the software lifecycle, and provide some insight on the errors that are corrected during the debugging process.
Question
List four disadvantages of assembly language.
Unlock Deck
Sign up to unlock the cards in this deck!
Unlock Deck
Unlock Deck
1/50
auto play flashcards
Play
simple tutorial
Full screen (f)
exit full mode
Deck 9: Introduction to High-Level Language Programming
1
Newer languages such as Java and C# were developed specifically to run on a variety of hardware platforms without the need for a separate ____________________ for each type of machine.
compiler
2
Individual assembly language statements, though easier to read, can be no more powerful than the underlying ____________________.
instruction set
3
In assembly language, the programmer need not manage the details of the movement of data items within memory.
False
4
A modern programming EXE provides a text editor, a file manager, a compiler, a linker and loader, and tools for debugging, all within this one piece of software. _________________________
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
5
When we moved from machine language to assembly language, we needed a piece of system software-a(n)____________________-to translate assembly language instructions into machine language.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
6
The problem identification document commits the final and complete problem specification to paper and guides the software developers in all subsequent decisions.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
7
In early programming languages, conserving machine resources was not an issue.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
8
In a high-level language, the programmer's only responsibilities for managing data items are to declare (or in the case of Python, create)all constants and variables the program will use.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
9
The availability of the appropriate compiler guarantees that a program developed on one type of machine can be compiled on a different type of machine.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
10
The programmer's task is to devise the appropriate step-by-step sequence of "imperative commands" that, when carried out by the computer, accomplish the desired task.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
11
The ____________________ computer architecture is characterized by sequential fetch-decode-execute cycles.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
12
If anything is changed on an already-tested module, regression testing is done to be sure that this change hasn't introduced a new error into code that was previously correct.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
13
Each assembly language statement corresponds to, at most, one ____________________ language statement.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
14
A program written in a(n)procedural language consists of sequences of statements that manipulate data items. _________________________
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
15
Even though a high-level programming language allows the programmer to think of memory locations in abstract rather than physical terms, the programmer is still directing, via program instructions, every change in the value of a memory location.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
16
Maintenance should be viewed as a separate step in the software development life cycle. _________________________
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
17
The program implementation phase is the time to plan how it is to be done. _________________________
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
18
Each low-level language supports if statements and while loops. _________________________
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
19
Each language learned about the uses of its own notation (--, //, or #)to denote a program comment.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
20
Program maintenance, the process of adapting an existing software product, may consume as much as 85% of the total software development life cycle budget.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
21
Source code is also known as _______.

A)assembly language instructions
B)link language instructions
C)compiling instructions
D)high-level language instructions
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
22
Machine language is also known as ____ code.

A)object
B)source
C)link
D)reloadable
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
23
Which language does NOT require a semicolon to terminate an executable program statement?

A)Python
B)Ada
C)C++
D)C#
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
24
The ______ code for a task that needs to be performed often can be stored in a code library

A)object
B)processing
C)container
D)assembly
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
25
Syntax is the rules for exactly how _______ must be written in a programming language.

A)orders
B)instructions
C)executables
D)statements
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
26
In assembly language, the programmer must take a microscopic view of a task, breaking it down into tiny subtasks at the level of what is going on in individual ____.

A)memory locations
B)programs
C)subtasks
D)tasks
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
27
Procedural languages are also called ____ languages.

A)immediate
B)translated
C)interpreted
D)imperative
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
28
Assembly language programs are ____ specific.

A)language
B)compiler
C)architecture
D)machine
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
29
A ____ stores and fetches values to and from memory cells.

A)random access memory
B)read-only memory
C)flash memory
D)memory cache encoder
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
30
Rapid prototyping allows _______ between the user and the programmer to be identified and corrected early in the development process.

A)processing errors
B)config errors
C)miscommunications
D)interfacing errors
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
31
Imperative commands are instructions in the _______.

A)machine Language
B)assembly Language
C)processing language
D)programming language
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
32
____ a program means running it on many data sets to be sure its performance falls within required limits.

A)Debugging
B)Benchmarking
C)Configuring
D)Coding
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
33
____ includes online tutorials or help systems that the user can bring up while the program is running, and (less often)written user's manuals.

A)Technical documentation
B)Rough documentation
C)First-level documentation
D)User documentation
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
34
____ is the process of translating the detailed designs into computer code.

A)Translating
B)Interpreting
C)Coding
D)Configuring
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
35
The ____ evaluates a proposed project and compares the costs and benefits of various solutions.

A)design study
B)feasibility study
C)specification study
D)work breakdown study
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
36
The software translator used to convert our high-level language instructions into machine language instructions is called a(n)____.

A)compiler
B)editor
C)loader
D)linker
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
37
High-level programming languages were created to overcome the deficiencies of _______ language.

A)compiling
B)assembly
C)object
D)link
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
38
_______ is the time to plan how the program will accomplish the determined task.

A)Program design
B)Assembly design
C)Processing design
D)Program statement document
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
39
____ takes place on each module (subtask code)as it is completed.

A)Regression testing
B)System testing
C)Unit testing
D)Integration testing
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
40
Most programming languages are now presented within an ____.

A)integrated development environment
B)integrated deployment environment
C)implementation development environment
D)interactive development environment
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
41
With regard to imperative languages, what is the programmer's task?
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
42
Discuss all the different types of documentation and the various purposes they serve.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
43
What is pair programming?
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
44
Briefly discuss program maintenance and the importance of continuing upkeep on the software.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
45
List four expectations of a program written in a high-level language.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
46
Briefly present the function of the following components of an IDE: text editor, file system, language translator, and debugger.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
47
Talk about the importance of compilers with special attention to modern, portable software.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
48
What is the purpose of the feasibility study?
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
49
Briefly discuss the importance of debugging in the software lifecycle, and provide some insight on the errors that are corrected during the debugging process.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
50
List four disadvantages of assembly language.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
locked card icon
Unlock Deck
Unlock for access to all 50 flashcards in this deck.