Answer:
let number = 0
while number < 1
begin
print "Enter a positive integer: "
read number
end
end_while
find and print number's factors:
let prime = TRUE
let currentFactor = 2
let lastFactor = the square root of number truncated
to an integer value
while currentFactor <= lastFactor
begin
if number is evenly divisible by currentFactor
begin
print currentFactor
let number = number / currentFactor
end
else
let currentFactor = currentFactor + 1
end_if
end
end_while
print a message if number is prime:
if prime == TRUE
print "Your number is prime"
end_if
Explanation:
5.85 psig
Using a specific gravity of 0.75 as an average for red\automobile gasoline.
Water at standard conditions (60 degF) is 2.31 feet = 1 psig
80/2.31 then multiply x .75 to compensate for specific gravity of water being 1.0
Answer:
b) journal book
Explanation:
A ledger is an account for recording balance sheet and income statement transaction entries like cash, investments, inventory and so on.
Before a transaction is posted into the ledger account after an accounting cycle, it is first written in the journal book, before it is then posted in the ledger account. The process of posting refers to the transferring of entries from the journal book to the ledger.
Answer:
Explanation:
It wouldn't work because the wind energy she would be collecting would actually come from the car engine.
The relative wind velocity observed from a moving vehicle is the sum of the actual wind velocity and the velovity of the vehicle.
u' = u + v
While running a car will generate a rather high wind velocity, and increase the power generated by a wind turbine, the turbine would only be able to convert part of the wind energy into electricity while adding a lot of drag. In the end, it would generate less energy that what the drag casuses the car to waste to move the turbine.
Regenerative braking uses an electric generator connected to the wheel axle to recover part of the kinetic energy eliminated when one brakes the vehicle. Normal brakes dissipate this energy as heat, a regenerative brake uses it to recharge a batttery. Note that is is a fraction of the energy that is recovered, not all of it.
A "regenerative accelerator" makes no sense. Braking is taking kinetic energy out of the vehicle, while accelerating is adding kinetic energy to it. Cars accelerate using the power from their engines.
Answer:
a) True
Explanation:
In Computer programming, when a multiple thread is executing, the sequence in which the statements (codes) contained therein are executed by these multiple thread is mainly nondeterministic in nature.
When nondeterminism results from multiple threads attempting to access a shared resource such as a shared variable or a shared file, at least one of the accesses is an update, and the accesses can result in an error, we have a race condition.
A race condition can be defined as a condition in which multiple threads have the ability to access shared data at the same time and as such they both try to change (modify) the data. Thus, in a race condition occurs in computer (software) programming when a software application's behavior is solely dependent on the timing of multiple threads (processes) in order to function properly.