Answer:
The critical length of surface flaw = 6.176 mm
Explanation:
Given data-
Plane strain fracture toughness Kc = 29.6 MPa-m1/2
Yield Strength = 545 MPa
Design stress. =0.3 × yield strength
= 0.3 × 545
= 163.5 MPa
Dimensionless parameter. Y = 1.3
The critical length of surface flaw is given by
= 1/pi.(Plane strain fracture toughness /Dimensionless parameter× Design Stress)^2
Now putting values in above equation we get,
= 1/3.14( 29.6 / 1.3 × 163.5)^2
=6.176 × 10^-3 m
=6.176 mm
Answer:
q1q1 ⇒ 01
Explanation:
The outputs of a positive edge triggered register will match the inputs after a rising clock edge.
q1q1 ⇒ 01 . . . . matching d1d0 = 01
Answer:
Implements a reordering of the letters of the alphabet.
Explanation: GIVE ME 5 STARS AND a HEART!!! Those contacts are wired across the rotor so that each contact on the left connects to the contact on the right in some scrambled arrangement. Each rotor, therefore, implements a reordering of the letters of the alphabet, which mathematicians call a permutation.
Answer:
Codes for each of the problems are explained below
Explanation:
PROBLEM 1 IN C++:
#include<iostream>
using namespace std;
//fib function that calculate nth integer of the fibonacci sequence.
void fib(int n){
// l and r inital fibonacci values for n=1 and n=2;
int l=1,r=1,c;
//if n==1 or n==2 then print 1.
if(n==1 || n==2){
cout << 1;
return;
}
//for loop runs n-2 times and calculates nth integer of fibonacci sequence.
for(int i=0;i<n-2;i++){
c=l+r;
l=r;
r=c;
cout << "(" << i << "," << c << ") ";
}
//prints nth integer of the fibonacci sequence stored in c.
cout << "\n" << c;
}
int main(){
int n; //declared variable n
cin >> n; //inputs n to find nth integer of the fibonacci sequence.
fib(n);//calls function fib to calculate and print fibonacci number.
}
PROBLEM 2 IN PYTHON:
def fib(n):
print("fib({})".format(n), end=' ')
if n <= 1:
return n
else:
return fib(n - 1) + fib(n - 2)
if __name__ == '__main__':
n = int(input())
result = fib(n)
print()
print(result)
Answer:
modern vehicles are made to crunch up a little bit so they that absorbe some of the impact instead of you
Explanation: