Answer:
Explanation:
The first thing we will do is convert the units. Miles per hour to meters per second.
Performing the operations
Now, we will use the acceleration formula
Where v = speed and t = time
Substituting the values of
Answer:
//The program prompts user to input three integers and it displays them, adds and gets their average
//begin
public class Test
{
public static void Main()
{
//input intergers
int[] score = new int[3];
int avg,rem,sum = 0;
for(int i=0;i<3;i++)
{
Console.WriteLine("Enter an integer score ");
score[i] = Convert.ToInt32(Console.ReadLine());
sum = sum + score[i];
}
avg = sum/3;
rem = sum%3;
Console.WriteLine("The average of "+score[0]+","+score[1]+","+score[2]+" is "+avg +" with a remainder of "+rem);
}
}
Answer:
a) , b)
Explanation:
a) The coefficient of performance of a reversible refrigeration cycle is:
Temperatures must be written on absolute scales (Kelvin for SI units, Rankine for Imperial units)
b) The respective coefficient of performance is determined:
But:
The temperature at hot reservoir is found with some algebraic help:
Answer:
# Initialize a dictionary with the keys
contestants = {"Darci Lynne":0, "Angelica Hale":0, "Angelina Green":0};
# Repeatedly prompt the user for a contestant name to vote for
while True:
# Prompting user for contestant name
cName = input("Enter contestant name to vote: ");
# Checking for Done
if cName.lower() == "done":
break;
# Checking in dictionary
if cName in contestants.keys():
# Updating vote value
contestants[cName] += 1
# New entry
else:
contestants[cName] = 1
# Printing header
print("\n%-20s %-15s\n" %("Contestant Name", "Votes Casted"))
# Printing results
for contestant in contestants:
print("%-23s %-15d" %(contestant, contestants[contestant]))
Answer:
decreased
Explanation:
when impaired you react slower then you would sober.