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:
if you are speaking of the acronym then Engineering uses science and mathematics to solve everyday problems in society
Answer and Explanation:
It is True that packet size increases the transmission time of the packets. This is because packet transmission would be impacted depending on the packet size, whether it is large or small. Here comes the concept of bandwidth of the medium. For a particular bandwidth of the medium, if the packet is small then many such packets can pass through the medium at a given time, rather than less packets at a given time when the packet sizes are larger. Transmission time of a packet = Packet size / Bandwidth of the medium.
If the bandwidth is high, the transmission time will be less. Also, if the packet size increases then, as we saw above the transmission time will increase.
Every packet has to have a header information in which there will be several information and data about the packet and the protocol it follows, also what is the source and destination of the packet. The information contained in the header of a packet may vary in case of different protocols. The address portion of the packet is a overhead but us actually necessary when the packet needs to be transferred from a source to a destination using a protocol. The size of the header varies from protocol to protocol and is an overhead and has impact on data transmission rates since size of the packet increases because of the header.
Answer:
import java.util.Scanner;
public class SumVectorElements
{
public static void main(String[] args)
{
final int NUM_VALS = 4;
int[] origList = new int[NUM_VALS];
int[] offsetAmount = new int[NUM_VALS];
int i = 0;
origList[0] = 40;
origList[1] = 50;
origList[2] = 60;
origList[3] = 70;
offsetAmount[0] = 5;
offsetAmount[1] = 7;
offsetAmount[2] = 3;
offsetAmount[3] = 0;
/* Your solution goes here */
// Print the Sum of each element in the origList
// with the corresponding value in the
// offsetAmount.
for (i = 0; i < NUM_VALS; i++)
{
System.out.print((origList[i] + offsetAmount[i])+" ");
}
System.out.println("");
return;
}
}
Explanation: see attachment below
Answer:
Tech B
Explanation:
Horsepower (hp) refers to a unit of measurement of power in respect of the output of engines or motors.
Horsepower is the common unit of power. It indicates the rate at which work is done.
The formula
, where rpm is the engine speed, T is the torque, and 5,252 is radians per second.
So,
Tech B is correct