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:
15.64 MW
Explanation:
The computation of value of X that gives maximum profit is shown below:-
Profit = Revenue - Cost
= 15x - 0.2x 2 - 12 - 0.3x - 0.27x 2
= 14.7x - .47x^2 - 12
After solving the above equation we will get maximum differentiate for profit that is
14.7 - 0.94x = 0
So,
x = 15.64 MW
Therefore for computing the value of X that gives maximum profit we simply solve the above equation.
Hi
Acetylene and propane
I hope this help you!
Technician is correct sorry if im wronghg
Answer:
// Program is written in C++
// Comments are used to explain some lines
// Only the required function is written. The main method is excluded.
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int divSum(int num)
{
// The next line declares the final result of summation of divisors. The variable declared is also
//initialised to 0
int result = 0;
// find all numbers which divide 'num'
for (int i=2; i<=(num/2); i++)
{
// if 'i' is divisor of 'num'
if (num%i==0)
{
if (i==(num/i))
result += i; //add divisor to result
else
result += (i + num/i); //add divisor to result
}
}
cout<<result+1;
}