Answer:
d) 1 volt
Explanation:
The allowable range is 1 volt. The allowed tolerance (deviation from nominal) depends on what the nominal voltage is.
Answer should be C hopefully
I think balance
Can I get Brainlyist
Answer:
#include <stdio.h>
void SplitIntoTensOnes(int* tensDigit, int* onesDigit, int DecVal){
*tensDigit = (DecVal / 10) % 10;
*onesDigit = DecVal % 10;
return;
}
int main(void) {
int tensPlace = 0;
int onesPlace = 0;
int userInt = 0;
userInt = 41;
SplitIntoTensOnes(&tensPlace, &onesPlace, userInt);
printf("tensPlace = %d, onesPlace = %d\n", tensPlace, onesPlace);
return 0;
}
Answer:
load = 156 lb/ft
Explanation:
given data
interior wall of a building = 2×4 wood studs
plastered = 1 side
wall height = 13 ft
solution
we get here load so first we get wood stud load and that is
we know here from ASCE-7 norm
dead load of 2 x 4 wood studs with 1 side plaster = 12 psf
and we have given height 13 ft
so load will be = 12 psf × 13 ft
load = 156 lb/ft