answersLogoWhite

0

Napoleon Bonaparte is entombed in a sarcophagus located at Les Invalides in Paris, France. The sarcophagus itself is made of red quartzite and rests on a green marble base. It contains only Napoleon's remains, as the tomb is dedicated solely to him, without the inclusion of any other individuals.

User Avatar

AnswerBot

2w ago

What else can I help you with?

Related Questions

How do you expand binomials A plus b to the degree of n?

It isnC0*A^n*b^0 + nC1*A^(n-1)*b^1 + ... + nCr*A^(n-r)*b^r + ... + nCn*A^0*b^n where nCr = n!/[r!*(n-r)!]


What song says b bananas b a n n a s?

Its spelt B-A-N-A-N-A-S its by Gwen Stephani


How do you find the power of a quotient?

The power of a quotient is the quotient of the power! (a/b)^n = (a^n) / (b^n) where a/b is the quotient and n is the power.


How much is 1 share of NASDAQ worth curently?

its worth nothing n stuff (b^o^)b its worth nothing n stuff (b^o^)b its worth nothing n stuff (b^o^)b its worth nothing n stuff (b^o^)b its worth nothing n stuff (b^o^)b its worth nothing n stuff (b^o^)b


What is adding subtracting multiplying or dividing each side of an equality by the same number?

In algebra this is a method of solving equations for a variable. It stands to reason that if A=B then A+1=B+1. In fact it is true that if N is a number then A+N=B+N A-N=B-N A x N = B x N A/N = B/N We can do anything we want as long as we do the same thing to both sides.


If a divides b which one is the denomitor?

If a divides b then a is a factor of b and b is a multiple of a.Either of them could be the denominator. In a/b, b is the denominator while in b/a, a is the denominator.------------------------------------------------------------------------------------------------------------------If a divides b then b=n*a for some number n. Thus n=b/a


What is 5 n is b n please?

b is equal to 5


How many links will a network with n node sand b branches have?

The number of links are: L=b-(n-1)=b-n+1 Where b=Number of branches n=number of nodes


What are some meaningful experiences the Jonas Brothers had?

nick n miley b-up Jo n Taylor swift b-up nick n miley b-up Jo n Taylor swift b-up nick n miley b-up Jo n Taylor swift b-up


What does a number to the power of zero equal?

Any number to the power '0' equals '1'. Proof ; Let a^(n) = b Then dividing a^(n) / a^(n) = b/b a^(n-n) = b/b a^(0) = 1


Program in c language divede a given number in two parts such that product of these two numbers is maximum?

int maxprod (int n) { return n/2; } int main (void) { int n, a, b; n= 7; /* for example */ a= maxprod (n); b= n-a; printf ("%d+%d=%d, %d*%d=%d\n", a, b, a+b, a, b, a*b); }


Design an algorithm that accepts an array A of size N all the elements of a should be multiplied by 10 and updates the contents of A copy contents of a into array B display the result from array B?

Start dimension A[N], B[N] For c=1 to N Input A[N] Next For c=1 to N A[N] = A[N] *10 next For c+1 to N B[N] = A[N] Next for c=1 to N print B[N] Next End