The price charged for the batch of cookies is $8.925
Step-by-step explanation:
Marked price refers to the price at which an establishment offers to sale a product. For-profits to occur, marked price is always more than cost price (cost of producing the item)
Here the local bakery has marked up the price by 155%. This means that the local bakery has increased the marked price by 155% above the cost price accrued to them.
The cost price of the cookies= $ 3.5
Hence the increased marked price= (155/100) *3.5
Increased marked price= $ 5.425
Hence the charge customers need to pay for the cookies= increased marked price + cost price
Charge = $5.425+ $3.5= $8.925
the price charged for the batch of cookies is $8.925
Answer:
How big is the book?
If it has more than 96 pages remaining 25% each night is quicker if it has less that 96 or less remaining 24 pages a night is faster
Step-by-step explanation:
Answer:
m∠R = 39 degrees
Step-by-step explanation:
As complementary angles add up to 90 degrees, we can set up an equation to get x then find the measure of ∠R:
m∠R + m∠S = 90
2x+7+4x-13=90
6x+7-13=90
6x-6=90
6x=96
x=16
Since m∠R = (2x+7), 2x+7 would be 2(16)+7 or 39 degrees. So in conclusion, m∠R = 39 degrees
Answer:
B
Step-by-step explanation:
This answer shows values of -2, and less than -2
Hello,
function minmax(int p1,int p2,int p3, int adr_big, int adr_small)
{ int mini=p1,maxi=p1;
if (p1>p2) {mini=p2;}
else {maxi=p2;};
if (p3>maxi) maxi=p3;
if (p3<mini) mini=p3;
*adr_big=maxi;
*adr_small=mini;
};
// main
int a=31,b=5,c=19,big,small;
minmax(a,b,c,&big,&small);