Answer:
The FSM uses the states along with the generation at the P output on each of the positive edges of the CLK. The memory stores the previous state in the machine and the decoder generates a P output based on the previous state.
Explanation:
The code is in the image.
Answer:
- using System;
- public class Program
- {
- public static void Main()
- {
- Console.WriteLine("Enter number of students: ");
- int num = Convert.ToInt32(Console.ReadLine());
- string [] firstName = new string[num];
- string [] lastName = new string[num];
-
- for(int i=0 ; i < num; i++){
- Console.WriteLine("Enter first name: ");
- firstName[i] = Console.ReadLine();
-
- Console.WriteLine("Enter last name: ");
- lastName[i] = Console.ReadLine();
- }
-
- for(int j=0; j < num; j++){
- Console.WriteLine(lastName[j] + "," + firstName[j]);
- }
- }
- }
Explanation:
Firstly, prompt user to enter number of student to be stored (Line 6- 7). Next, create two array, firstName and lastName with num size (Line 8-9).
Create a for-loop to repeat for num times and prompt user to enter first name and last name and then store them in the firstName and lastName array, respectively (Line 11 - 17).
Create another for loop to traverse through the lastName and firstName array and display the last name and first name by following the format given in the question (Line 19 - 21).
Answer:
275 MPa
Explanation:
Regardless of what it is holding, the stiffness of a bolt depends on its own material properties and geometry.
The stiffness is:

I assume this one is made of steel, because regular bolts are steel.
The Young's modulus for steel is E = 210 GPa
The longitude is given. (But note that in a real application you have to consider the length up to the nut.)
The section is (using the nominal diameter of 10 mm)

Then:

Answer:
Efficiency based on Otto cycle.
Effotto = 47.47%
Explanation:
Efficiency based on Otto cycle.
effotto = 1 – (V2 / V1)^γ-1
effotto = 1 – (1 / 5)^1.4 - 1
effotto = 47.47%
Answer:
me you same I didn't understand good luck