Answer:
The Greatest possible value of one of the integer is 140.
Step-by-step explanation:
Given: The average (arithmetic mean) of five different positive integers is 30.
To find: What is the greatest possible value of one of these integers?
Explanation: we are given that the arithmetic mean of five positive integer
is 30.
Let the five positive integers are A,B,C,D,E
The arithmetic mean :
=30.
On multiplying both side by 5.
A+B+C+D+E =150.
The least values of A ,B,C and D can be 1 ,2,3,4.
Then : 1 +2+3+4+E =150
On simplification 10+E =150
On subtraction both side by 10 we get
E = 140 .
Therefore, the Greatest possible value of one of the integer is 140.
Answer: x = 50
Concept:
Here, we need to know the idea of alternative interior angles and the angle sum theorem.
<u>Alternative interior angles</u> are angles that are formed inside the two parallel lines, and the values are equal.
The <u>angle sum theorem</u> implies that the sum of interior angles of a triangle is 180°
If you are still confused, please refer to the attachment below or let me know.
Step-by-step explanation:
<u>Given information:</u>
AC ║ DE
∠ABC = 85°
∠A = 135°
<u>Find the value of ∠BAC</u>
∠A + ∠BAC = 180° (Supplementary angle)
(135°) + ∠BAC = 180°
∠BAC = 45°
<u>Find the value of ∠BCA</u>
∠ABC + ∠BAC + ∠BCA = 180° (Angle sum theorem)
(85°) + (45°) + ∠BCA = 180°
∠BCA = 50°
<u>Find the value of x (∠EBC)</u>
∠EBC ≅ ∠BCA (Alternative interior angles)
Since, ∠BCA = 50°
Therefore, ∠EBC = 50°

Hope this helps!! :)
Please let me know if you have any questions
Answer:
$ 8,695.35
Step-by-step explanation:
This is a compound interest question
Amount after t years = A = P(1 + r/n)^nt
Where P = Initial Amount saved
r = interest rate
t = time in years
n = compounding frequency
A = 10,000
r = 3.5 %
t = 21 - 17 = 4 years
n = Compounded monthly = 12
Step 1
Converting R percent to r a decimal
r = R/100 = 3.5%/100 = 0.035 per year.
P = A / (1 + r/n)^nt
Solving our equation:
P = 10000 / ( 1 + (0.035/12)^12 ×4 =
P = $8,695.35
The principal investment required to get a total amount, principal plus interest, of $10,000.00 from interest compounded monthly at a rate of 3.5% per year for 4 years is $8,695.35.
<span>#include <iostream>
using namespace std;
class InventoryTag {
public:
InventoryTag();
int getQuantityRemaining() const;
void addInventory(int numItems);
private:
int quantityRemaining;
};
InventoryTag::InventoryTag() {
quantityRemaining = 0;
}
int InventoryTag::getQuantityRemaining() const {
return quantityRemaining;
}
void InventoryTag::addInventory(int numItems) {
if (numItems > 10) {
quantityRemaining = quantityRemaining + numItems;
}
}
int main() {
InventoryTag redSweater;
int sweaterShipment = 0;
int sweaterInventoryBefore = 0;
sweaterInventoryBefore = redSweater.getQuantityRemaining();
sweaterShipment = 25;
cout << "Beginning tests." << endl;
// FIXME add unit test for addInventory
/* Your solution goes here */
cout << "Tests complete." << endl;
return 0;
}</span>
Answer:
A
Step-by-step explanation: I just guessed