Answer:
I will pick system A
Explanation:
System A has dual processor and it will concurrently run the two program(X and Y) in 50 seconds, with program X on the first processor and program Y on the second one while system B will take 70 seconds to run the two program since it runs on a single processor, it will run program X first and then program Y next, summing up to 70 seconds. so therefore I will pick system A since I'm considering the system throughput.
Answer:
using System.IO;
using System;
class FineForOverdueBooks
{
static void Main()
{
Console.WriteLine("Enter the number of books user checked out: ");
int books = Convert. ToInt32(Console.ReadLine());
Console.WriteLine("Enter the number of overdue days: ");
int days = Convert. ToInt32(Console.ReadLine());
DisplayFine(books, days);
}
public static void DisplayFine(int books, int days) {
double amt = 0;
int d = days;
if(days>7) {
amt = (days-7) * .20 * books;
days = 7;
}
if(days > 0) {
amt = amt + days * .10 * books;
}
Console.WriteLine("The fine for {0} book(s) for {1} day(s) is {2}", books, d, amt);
}
}
Explanation:
Answer is in the screenshot
Explanation:
Methods of this technique include glueing, chemical gilding, and electroplating. Staining is used to color wood to give an illusion of texture. This may come in two varieties.
You have to ask you teacher to show you which ones you got wrong and the answers to them.