Answer:
design hour volumes will be 4000 to 6000
Explanation:
given data
AADT = 150000 veh/day
solution
we get here design hour volumes that is express as
design hour volumes = AADT × k × D ..............1
here k is factor and its range is 8 to 12 % for urban
and D is directional distribution i.e traffic equal divided by the direction
so here design hour volumes will be 4000 to 6000
Answer:
center left-turn lane
Explanation:
A <em>center left turn lane</em> will be marked as described. The arrows, if present, generally indicate that left turns are permitted from the lane with these markings.
__
If the double yellow lines are solid, they are considered to be a "barrier" and are not to be crossed.
Answer:
d) Binary
Explanation:
Binary search is a search algorithm that finds the position of a value in an ordered array. It compares the value with the element in the middle of the array, if they are not equal, half in which the value cannot be eliminated and the search continues in the remaining half until the value is found.
Answer:
Stress corrosion cracking
Explanation:
This occurs when susceptible materials subjected to an environment that causes cracking effect by the production of folds and tensile stress. This also depends upon the nature of the corrosive environment.
Factors like high-temperature water, along with Carbonization and chlorination, static stress, and material properties.
Let “w” and “L” be the width and length of the rectangle. “p” and “a” are perimeter and area
For python,
w=int(input(“width”))
l=int(input(“length”))
a= w*l
p=2*w+2*l
print(str(a), str(p)