Answer:
Explanation:
effective delay = delay when no traffic x 
effective delay = 
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:
Answer:
Explanation:
* Daily close of the stock market
- The nature of the signal in value is <u>Discrete</u>, as the stock market closes once per day,and so is discrete time.
- And the nature of the signal in time is continuous as the company are continuous.
A
Maintain a distance of at least __2___ between your vehicle and the vehicle behind you.
Explanation:
As the car infront passes a stationary object like a lamp post, the driver in the car behind should count at least two- seconds before their car reached and passes the stationary object too. This two-second rule ensures that cars maintain a safe distance between each other to avoid tailgaiting and collisions.
This rule leaves at least some room for the drivers to react swiftly enough, and avoid collisions, in case the car infront holds emergency breaks. It is even recommended that more seconds are used in hazardous conditions such as fog and slippery roads.
Learn More:
For more on two-seconds rule in road safety check out;
brainly.com/question/13084143
brainly.com/question/595072
#LearnWithBrainly