Answer:
1 pulse rotate = 9 degree
Explanation:
given data
incremental encoder rotating = 15 rpm
wheel holes = 40
solution
we get here first 1 revolution time
as 15 revolution take = 60 second
so 1 revolution take =
1 revolution take = 4 seconds
and
40 pulse are there for 1 revolution
40 pulse for 360 degree
so 1 pulse rotate is = 
1 pulse rotate = 9 degree
Answer:C 0.12 V
Explanation:
Given
Concentration of 
Concentration of 
Standard Potential for Ni and Fe are
and 



Answer and Explanation:
The crack formation growth that takes place in an environment corrosive.
Stress corrosion cracks can be defined as the spontaneous failures of the metal alloy as a result of the combined action of corrosion and high tensile stress.
Some of the characteristic features of stress corrosion cracks are:
- These occur at high temperatures.
- Occurrence of failures in metals mechanically.
- Occurrence of sudden and unexpected failures under tensile stress.
- The rate of work hardening of the metal alloy is high.
- Time
- An environment that is specific for stress corrosion cracking.
Answer:
class TriangleNumbers
{
public static void main (String[] args)
{
for (int number = 1; number <= 10; ++number) {
int sum = 1;
System.out.print("1");
for (int summed = 2; summed <= number; ++summed) {
sum += summed;
System.out.print(" + " + Integer.toString(summed));
}
System.out.print(" = " + Integer.toString(sum) + '\n');
}
}
}
Explanation:
We need to run the code for each of the 10 lines. Each time we sum numbers from 1 to n. We start with 1, then add numbers from 2 to n (and print the operation). At the end, we always print the equals sign, the sum and a newline character.
Answer:
True
Explanation:
For point in xz plane the stress tensor is given by![\left[\begin{array}{ccc}Dx_{} &txz\\tzx&Dz\\\end{array}\right]](https://tex.z-dn.net/?f=%5Cleft%5B%5Cbegin%7Barray%7D%7Bccc%7DDx_%7B%7D%20%26txz%5C%5Ctzx%26Dz%5C%5C%5Cend%7Barray%7D%5Cright%5D)
where Dx is the direct stress along x ; Dz is direct stress along z ; tzx and txz are the shear stress components
We know that the stress tensor matrix is symmetrical which means that tzx = txz ( obtained by moment equlibrium )
thus we require only 1 independent component of shear stress to define the whole stress tensor at a point in 2D plane