Answer:
no of unit is 17941
Explanation:
given data
fixed cost = $338,000
variable cost = $143 per unit
fixed cost = $1,244,000
variable cost = $92.50 per unit
solution
we consider here no of unit is = n
so here total cost of labor will be sum of fix and variable cost i.e
total cost of labor = $33800 + $143 n ..........1
and
total cost of capital intensive = $1,244,000 + $92.5 n ..........2
so here in both we prefer cost of capital if cost of capital intensive less than cost of labor
$1,244,000 + $92.5 n < $33800 + $143 n
solve we get
n >
n > 17941
and
cost of producing less than selling cost so here
$1,244,000 + $92.5 n < 197 n
solve it we get
n >
n > 11904
so in both we get greatest no is 17941
so no of unit is 17941
Answer:
80grit
Explanation:
80 grit is coarsest grit that may be used on aluminum
The lowest grit sizes range from 40 to 60. From the given options 80 grit is practically available grit.
What is a sandpaper used for?
They are essentially used for surface preparation. Sandpaper is produced in a range of grit sizes and is used to remove material from surfaces, either to make them smoother (for example, in painting and wood finishing), to remove a layer of material (such as old paint), or sometimes to make the surface rougher (for example, as a preparation for gluing).
Answer:
// Program is written in C++
// Comments are used to explain some lines
// Only the required function is written. The main method is excluded.
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int divSum(int num)
{
// The next line declares the final result of summation of divisors. The variable declared is also
//initialised to 0
int result = 0;
// find all numbers which divide 'num'
for (int i=2; i<=(num/2); i++)
{
// if 'i' is divisor of 'num'
if (num%i==0)
{
if (i==(num/i))
result += i; //add divisor to result
else
result += (i + num/i); //add divisor to result
}
}
cout<<result+1;
}
Answer:
a) 2,945 mC
b) P(t) = -720*e^(-4t) uW
c) -180 uJ
Explanation:
Given:
i (t) = 6*e^(-2*t)
v (t) = 10*di / dt
Find:
( a) Find the charge delivered to the device between t=0 and t=2 s.
( b) Calculate the power absorbed.
( c) Determine the energy absorbed in 3 s.
Solution:
- The amount of charge Q delivered can be determined by:
dQ = i(t) . dt
- Integrate and evaluate the on the interval:
- The power can be calculated by using v(t) and i(t) as follows:
v(t) = 10* di / dt = 10*d(6*e^(-2*t)) /dt
v(t) = 10*(-12*e^(-2*t)) = -120*e^-2*t mV
P(t) = v(t)*i(t) = (-120*e^-2*t) * 6*e^(-2*t)
P(t) = -720*e^(-4t) uW
- The amount of energy W absorbed can be evaluated using P(t) as follows:
- Integrate and evaluate the on the interval: