Home Help & Support Search Tips Options: Case:



   Need A Tutor?    |   Need Homework Help?                                                                             Help and Support     | Join or Cancel

Computer Programming:    Exam 6

Exam  1     2     3     4     5     6     7    8     9    10     Midterm   1    2     Final Exam  1   2
Graded Program Assignment   
1   2    3    4    5    6    7    8    9           Python Compiler


Parameters are defined when a Subchart is cerated and is included with the Subchart name.
False
                                                                                                                                               
getData(name, test1, test2, test3, test4, test5) is an example of calling or referencing a SubChart.
 
False
                       
In RAPTOR Subcharts are more difficult to create and understand.
False
                       
The major distinguishing feature of Procedures is that each Procedure has its own set of variables.
True    
           
When a Procedure is called, all of its statements are executed until the procedure "END" is reached.
True    
                       
When a RAPTOR Subchart or Procedure is executed, it will always begin with the def reserved word.
False
           
Clear_Console, Set_Precision(), Is_Number(), Is_String() are examples of built-in Subcharts
and / or Procedures used in RAPTOR. 

True
                       
A parameter is simply a local variable of a procedure that has special properties.  
True    
                       
Parameter variables are used to provide flexibility in Procedures.   
True
                       
Procedures make it harder to change the behavior of a process because each call to the process
can set a different set of initial values.

False
 
A language in which programs, when executed, are first converted entirely to machine code, resulting in slower starts,
but often faster performance.
Compiled language
 
A language in which programs, when executed, are immediately run (interpreted) line by line, resulting in faster starts,
but sometimes slower performance.
Interpreted language.
 
Writing programs in a matter which separates the code into smaller sections, each performing a single task.
Modular programming
 
Code is executed in a top to bottom, one line at a time.
Sequential programming
 
The safest action is to assign the value 1 to accumulators before using them
False
 
When one loop appears inside another is is called an indented loop.
False
 
When you have a five element array and use subscript 6 your subscript is
said to be out of bounds.
True
 
You can either increment or decrement the loop control variable.
True
 
You can improve the efficiency of a program by leaving a loop as soon as
a match is found in the array.
True
 
A single section of code, executed line by line, is repeated multiple times.
Loop program structure
 
Some lines of code are executed, and other skipped, based on whether or not certain statements evaluate to "true" or "false".
Conditional program structure
 
In incorrect, misspelled, or missplaced command or symbol that causes a program to fail during execution.
Syntax error
 
An error that does not prevent a program from running but causes incorrect behavior or output.
Logic error
 
An error caused by bad data entered by a user.
Input error
 
Any error that occurs while the program is being executed (running).
Runtime error
 
A variable whose scope (the area where it is known and can be used) is a larger area, often an entire program .
Global variable
 
A variable whose scope is a smaller area of the program, often just a single procedure or function/method.
Local variable
 
A variable that can store alphanumeric characters (letters, symbols, numbers).
String variable
 
A variable that can be set to "true" or "false".
Boolean variable
 
A variable, often used in a loop, that holds a value representing the number of times an action has occurred.
Counter
 
A number generated from a formula by a computer that, for all intents and purposes, has the appearance of being random.
Pseudo random number
 
A value often generated based on time, that is used in a formula to initialize a pseudo random number generator.
Pseudo Random number seed
 
This lets programmers more easily understand the purpose of the variables.
Giving variables meaningful names
 
Be initialized before being used to ensure that they're starting values are known.
After being defined, variables should
 
To add to a variable is to ____________________ the variable.
increment
 
Use a(n) ____________________ to indicate the position of a particular item within an array.
Subscript
 
When working with arrays you can use ____________________ in several ways:
To hold the size of an array, as the array values, and as a subscript.

Constants

This type of function returns either True or False

Boolean
 
This is an example of a data type conversation function
toReal
 
This type of error occurs when you try to assign a value of one data type to a variable of another data type
type mismatch error
 
Type of keyboard that uses a touch screen as the input device.
virtual keyboards
 
A keyboard key, like Caps Lock, that turns a feature on or off is called a _______ key
Toggle
 
________ are specialized digital video cameras that capture images and send them to a computer
for broadcast over the internet

webcams
 
________ connect to computers and project computer output and can
control the computer with the use of a special pen
 
__________ printers use a technology similar to that used in a photocopying machine
laser
 
______ printers are widely used with ATMs
thermal
 
_________ printers are printers connected to the Internet that provide printing service to others on the Internet
cloud
 
________ are special-purpose printers that use output from graphics tablets or other graphical input
devices that are typically found in architectural and engineering environments
plotters
 
this penlike device typically used with tablets and mobile devices
stylus
 
what is ergonomics
the study of human factors related to things people use
 
These screens can be touched with more than one finger, which allows for interactions such as rotating
graphical objects on the screen with your hand or zooming in and out by pinching and stretching your fingers.
monitor
 
Bar code readers use _______ embedded in them to read bar codes.
photoelectric cells
 
This reading device is used in banks to read the numbers on the bottom of checks and deposit slips.
magnetic-ink character recognition (MICR)
 
which character recognition system is used for standardized multiple-choice testing
optical-mark recognition
 
OMR, OCR, and MICR are all types of _______.
character and mark recognition devices
 
This is a string inside of another string
substring
 
The code for a library function must appear in a program in order for the program to call the library function.
False
 
Complex mathematical expressions can sometimes be simplified by breaking out part of the expression
and putting it in a function.
True
 
It is the programmer's responsibility to initialize all variables that must start with a specific value
True
 
Many newer programming languages such as C++ Java and C# use subscript 1 to access the first element of the array.
False
 
Many newer programming languages such as C++ Java and C# use the square bracket notation for arrays.
True
 
Parallel arrays must contain the same data type
False
 
The for loop is a good tool when working with arrays because you frequently need to process every
element of an array from beginning to end.
True
 
The loop control variable is initialized after entering the loop.
False
 
You can improve the efficiency of a program by leaving a loop as soon as a match is found in the array.
True
 
A posttest loop is sometimes called a ____________________ loop
Do-while
 
A subscript also called a(n) ____________________ is a number that indicates the position
of a particular item within an array.

Index
 
The body of a WHILE loop will not run if the condition evaluates as True.
False
 
Counters are updated by 1, accumulators are updated by the value of the variable.
True
 
Each FOR loop has an initial, final, and step value.
True
 
Some FOR loops have three exiting arrows such as yes, no, and maybe.
False
 
A built-in function that generates a list of integer values.
Range function
 
An ______ loop usually occurs when the programmer forgets to write code inside the loop
that makes the test condition False.

infinite
 
Can be run inside a loop:
Output, input, assignment, and other loops
 
Only a loop of the same type can be used as an inner loop.
False
 
Format for while clause in Python:
while (condition):
 
Where are Counters and Accumulators usually found?
Inside loops
 
Sum of numbers that accumulates with each iteration of a loop.
Running Total
 
What is not a standard element of a FOR loop?
Sentinal Value
 
The best method for validating input is the use the _____ loop.
WHILE
 
In a _____ loop, the inner loop goes through all of its iterations for every single iteration of an outer loop.
nested
 
What is a disadvantage of coding in one long sequence structure?
If parts of the duplicated code have to be corrected, the correction has to be made many times.
 
In flowcharting, the decision structure and repetition structure both use the ______ symbol
to represent the condition that is tested.

diamond
 
In Python, an infinite loop usually occurs when the computer accesses the wrong memory address.
False
 
To use a WHILE loop, the programmer must know how many times the loop will be executed.
False
 
This is a prewritten function that is built into a programming language
library function
 
This term describes any mechanism that accepts input, performs some operation that cannot be seen on the input,
and produces output
black box
 
This part of a function definition specifies the data type of the value that the function returns
header
 
This part of a function definition is comprised of one or more statements that are executed when the function is called
body
 
This statement causes a function to end and sends a value back to the part of the program that called the function
Send
 
This is a design tool that describes the input, processing, and output of a function
IPO chart
 
In many languages it is an error to assign a real number to an integer variable.
True
 
In some languages you must use a library function to raise a number to a power.
True
 
In a case-sensitive comparison, the strings "yoda" and "YODA" are equivalent.
False
 
GIGO Stands for
Garbage in, garbage out
 
The integrity of a program's output is only as good as a the integrity of the program's ________
input
 
The input operation that appears just before a validation loop is known as the ________
priming read
 
Validation loops are also known as
defensive programming loops
 
The term empty input describes what happens when
an input operation attempts to read data, but there is no data to read
 
The process of input validation works like this: When the user of a program enters invalid data, the program should ask the user,
"Are you sure you meant to enter that?" If the user answers "yes", the program should accept the data.
False
 
The priming read appears inside the validation loop.
False
 
The approach of using a posttest validation loop shown in this chapter requires a priming read.
False
 
___________ is any data or instructions that are entered into a computer
input
 
The arrangement of keys on a keyboard, QWERTY reflects the keyboard layout by _________ taking the letters of the
first six alphabetic characters found on the
top row of keys displaying letters
 
Keyboards that include all the keys found on a typical virtual keyboard, as well as extra keys, such as
function and navigation keys
laptop keyboards
 
________-input devices convert sounds into a form that can be processed by the system unit
audio
 
the most widely used audio-input device is the __________
microphone
 
the series of dots that form the image on a monitor are called _______
pixels
 
This indicates the monitor's ability to display colors by comparing the light intensity of the brightest
white to the darkest black.
contrast ratios
 
the distance between each pixel is called _______
dot (pixel) pitch
 
the size, or _________, is measured by the diagonal length of a monitor's viewing area
active display area
 
what is the aspect ratio of a display proportional relationship between a display's width and height; square
4:3 and newer ones are 16:9
 
a dedicated, mobile device for storing and displaying e-books and other electronic media including
electronic newspapers and magazines
E-book readers (e-readers)
 
specialized devices with a large display connected to a computer projector that are widely used in
classrooms and corporate boardrooms
digital or interactive whiteboard
 
What kind of specialized monitor is used for cell phones with screens that wrap around the edges
of the phone and for curved monitors whose edges wrap toward the viewer
flexible screens
 
two categories of laser printers are
personal and shared laser printers
 
what does the duplex feature of a printer do
allows automatic printing on both sides of a sheet paper
 
printers connected to the internet that provide printing services to others on the internet are called ________
cloud printers
 
the most widely used audio-output devices are __________
speakers and headsets
 
what sensors collect data about your hand movements
VR controllers
 
what keyboards are primarily used on cell phones and tablers
virtual keyboards
 
the mouse, game controllers, and touch screens are all types of _________ devices. flatbed, document,
and portable are types of __________ that accept documents and convert them into machine-readable form
pointing and optical scanners
 
supermarkets use _______ to scan codes printed on product containers
bar code readers and scanners
 
the most common card reader is the ________ card reader which reads encoded information
stored on a thin magnetic
strip located on the back of the card
magnetic
 
__________ tags are tiny chips that can be embedded into almost anything and contain
information used to track and locate lost pets
to monitor production and update inventory
RFID or radio-frequency identification
 
________ recognition is often used to score standardized multiple-choice tests
Optical-mark
 
3D printers, also known as ____________, create three-dimensional shapes by adding very thin layer
after layer of material until the final
shape is fully formed
additive manufacturing
 
____________ combine the capabilities of a scanner, printer, fax, and
copy machine
multifunctional devices (MFD)
 
A ______________ is any injury that is caused by fast, repetitive work
that can generate neck, wrist, hand, and arm pain
repetitive strain injury (RSI)
 
A parallel array is an array that stores another array in each element.
False
 
An indefinite loop is a loop that never stops:
False
 
Arrays cannot be used if you need to search for a range of values
False
 
Both the while loop and the for loop are examples of pretest loops.
True
 
Declaring a named constant makes code easier to modify and understand.
True
 
Every high-level computer programming language contains a while statement
True
 
Forgetting to initialize and alter the loop control variable are common mistakes that programmers sometimes make.
True
 
In some cases a loop control variable does not have to be initialized.
False
 
All array elements have the same ____________________ name but each individual element
also has a unique subscript
indicating how far away it is from the first element
Group
 
In a for statement a loop control variable is initialized tested and ____________________.
Incremented/altered/changed/decremented
 
 
____________________ are frequently used to accumulate totals and to validate data.
Loops
 
____________________ can ensure that a value is the correct data type or that it falls within an acceptable range.
Validation
 
A ____ relates parallel arrays.
Subscript
 
A ____ search starts looking in the middle of a sorted list and then determines whether it should continue higher or lower.
Binary
 
A comparison is correct only when the correct ____ and operator are used.
Operands
 
A loop within another loop is known as a(n) ____ loop
Nested
 
A mistake programmers often make with loops is that they _________.
include statements inside the loop that belong outside the loop
 
A mistake programmers often make with loops is that they ____ neglect to initialize the loop control
variable prior to entering the
loop body
 
A program contains an array that holds all the names of the days of the week. Which of the following is True?
The highest subscript is 6.
 
A(n) ____ is another name for a subscript.
Index
 
A(n) ____ is any numeric variable you use to count the number of times an event has occurred.
Counter
 
A(n) ____ is very similar to a counter that you use to count loop iterations except that you usually
add a value other than one to this type of variable.
Accumulator
 
A(n) ____ loop executes a predetermined number of times.
Definite
 
All array elements have the same group ____.
Name
 
An array can be used to replace
Nested decisions
 
An array is a(n) ____ of values in computer memory
List
 
Array elements all have the same ____ in common.
Data type
 
Besides making your code easier to modify using a ____ makes the code easier to understand.
Named constant
 
Business reports that list only totals with no individual item details are called
Summary reports
 
Every array has a(n) ____ size
Finite
 
If you declare a variable to be Boolean you can set its value to ____.
True or False
 
In a ____ the loop body executes at least one time because the loop control variable is not tested until after one iteration.
Posttest loop
 
In a ____ the loop body might never execute because the question controlling the loop might be False the first time it is asked.
Pretest loop correct
 
In all languages subscript values must be sequential
Integers
 
Many loop control variable values are altered by ___ or adding to them.
Incrementing
 
Named ____ hold values that do not change during a program's execution
Constants
 
Once your logic enters the body of a structured loop ____.
The entire loop must execute
 
One advantage to using a named constant is that the statement becomes ____.
Self-documenting
 
Parallel arrays are most useful when value pairs have a(n) ____ relationship.
Indirect
 
Programmers employ the acronym ____ to mean that if your input is incorrect your output is worthless.
GIGO
 
Programmers use the term ____ to describe programs that are well designed and easy to understand and maintain.
Elegant
 
Providing array values is sometimes called ____.
populating the array
 
The ____ loop provides three actions in one compact statement.
For
 
The amount by which a for loop control variable changes is often called a ____ value.
Step
 
The first step in a while loop is typically to ____.
Initialize the loop control variable
 
The number of bytes in an array is always a multiple of the number of ____ in an array.
Elements
 
____is a technique with which you try to prepare for all possible errors before they occur.
Defensive programming
 
____ a data item means you override incorrect data by setting the variable to a specific value.
Forcing
 
You usually use the for loop with ____ loops.
Definite
 
Which statement is True of arrays?
Only whole numbers can be used for array subscripts
 
When you search through a list from one end to the other you are performing a ____.
Linear search
 
When one loop appears inside another the loop that contains the other loop is called the ____ loop.
Outer
 
When a subscript is not within the range of acceptable subscripts it is said to be ____.
Out of bounds
 
Usually when you create nested loops, each loop has its own ____.
Loop control variable
 
Use a counter or a(n) ____ to control a loop's repetitions.
Sentinel value
 
To search an array for a(n) ____ match you can store either the highest or lowest value of each range for comparison.,
Range
 
The True benefit of using an array lies in your ability to use a ____ as a subscript to the array.
Variable
 
The number of elements in an array is called the ____ of the array.
Size
 
You use subscripts 1 through 10 to access the elements in a ten element array.
False
 
A(n) ____________________ is a variable set to indicate whether some event has occurred.
Flag
 
The body of a WHILE loop will not run if the condition evaluates as True.
False
 
Counters are updated by 1, accumulators are updated by the value of the variable.
True
 
Each FOR loop has an initial, final, and step value.
True
 
Some FOR loops have three exiting arrows such as yes, no, and maybe.
False
 
Range function
A built-in function that generates a list of integer values.
 
An ______ loop usually occurs when the programmer forgets to write code inside the loop that
makes the test condition False.
infinite
 
Can be run inside a loop:
Output, input, assignment, and other loops
 
Only a loop of the same type can be used as an inner loop.
False
 
Format for while clause in Python:
while (condition):
 
Where are Counters and Accumulators usually found?
Inside loops
 
The sum of numbers that accumulates with each iteration of a loop.
Running Total
 
What is not a standard element of a FOR loop?
Sentinal Value
 
The best method for validating input is the use the _____ loop.
WHILE
 
In a _____ loop, the inner loop goes through all of its iterations for every single iteration of an outer loop.
nested
 
What is a disadvantage of coding in one long sequence structure?
If parts of the duplicated code have to be corrected, the correction has to be made many times.
 
In flowcharting, the decision structure and repetition structure both use the ______ symbol
to represent the condition that is tested.
diamond
 
In Python, an infinite loop usually occurs when the computer accesses the wrong memory address.
False
 
To use a WHILE loop, the programmer must know how many times the loop will be executed.
False
 
This is a prewritten function that is built into a programming language
library function
 
This term describes any mechanism that accepts input, performs some operation that cannot
be seen on the input, and produces output
black box
 
This part of a function definition specifies the data type of the value that the function returns
header
 
This part of a function definition is comprised of one or more statements that are executed when the function is called
body
 
This statement causes a function to end and sends a value back to the part of the program that called the function
Send
 
This is a design tool that describes the input, processing, and output of a function
IPO chart
 
In many languages it is an error to assign a real number to an integer variable.
True
 
In some languages you must use a library function to raise a number to a power.
True
 
In a case-sensitive comparison, the strings "yoda" and "YODA" are equivalent.
False
 
GIGO Stands for
Garbage in, garbage out
 
The integrity of a program's output is only as good as a the integrity of the program's ________
input
 
The input operation that appears just before a validation loop is known as the ________
priming read
 
Validation loops are also known as
defensive programming loops
 
The term empty input describes what happens when
an input operation attempts to read data, but there is no data to read
 
The process of input validation works like this: When the user of a program enters invalid data,
the program should ask the user, "Are you sure you meant to enter that?"
If the user answers "yes", the program should accept the data.
False
 
The priming read appears inside the validation loop.
False
 
The approach of using a posttest validation loop shown in this chapter requires a priming read.
False
 
___________ is any data or instructions that are entered into a computer
input
 
The arrangement of keys on a keyboard, QWERTY reflects the keyboard layout by _________ taking
the letters of the first six alphabetic characters found on the
top row of keys displaying letters
 
Keyboards that include all the keys found on a typical virtual keyboard, as well as extra keys, such as function and navigation keys
laptop keyboards
 
________-input devices convert sounds into a form that can be processed by the system unit
audio
 
the most widely used audio-input device is the __________
microphone
 
the series of dots that form the image on a monitor are called _______
pixels
 
This indicates the monitor's ability to display colors by comparing the light intensity of the brightest white to the darkest black.
contrast ratios
 
the distance between each pixel is called _______
dot (pixel) pitch
 
the size, or _________, is measured by the diagonal length of a monitor's viewing area
active display area
 
what is the aspect ratio of a display proportional relationship between a display's width and height; square
4:3 and newer ones are 16:9
 
a dedicated, mobile device for storing and displaying e-books and other electronic media including
electronic newspapers and magazines
E-book readers (e-readers)
 
specialized devices with a large display connected to a computer projector that are widely used in
classrooms and corporate boardrooms
digital or interactive whiteboard
 
What kind of specialized monitor is used for cell phones with screens that wrap around the edges of the
phone and for curved monitors whose edges wrap toward the viewer
flexible screens
 
two categories of laser printers are
personal and shared laser printers
 
what does the duplex feature of a printer do
allows automatic printing on both sides of a sheet paper
 
printers connected to the internet that provide printing services to others on the internet are called ________
cloud printers
 
the most widely used audio-output devices are __________
speakers and headsets
 
what sensors collect data about your hand movements
VR controllers
 
what keyboards are primarily used on cell phones and tablers
virtual keyboards
 
The mouse, game controllers, and touch screens are all types of _________ devices. flatbed, document,
and portable are types of __________ that accept documents and convert them into machine-readable form
pointing and optical scanners
 
supermarkets use _______ to scan codes printed on product containers
bar code readers and scanners
 
the most common card reader is the ________ card reader which reads encoded information
stored on a thin magnetic strip located on the back of the card

magnetic
 
__________ tags are tiny chips that can be embedded into almost anything and contain information
used to track and locate lost pets; to monitor production and update inventory

RFID or radio-frequency identification
 
3D printers, also known as ____________, create three-dimensional shapes by adding very thin
layer after layer of material until the final shape is fully formed

additive manufacturing
 
____________ combine the capabilities of a scanner, printer, fax, and copy machine
multifunctional devices (MFD)
 
A ______________ is any injury that is caused by fast, repetitive work that can generate neck, wrist, hand, and arm pain
repetitive strain injury (RSI)
 
A parallel array is an array that stores another array in each element.
False
 
An indefinite loop is a loop that never stops:
False
 
Arrays cannot be used if you need to search for a range of values
False
 
Both the while loop and the for loop are examples of pretest loops.
True
 
Declaring a named constant makes code easier to modify and understand.
True
 
Every high-level computer programming language contains a while statement
True
 
Forgetting to initialize and alter the loop control variable are common mistakes that programmers sometimes make.
True
 
In some cases a loop control variable does not have to be initialized.
False
 
All array elements have the same ____________________ name but each individual element
also has a unique subscript indicating how far away it is from the first element

Group
 
In a for statement a loop control variable is initialized tested and ____________________.
Incremented/altered/changed/decremented
 
____________________ are frequently used to accumulate totals and to validate data.
Loops
 
____________________ can ensure that a value is the correct data type or that it falls within an acceptable range.
Validation
 
A ____ relates parallel arrays.
Subscript
 
A ____ search starts looking in the middle of a sorted list and then determines whether it should continue higher or lower.
Binary
 
A comparison is correct only when the correct ____ and operator are used.
Operands
 
A loop within another loop is known as a(n) ____ loop
Nested
 
A mistake programmers often make with loops is that they _________.
include statements inside the loop that belong outside the loop
 
A mistake programmers often make with loops is that they ____ neglect to initialize the loop control variable prior to entering the
loop body
 
A program contains an array that holds all the names of the days of the week. Which of the following is True?
The highest subscript is 6.
 
A(n) ____ is another name for a subscript.
Index
 
A(n) ____ is any numeric variable you use to count the number of times an event has occurred.
Counter
 
A(n) ____ is very similar to a counter that you use to count loop iterations except that you usually
add a value other than one to this type of variable.

Accumulator
 
A(n) ____ loop executes a predetermined number of times.
Definite
 
All array elements have the same group ____.
Name
 
An array can be used to replace
Nested decisions
 
An array is a(n) ____ of values in computer memory
List
 
Array elements all have the same ____ in common.
Data type
 
Besides making your code easier to modify using a ____ makes the code easier to understand.
Named constant
 
Business reports that list only totals with no individual item details are called
Summary reports
 
Every array has a(n) ____ size
Finite
 
In a ____ the loop body executes at least one time because the loop control variable is not tested until after one iteration.
Posttest loop
 
In a ____ the loop body might never execute because the question controlling the loop might be False the first time it is asked.
Pretest loop correct
 
In all languages subscript values must be sequential
Integers
 
Many loop control variable values are altered by ___ or adding to them.
Incrementing
 
Named ____ hold values that do not change during a program's execution
Constants
 
Once your logic enters the body of a structured loop ____.
The entire loop must execute
 
One advantage to using a named constant is that the statement becomes ____.
Self-documenting
 
Parallel arrays are most useful when value pairs have a(n) ____ relationship.
Indirect
 
Programmers employ the acronym ____ to mean that if your input is incorrect your output is worthless.
GIGO
 
Programmers use the term ____ to describe programs that are well designed and easy to understand and maintain.
Elegant
 
Providing array values is sometimes called ____.
populating the array
 
The ____ loop provides three actions in one compact statement.
For
 
The amount by which a for loop control variable changes is often called a ____ value.
Step
 
The first step in a while loop is typically to ____.
Initialize the loop control variable
 
The number of bytes in an array is always a multiple of the number of ____ in an array.
Elements
 
____is a technique with which you try to prepare for all possible errors before they occur.
Defensive programming
 
____ a data item means you override incorrect data by setting the variable to a specific value.
Forcing
 
You usually use the for loop with ____ loops.
Definite
 
Which statement is True of arrays?
Only whole numbers can be used for array subscripts
 
When you search through a list from one end to the other you are performing a ____.
Linear search
 
When one loop appears inside another the loop that contains the other loop is called the ____ loop.
Outer
 
When a subscript is not within the range of acceptable subscripts it is said to be ____.
Out of bounds
 
Usually when you create nested loops, each loop has its own ____.
Loop control variable
 
Use a counter or a(n) ____ to control a loop's repetitions.
Sentinel value
 
To search an array for a(n) ____ match you can store either the highest or lowest value of each range for comparison.,
Range
 
The True benefit of using an array lies in your ability to use a ____ as a subscript to the array.
Variable
 
The number of elements in an array is called the ____ of the array.
Size
 
You use subscripts 1 through 10 to access the elements in a ten element array.
False

Exam  1     2     3     4     5     6     7    8     9    10     Midterm   1    2     Final Exam  1   2
Graded Program Assignment   
1   2    3    4    5    6    7    8    9           Python Compiler


Home
Accounting & Finance Business
Computer Science General Studies Math Sciences
Civics Exam
Everything Else
Help & Support
Join/Cancel
Contact Us
 Login / Log Out