answersLogoWhite

0

£6-£7 per kilo

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is the formula for the rate of written down value method?

R=1- n√scrap value/original cost x100


You can approximate e by substituting large values for n into the expression Use the caret to enter exponents?

(1+1/n)^n


What does chatarra el baston mean?

My guess is that you have the words arranged incorrectly. "Chatarra" is like scrap metal, and "bastón" is a cane. Él bastón chatarra would mean "the metal cane" (implying that the metal is scrap metal.)


How much is sunoco car coins worthoco car coins who collection how much are they worth?

obviously not much unless you collect them, if so what are they worth to you? Aluminum scrap value about 60 cents per pound scrap value, They don't take up much space, put them i n the back bottom of you sock drawer and will them to your grandson, they may be worth something then, in 25 years.


What is the value of n?

That depends on the value of "n". n2 (n squared) simply means "n" times "n".


How do you get through the sootopolis city gym in Pokemon emerald?

you have to break all the ice tiles nord: N east: E south: S west: W 1st floor:stand on the stairs N W N E E N W A STAIR WILL APPEAR 2st floor: stand on the stairs N W W W N N E E S E E S E E N N W W W A STAIR WILL APPEAR 3st floor: stand on the stairs (this is the hardest one) N W W N W S W W N N N E S E E N E S E S E S E N E E S E N N N W W S W N W W


What is value n?

n is the no. so therefore a n value is the numerical or fix value e.g. 7^n, where n is 2 your result will be 49.


What is the value of 5X6 n?

what is the value of 5x6 =n


What is the value of n-25?

The answer is totally dependent on the value of n and, if you do not provide that value, there can be no answer.


How do you spell nineteen?

Nineteen is spelled as N-I-N-E-T-E-E-N.


What is n plus-n?

what is the value of "N"? we can solve this equation when we know the value of N, once we know the value of N we just add 1 to it,


C program for exponential series?

exponential series #include<stdio.h> #include<conio.h> #include<math.h> void main() { int i,x,n; float e=1,denominator=1; clrscr(); printf("Enter the value of x,n\n"); scanf("%d,%d",&x,&n); while(i<=n) { e+=(float)(pow(x,i)/denominator); denominator*=i; ++i; } printf("answer is %f",e); }