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).
The resources and instructions that should be used for the procedures of performing PMCS are:
- Operator's manuals
- Safety cautions and warnings.
- Fording kit
- Heating and cooling systems.
<h3>What is PMCS?</h3>
PMCS is an acronym for preventive maintenance checks and services and it can be defined as the maintenance, checks, and services that are typically performed before, during, and after the use of any type of military equipment such as:
Basically, the resources and instructions that should be used for the procedures of performing PMCS are:
- Operator's manuals
- Safety cautions and warnings.
- Fording kit
- Heating and cooling systems.
Read more on PMCS here: brainly.com/question/15720250
#SPJ1
AnsweR Viciously comes from the adjective vicious, which originally meant "of the nature of vice, or wicked." The Latin root, vitiosus, means "faulty, defective, or corrupt."
Explanation:
Answer:
64.11% for 200 days.
t=67.74 days for R=95%.
t=97.2 days for R=90%.
Explanation:
Given that
β=2
Characteristics life(scale parameter α)=300 days
We know that Reliability function for Weibull distribution is given as follows

Given that t= 200 days

R(200)=0.6411
So the reliability at 200 days 64.11%.
When R=95 %

by solving above equation t=67.74 days
When R=90 %

by solving above equation t=97.2 days