answersLogoWhite

0


Best Answer

1 nano second is actually the 1,000,000,000th of a second, or 10-9 s. It is a billion-the part of a second in the short scale, where a billion is one thousand million, or 109, but it not in the long scale, where a billion is regarded as one million million, or 1012.

Billion, Trillion (and names for even larger numbers) are not universally unique.

The correct answer to this question therefore is "yes, provided that you assume a short scale billion as common in most English and Arabic speaking countries.

See related links for more.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: 1 nano second is 1 billion of a second is true?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is the speed that traditional computers are measured in?

There are two units of measure. The first is the number of cycles per second performed by the CPU, measured in Hertz (Hz), where 1 Hertz is 1 cycle per second and 1 gigahertz (GHz) is 1 billion cycles per second. All home computers are measured in Hertz. Hertz are also used to measure memory refresh rates, video refresh rates and so on. The second unit of measure is the number of floating point calculations per second, known as flops, where a gigaflop is a billion flops per second. Supercomputers are typically measured in flops.


What is a nano structure?

as the name implies its the study of a structure in nanometes every molecule and atom has structure when referring to nano it means analysing the structure on a nano scale like we see water as fluid but on a nanoscale u see 2 elements 2 hydrogen and 1 oxygen molecule nano structure is basically studying molecules on the nano scale :)


How To design an appropriate logic gate combinatin for a given truth table?

A truth table simply shows you the output that corresponds to each combination of inputs for a given Boolean operator. Boolean operator inputs and outputs have only two possible states (true or false) and operators may be unary (one input), binary (two inputs), ternary (three inputs) and so on. The unary operators are the simplest operators to understand as they only have one input. To cater for all possible outputs we need four unary operators in total: OP1(0) = 0 | OP1(1) = 0 OP2(0) = 0 | OP2(1) = 1 OP3(0) = 1 | OP3(1) = 0 OP4(0) = 1 | OP4(1) = 1 OP1 returns false regardless of whether the input is true or false. OP2 returns the state of the input. OP3 returns the inverted state of the input. OP4 returns true regardless of whether the input is true or false. Of these four operators, OP3 is the most interesting; its truth table corresponds with that of the NOT operator truth table. NOT (false) = true NOT (true) = false Although OP1, OP2 and OP4 logically exist as operators, OP1 and OP4 have no practical uses and OP2 is implicit. Binary operators have two inputs thus each operator has four input combinations: OP (0, 0) OP (0, 1) OP (1, 0) OP (1, 1) With four outputs, we need 16 operators to produce all the possible output combinations: OP0(0, 0) = 0 | OP0(0, 1) = 0 | OP0(1, 0) = 0 | OP0(1, 1) = 0 OP1(0, 0) = 0 | OP1(0, 1) = 0 | OP1(1, 0) = 0 | OP1(1, 1) = 1 OP2(0, 0) = 0 | OP2(0, 1) = 0 | OP2(1, 0) = 1 | OP2(1, 1) = 0 OP3(0, 0) = 0 | OP3(0, 1) = 0 | OP3(1, 0) = 1 | OP3(1, 1) = 1 OP4(0, 0) = 0 | OP4(0, 1) = 1 | OP4(1, 0) = 0 | OP4(1, 1) = 0 OP5(0, 0) = 0 | OP5(0, 1) = 1 | OP5(1, 0) = 0 | OP5(1, 1) = 1 OP6(0, 0) = 0 | OP6(0, 1) = 1 | OP6(1, 0) = 1 | OP6(1, 1) = 0 OP7(0, 0) = 0 | OP7(0, 1) = 1 | OP7(1, 0) = 1 | OP7(1, 1) = 1 OP8(0, 0) = 1 | OP8(0, 1) = 0 | OP8(1, 0) = 0 | OP8(1, 1) = 0 OP9(0, 0) = 1 | OP9(0, 1) = 0 | OP9(1, 0) = 0 | OP9(1, 1) = 1 OPa(0, 0) = 1 | OPa(0, 1) = 0 | OPa(1, 0) = 1 | OPa(1, 1) = 0 OPb(0, 0) = 1 | OPb(0, 1) = 0 | OPb(1, 0) = 1 | OPb(1, 1) = 1 OPc(0, 0) = 1 | OPc(0, 1) = 1 | OPc(1, 0) = 0 | OPc(1, 1) = 0 OPd(0, 0) = 1 | OPd(0, 1) = 1 | OPd(1, 0) = 0 | OPd(1, 1) = 1 OPe(0, 0) = 1 | OPe(0, 1) = 1 | OPe(1, 0) = 1 | OPe(1, 1) = 0 OPf(0, 0) = 1 | OPf(0, 1) = 1 | OPf(1, 0) = 1 | OPf(1, 1) = 1 From this, given two inputs, a and b, we can observe the following: OP0 returns false regardless of the input states. OP1 returns true if both inputs are true: AND (a, b). OP2 returns true if the first input is true and the second is false: AND (a, NOT (b)). OP3 returns true if the first input is true: a. OP4 returns true if the second input is true and the first is false: AND (NOT (a), b). OP5 returns true if the second input is true: b. OP6 returns true if one and only one input is true: XOR (a, b). OP7 returns true if one or both inputs are true: OR (a, b). OP8 returns false if one or both inputs are true: NOT (OR (a, b)). OP9 returns false if one and only one input is true: NOT (XOR (a, b)). OPa returns false if the second input is true: NOT (b). OPb returns false if the second input is true and the first is false: NOT (AND (NOT (a), b)). OPc returns false if the first input is true: NOT (a). OPd returns false if the first input is true and the second is false: NOT (AND (a, NOT (b)). OPe returns false if both inputs are true: NOT (AND (a, b)). OPf returns true regardless of the input states. Note that the lower half of the operator table is simply the inversion of the upper half. E.g., OPc is the same as NOT (OP3). As before, OP0 and OPf logically exist but have no practical uses. OP1, OP6 and OP7 are the three we use most often, corresponding to the AND, XOR and OR operators respectively: AND (false, false) = false AND (false, true) = false AND (true, false) = false AND (true, true) = true XOR (false, false) = false XOR (false, true) = true XOR (true, false) = true XOR (true, true) = false OR (false, false) = false OR (false, true) = true OR (true, false) = true OR (true, true) = true OP8 is sometimes implemented as a NOR operator while OPe is sometimes implemented as a NAND operator.


What is difference between 5GB broadband to 500MB?

Giga = 1 billion Mega = 1 million 5 Gb = 500 Mb * 10


How do you convert meters per second to feet per minute?

Meters per second x 3.28 = feet per second.

Related questions

How big is a nano second?

A nano second is 1 of a second ------ 1000


How many nano seconds are there in a second?

1 day = 86,400 seconds 1 second = 1 billion nanoseconds 1 day = 86,400 billion ns = 86,400,000,000,000 ns = 86.4 trillion ns = 8.64 x 1013 nanoseconds


How many nanoseconds in a second?

There are one billion nanoseconds in a second, because it is 1/1,000,000,000 of a second


How do you figure out how many nano seconds are in a minute?

( 1 nanosecond) x (1,000,000,000 nanoseconds/second) x (60 second/minute) = 60 billion nanosecond/minute


What is the time difference between a nano second and a second?

A nano second is 1 billionth of a second. So there are 999,999,999 nano seconds difference between a second and a nanosecond


How much is a second?

A nano-second is a fraction of 1 x 10-9 a second.


Is one billion nano meters equil to one million micro meters?

Yes 1 nanometer is 1/1000 micrometer 1 billion nanometers = 1 billion/1000 micrometer = 1 million micrometers


How many nano seconds are in a milli second?

1 million.


1 billion times 1 billion equals?

A billion to the second power, or 1000000000000000000 (1018).


How much is a nano second?

A nano-second is a fraction of 1 x 10-9 a second.


How many nanometers make a meter in scientific notation?

The prefix "nano" means ten to the power minus 9. A meter therefore has 10 to the power 9 nanometers; a number which in English is usually called a "billion". The same conversion applies to other places where the prefix "nano" appears - for example, second versus nanosecond.


How long would it take to count one billion dollars at one dollar every second with the work shown?

1 billion seconds 1 dollar per second, 1 billion dollar bills.