Answer:
pls put a question not random letters
Explanation:
Answer:
maximum stress is 2872.28 MPa
Explanation:
given data
radius of curvature = 3 ×
mm
crack length = 5.5 ×
mm
tensile stress = 150 MPa
to find out
maximum stress
solution
we know that maximum stress formula that is express as
......................1
here σo is applied stress and a is half of internal crack and t is radius of curvature of tip of internal crack
so put here all value in equation 1 we get
σm = 2872.28 MPa
so maximum stress is 2872.28 MPa
Answer:
The given grammar is :
S = T V ;
V = C X
X = , V | ε
T = float | double
C = z | w
1.
Nullable variables are the variables which generate ε ( epsilon ) after one or more steps.
From the given grammar,
Nullable variable is X as it generates ε ( epsilon ) in the production rule : X -> ε.
No other variables generate variable X or ε.
So, only variable X is nullable.
2.
First of nullable variable X is First (X ) = , and ε (epsilon).
L.H.S.
The first of other varibles are :
First (S) = {float, double }
First (T) = {float, double }
First (V) = {z, w}
First (C) = {z, w}
R.H.S.
First (T V ; ) = {float, double }
First ( C X ) = {z, w}
First (, V) = ,
First ( ε ) = ε
First (float) = float
First (double) = double
First (z) = z
First (w) = w
3.
Follow of nullable variable X is Follow (V).
Follow (S) = $
Follow (T) = {z, w}
Follow (V) = ;
Follow (X) = Follow (V) = ;
Follow (C) = , and ;
Explanation:
Answer:
d. 90%
Explanation:
As we know that internal combustion engine produce lot's of toxic gases to reduce these toxic gases in the environment a device is used and this device is know as current modeling converter.
Generally the efficiency of current model catalytic converter is more than 90%.But the minimum efficiency this converter is 90%.
So option d is correct.
d. 90%
Answer:
/* C Program to rotate matrix by 90 degrees */
#include<stdio.h>
int main()
{
int matrix[100][100];
int m,n,i,j;
printf("Enter row and columns of matrix: ");
scanf("%d%d",&m,&n);
/* Enter m*n array elements */
printf("Enter matrix elements: \n");
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
scanf("%d",&matrix[i][j]);
}
}
/* matrix after the 90 degrees rotation */
printf("Matrix after 90 degrees roration \n");
for(i=0;i<n;i++)
{
for(j=m-1;j>=0;j--)
{
printf("%d ",matrix[j][i]);
}
printf("\n");
}
return 0;
}