Step-by-step explanation:
Are
Bsushdid djjdu
Dhhduehehid
Dhdhuduhdje
Answer: The company must sold 382 units to break even.
Step-by-step explanation:
Hi, there is no question asked, so I suppose that you need to find the number of items (x) to break even.
To answer this question we have to equal both sides of the equations:
Since costs equal its income:
C=R
So:
38x +19100= 88x
Solving for x
19100= 88x-38x
19100=50x
19100/50 =x
382=x
The company must sold 382 units to break even.
Feel free to ask for more if needed or if you did not understand something.
Answer:
10 minutes
Step-by-step explanation:
Mario can eat e21 hot dog in 6 minutes
Let 35 hot dog eats in x minutes :

Therefore, mario would eat 35 dogs in 10 min.
Assuming we need to find i such that
1 ≤ i ≤ n and t[i]=i.
If we need to find only the first occurrence, we can do:
for i:1 to n {
if t[i]=i then return(i)
}
If exhaustive search is required, then put the results (values of i) in an array or a linked list, return the number of values found, and the array (or linked list).