Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Consider the function definition below. / * * Requires: * Answer in question below * * Modifies: * Answer in question below * * Effects:

Consider the function definition below.
/
*
*
Requires:
*
Answer in question below
*
*
Modifies:
*
Answer in question below
*
*
Effects: Repeatedly prompts the user to enter a value
*
count number of times.
*
Returns the average of values entered by the user.
*
/
double average
(
int count
)
{
cout
<
<
"Calculating average of
"
<
<
count
<
<
"
values."
<
<
endl;
double sum
=
0
.
0
;
double value
=
0
.
0
;
for
(
int i
=
0
; i
<
count; i
+
+
)
{
cout
<
<
"Enter a value:
"
;
cin
>
>
value;
sum
+
=
value;
}
return sum
/
count;
}
Which of the following should be added to the Modifies part of the RME? Select all that apply.
Consider the function definition below.
/
*
*
Requires:
*
Answer in question below
*
*
Modifies:
*
Answer in question below
*
*
Effects: Repeatedly prompts the user to enter a value
*
count number of times.
*
Returns the average of values entered by the user.
*
/
double average
(
int count
)
{
cout
<
<
"Calculating average of
"
<
<
count
<
<
"
values."
<
<
endl;
double sum
=
0
.
0
;
double value
=
0
.
0
;
for
(
int i
=
0
; i
<
count; i
+
+
)
{
cout
<
<
"Enter a value:
"
;
cin
>
>
value;
sum
+
=
value;
}
return sum
/
count;
}
Which of the following should be added to the Modifies part of the RME? Select all that apply.
count is an integer and the number of values to enter.
Nothing
sum
>
0
count
>
0
value
>
0

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Logics For Databases And Information Systems

Authors: Jan Chomicki ,Gunter Saake

1st Edition

1461375827, 978-1461375821

More Books

Students also viewed these Databases questions