Answer:
The world's oldest dress called the Tarkhan Dress is at 5,100 to 5,500 years of age.
Does that help? Or do you need something else? I can change my answer if this is not what you need! :D
Explanation:
Answer
given,
a = 2 t - 10
velocity function
we know,


integrating both side

v = t² - 10 t + C
at t = 0 v = 3
so, 3 = 0 - 0 + C
C = 3
Velocity function is equal to v = t² - 10 t + 3
Again we know,


integrating both side


now, at t= 0 s = -4

C = -4
So,

Position function is equal to 
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);
}
}