Answer:
hello your question has some missing part attached below is the complete question
answer : steady state temperature = 419.713k ≈ 218.7⁰c
Time required to reach a junction ≈ 5 secs
Explanation:
The detailed solution of the given problem is attached below but the solution to the subsequent problem from which the question you asked is referenced to( problem 1 ), is not attached because it was not part of the question you asked
Answer:
8.24μm
Explanation:
The theory of brittle fracture was used to solve this problem.
And if you follow through with the attachment made a the subject of the formula
Such that,
a = 2x(69x10⁹)x0.3/pi(40x10⁶)²
= 4.14x10¹⁰/5.024x10¹⁵
= 8.24x10^-06
= 8.24μm
This is the the maximum length of the surface flaw
so people dont die whaddya think?
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;
}