S exam

Question 1 (4 points) Question 1 Unsaved
The __________ step to creating a computer solution is to
analyze the problem.
Question 1 options:

Save Time On Research and Writing
Hire a Pro to Write You a 100% Plagiarism-Free Paper.
Get My Paper

third

first

second

fourth
Save
Question 2 (4 points) Question 2 Unsaved
Between the switch statement’s opening and closing braces
are the individual __________ clauses.
Question 2 options:

Save Time On Research and Writing
Hire a Pro to Write You a 100% Plagiarism-Free Paper.
Get My Paper

if

else

case

if/else
Save
Question 3 (4 points) Question 3 Unsaved
You can use a(n) __________ to help you desk-check an
algorithm.
Question 3 options:

flowchart

pseudocode

IPO chart

desk-check table
Save
Question 4 (4 points) Question 4 Unsaved
If the default clause is not the last clause in the switch
statement, you will need to include a __________ statement at the end of the
clause to stop the computer from processing the instructions in the next case
clause.
Question 4 options:

stop

break

continue

switch
Save
Question 5 (4 points) Question 5 Unsaved
The evaluation of the condition in a __________ loop occurs
before the instructions within the loop are processed.
Question 5 options:

for

pretest

while

posttest
Save
Question 6 (4 points) Question 6 Unsaved
The do while statement must end with a(n) __________.
Question 6 options:

;

.

,

//end do while comment
Save
Question 7 (4 points) Question 7 Unsaved
The __________ step to creating a computer solution is to
code the algorithm into a program.
Question 7 options:

third

second

fourth

fifth
Save
Question 8 (4 points) Question 8 Unsaved
A program that displays a message based on a letter grade
that the user enters would require a(n) __________ selection structure.
Question 8 options:

nested

multiple-alternative

if

else
Save
Question 9 (4 points) Question 9 Unsaved
The __________ condition tells the computer when to stop
looping through the instructions.
Question 9 options:

repeat

continue

loop exit

looping
Save
Question 10 (4 points) Question 10 Unsaved
In the code shown below, the computer continues processing
the inner loop’s instructions until the user enters __________, at which time
the inner loop ends.

int sales = 0;
int region = 1;
int totRegSales = 0;

while (region < 3)
{
cout <<
“First sales amount for Region ”
<<
region << “: “;
cin >> sales;

while (sales >
0)
{
totRegSales =
totRegSales + sales;
cout <<
“Next sales amount for Region ”
<<
region << “: “;
cin >>
sales;
} //end while

cout << endl
<< “Region ” << region
<< ” sales: $”
<<
totRegSales << endl << endl;
region = region +
1;
totRegSales = 0;

} //end while

cout << “End of program” << endl;
Question 10 options:

a negative number

a number greater or equal than 3

the number 0

either the number 0 or a negative number
Save
Previous PageNext Page

Question 11 (4 points)

__________ means to assign a beginning value to a counter or
accumulator variable.
Question 11 options:

Flushing

Iterating

Accumulating

Initializing
Save
Question 12 (4 points)

The __________ combines the object file with other machine
code necessary for your C++ program to run correctly.
Question 12 options:

interpreter

assembler

linker

compiler
Save
Question 13 (4 points)

The linker produces a(n) __________ file, which is a file
that contains all of the machine code necessary to run your C++ program as many
times as desired without the need for translating the program again.
Question 13 options:

source

executable

object

include
Save
Question 14 (4 points)

In the code shown below, the __________ clause begins the
inner loop.
int sales = 0;
int region = 1;
int totRegSales = 0;

while (region < 3)
{
cout <<
“First sales amount for Region ”
<<
region << “: “;
cin >> sales;

while (sales >
0)
{
totRegSales =
totRegSales + sales;
cout <<
“Next sales amount for Region ”
<<
region << “: “;
cin >>
sales;
} //end while

cout << endl
<< “Region ” << region
<< ” sales: $”
<<
totRegSales << endl << endl;
region = region +
1;
totRegSales = 0;

} //end while

cout << “End of program” << endl;
Question 14 options:

int totRegSales = 0;

while (region < 3)

cin >> sales;

while (sales > 0)
Save
Question 15 (4 points)

An assignment statement __________ create(s) a variable in
memory.
Question 15 options:

does not

always

may not

may
Save
Question 16 (4 points)

In a for clause, the __________ argument specifies the
condition that must be true for the loop to continue processing the loop body
instructions.
Question 16 options:

last

first

second

third
Save
Question 17 (4 points)

A __________ is a C++ instruction that causes the computer
to perform some action after it is executed, or processed, by the computer.
Question 17 options:

directive

processing item

statement

keyword
Save
Question 18 (4 points)

Consider the following pseudocode:
1. enter the
code and sales amount
2. calculate
the bonus amount by multiplying the sales amount by .08
3. if (the
code is X)
if (the sales are greater than or equal to 10000)
add 150 to the bonus amount
else
add 125 to the bonus amount
end if
end if
4. display
the bonus amount

If the code is X and the sales amount is 15000, the value of
the bonus amount at the end of the algorithm in the accompanying figure will be
__________.
Question 18 options:

1200

845

1350

720
Save
Question 19 (4 points)

Logical operators are sometimes referred to as __________
operators.
Question 19 options:

Relational

Comparison

Conditional

Boolean
Save
Question 20 (4 points)

The first of two diamonds encountered along a path in a
flowchart represents the condition of the __________ selection structure of a
nested selection structure.
Question 20 options:

switch

inner

nested

outer
Save
Previous PageNext PagePage 2 of 3

________________________________________
Question 21 (4 points)

In a flowchart, the oval symbol is called the __________
symbol.
Question 21 options:

process

selection

start/stop

input/output
Save
Question 22 (4 points)

The And operator in C++ is __________.
Question 22 options:

!

||

&&

&
Save
Question 23 (4 points)

The selection structure is also called the __________
structure.
Question 23 options:

diamond

switch

decision

case
Save
Question 24 (4 points)

__________ an algorithm refers to the process of translating
the algorithm into a language that the computer can understand.
Question 24 options:

Assembling

Translating

Coding

Tracing
Save
Question 25 (4 points)

The processing portion of an IPO chart might include a
__________.
Question 25 options:

statement about the input data

statement about the output data

notation to the user of the program

flowchart

Calculate the price
Make an order in advance and get the best price
Pages (550 words)
$0.00
*Price with a welcome 15% discount applied.
Pro tip: If you want to save more money and pay the lowest price, you need to set a more extended deadline.
We know how difficult it is to be a student these days. That's why our prices are one of the most affordable on the market, and there are no hidden fees.

Instead, we offer bonuses, discounts, and free services to make your experience outstanding.
How it works
Receive a 100% original paper that will pass Turnitin from a top essay writing service
step 1
Upload your instructions
Fill out the order form and provide paper details. You can even attach screenshots or add additional instructions later. If something is not clear or missing, the writer will contact you for clarification.
Pro service tips
How to get the most out of your experience with Essay Fountain
One writer throughout the entire course
If you like the writer, you can hire them again. Just copy & paste their ID on the order form ("Preferred Writer's ID" field). This way, your vocabulary will be uniform, and the writer will be aware of your needs.
The same paper from different writers
You can order essay or any other work from two different writers to choose the best one or give another version to a friend. This can be done through the add-on "Same paper from another writer."
Copy of sources used by the writer
Our college essay writers work with ScienceDirect and other databases. They can send you articles or materials used in PDF or through screenshots. Just tick the "Copy of sources" field on the order form.
Testimonials
See why 20k+ students have chosen us as their sole writing assistance provider
Check out the latest reviews and opinions submitted by real customers worldwide and make an informed decision.
Business Studies
This is fantastic! Thank you so much for your hard work!
Customer 453131, November 16th, 2022
WRTG 393 6360 Advanced Technical Writing (2222)WRTG-393
Patience and truly superb service considering all the information was not uploaded.
Customer 452995, February 4th, 2022
Sociology
Thank you, the journal wa submitted today and I hope to continue receiving services.
Customer 452919, October 28th, 2021
Criminal Justice
Very well and a good paper. Well worded and organized. I would like to know where the references come from
Customer 452519, June 13th, 2020
Sociology
I enjoyed the writer's work. Please send the writer's ID. The paper was available ahead of the due date and numbered each question to ensure mee that it was covered. AWESOME WORK!
Customer 452919, April 20th, 2022
Sociology
Thank you, Team I sincerely appreciate your service.
Customer 452919, April 13th, 2022
Business Studies
This is fantastic! Thank you so much! Great customer service and help!
Customer 453131, November 15th, 2022
Nutrition, Hospitality & Human Services
Thank you for your assistance.
Customer 452919, April 9th, 2024
Nursing
Fabulous fast service
Customer 453075, April 21st, 2022
Marketing
Thank you so much!
Customer 453015, December 13th, 2021
History
Thanking you all in advance for your assistance.
Customer 452919, November 26th, 2024
Humanities
Best Serivces
Customer 452995, January 24th, 2022
11,595
Customer reviews in total
96%
Current satisfaction rate
3 pages
Average paper length
37%
Customers referred by a friend
OUR GIFT TO YOU
15% OFF your first order
Use a coupon FIRST15 and enjoy expert help with any task at the most affordable price.
Claim my 15% OFF Order in Chat