Answer:

Explanation:
Availability:
It define as the probability of system which perform desired task before showing any failure .
The availability can be define as follows

Or we can say that

Availability can also be express as

Where MTBF is the mean time between two failure.
MTTR is the mean time to repair.
Answer:
Define Variables and Use List methods to do the following
Explanation:
#<em>Conjoins two lists together</em>
all_names = male_names.union(female_names)
#<em>Finds the names that appear in both lists, just returns those</em>
neutral_names = male_names.intersection(female_names)
#<em>Returns names that are NOT in both lists</em>
specific_names = male_names.symmetric_difference(female_names)
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:
The graph representing the linear inequalities is attached below.
Explanation:
The inequalities given are :
y>x-2 and y<x+1
For tables for values of x and y and get coordinates to plot for both equation.
In the first equation;
y>x-2
y=x-2
y-x = -2
The table will be :
x y
-2 -4
-1 -3
0 -2
1 -1
2 0
The coordinates to plot are : (-2,-4) , (-1,-3), (0,-2), (1,-1) ,(2,0)
Use a dotted line and shade the part right hand side of the line.
Do the same for the second inequality equation and plot then shade the part satisfying the inequality.
The graph attached shows results.
Answer:
The diamond ore will break and you won't get any diamonds.
Explanation: