answersLogoWhite

0

What is 10.00 minus 2.38?

Updated: 12/16/2022
User Avatar

Wiki User

12y ago

Best Answer

10.00 - 2.38 = 7.62

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is 10.00 minus 2.38?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Average price to install a 13 seer 5 ton central air unit?

Goodman 5 ton 16 steer AC unt 4700.00 minus FPL 1000 credit and 300 tax rebate so it cost 3400 installed


What is unary minus operator?

No. The subtraction operator is a binary operator that returns the result of subtracting the rhs operand from the lhs operand. The unary minus operator simply negates the rhs operand. int x = -5; // unary minus. x is (-5) int y = -x; // unary minus. y is (+5) y -= x; // binary minus/assign operator. y is (+10) --x; // unary decrement operator. x is (-6) y -= (-x); // binary minus/assign and unary minus operators. y is(+4)


Do nuclear engineers make bombs?

It can and it is Although U-238 is not very radioactive -- it's sometimes called depleted Uranium -- it is used as a "tamper" in the core of nuclear warhead. Its use as a tamper greatly increases the yield energy of the device. Wikipedia has a pretty good article to check out. Uranium 238 is not fissionable with thermal neutrons; uranium 238 cannot be used in bombs as fissionable, explosive material.However as the final stage tamper of a hydrogen bomb the high energy fusion neutrons will fission Uranium-238, possibly generating 90% of the yield and a corresponding amount of the fallout of such bombs.


What is the AISI equivalent of S355JR?

Grade 350 WA


Is there a way how to generate a random number in between -1000 and 1000 in c?

#include <stdlib.h> int myrand() { double d = rand() / RAND_MAX; /* (0,1] */ return d * 2001 - 1000 + 0.5; /* [-1000,+1000] */ }