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:
c
Explanation:
This is because many things, such as pcs, over heat
Answer:Science is the body of knowledge that explores the physical and natural world. Engineering is the application of knowledge in order to design, build and maintain a product or a process
Explanation:
Answer:
1. cout << "Num: " << songNum << endl;
2. cout << songNum << endl;
3. cout << songNum <<" songs" << endl;
Explanation:
//Full Code
#include <iostream>
using namespace std;
int main ()
{
int songNum;
songNum = 5;
cout << "Num: " << songNum << endl;
cout << songNum << endl;
cout << songNum <<" songs" << endl;
return 0;
}
1. The error in the first cout statement is that variable songnum is not declared.
C++ is a case sensitive programme language; it treats upper case and lower case characters differently.
Variable songNum was declared; not songnum.
2. Cout us used to print a Variable that has already been declared.
The error arises in int songNum in the second cout statement.
3. When printing more than one variables or values, they must be separated with <<