answersLogoWhite

0

What is the min and max on the station for NASA?

Updated: 9/17/2019
User Avatar

Wiki User

7y ago

Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is the min and max on the station for NASA?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What formula with functions in Excel can you enter to calculate the ratio of the maximum value in the range Z1 to Z10 to the minimum value?

=MAX(Z1:Z10)/MIN(Z1:Z10)=MAX(Z1:Z10)/MIN(Z1:Z10)=MAX(Z1:Z10)/MIN(Z1:Z10)=MAX(Z1:Z10)/MIN(Z1:Z10)=MAX(Z1:Z10)/MIN(Z1:Z10)=MAX(Z1:Z10)/MIN(Z1:Z10)=MAX(Z1:Z10)/MIN(Z1:Z10)=MAX(Z1:Z10)/MIN(Z1:Z10)=MAX(Z1:Z10)/MIN(Z1:Z10)=MAX(Z1:Z10)/MIN(Z1:Z10)=MAX(Z1:Z10)/MIN(Z1:Z10)


Trace out the algorithm Max Min on a data set containing atleast 8 elements?

Steps to perform MaxMin on a data set (2,4,6,3,8,1,9,7) are:(2,4,6,3) (8,1,9,7)((2,4)(6,3)) ((8,1)(9,7))In sublist (4,6), max is 6 and min is 4. In sublist (8,9), max is 9 and min is 8.Comparing max and min values of sublist (2,4) and sublist (6,3), value of max is 6 and min is 2.Therefore, for sublist (2,4,6,3) max is 6 and min is 2.Similarly, comparing max and min values of sublist (8,1) and sublist (9,7), value of max is 9 and min is 1.Therefore, for sublist (8,1,9,7) max is 9 and min is 1.Finally, comparing max and min values of sublist (2,4,6,3) and sublist (8,1,9,7), value of max is 9 and min is 1. Steps to perform MaxMin on a data set (2,4,6,3,8,1,9,7) are:(2,4,6,3) (8,1,9,7)((2,4)(6,3)) ((8,1)(9,7))In sublist (4,6), max is 6 and min is 4. In sublist (8,9), max is 9 and min is 8.Comparing max and min values of sublist (2,4) and sublist (6,3), value of max is 6 and min is 2.Therefore, for sublist (2,4,6,3) max is 6 and min is 2.Similarly, comparing max and min values of sublist (8,1) and sublist (9,7), value of max is 9 and min is 1.Therefore, for sublist (8,1,9,7) max is 9 and min is 1.Finally, comparing max and min values of sublist (2,4,6,3) and sublist (8,1,9,7), value of max is 9 and min is 1. Steps to perform MaxMin on a data set (2,4,6,3,8,1,9,7) are:(2,4,6,3) (8,1,9,7)((2,4)(6,3)) ((8,1)(9,7))In sublist (4,6), max is 6 and min is 4. In sublist (8,9), max is 9 and min is 8.Comparing max and min values of sublist (2,4) and sublist (6,3), value of max is 6 and min is 2.Therefore, for sublist (2,4,6,3) max is 6 and min is 2.Similarly, comparing max and min values of sublist (8,1) and sublist (9,7), value of max is 9 and min is 1.Therefore, for sublist (8,1,9,7) max is 9 and min is 1.Finally, comparing max and min values of sublist (2,4,6,3) and sublist (8,1,9,7), value of max is 9 and min is 1. sonika aggarwal GNIIT


How do I get max to min serial or What function can I use to get max to min or min to max serial?

it will orbit the sun it self and the sun will keep it in the right spot for its temperature


What is the name of the space of the NASA space station which had their mission dealaye due to bad weather?

It isn't a NASA space station but the InternationalSpace Station or the ISS


What is the max and min temperature on the planet Mercury?

Max = 700 K, min = 80 K.


Why use max for union and min for intersection?

Because they obey the same laws (specifically, de Morgan's Laws): -max(a,b) = min(-a,-b) and -min(a,b) = max(-a,-b). In theory, you could use max for intersection and min for union, too.


Who designed the NASA space station?

No single person designs a space station, or any large and complex machine nowadays. A NASA space station would be designed by a team commissioned by NASA. The ISS is an international undertaking.


What is The US space station?

The US Space Station is Apollo/Nasa..


What is the difference between min and max function?

The MIN function returns the lowest value from a set of values. The MAX function returns the highest value from a set of values.=MIN(A2:A20)=MAX(A2:A20)The MIN function returns the lowest value from a set of values. The MAX function returns the highest value from a set of values.=MIN(A2:A20)=MAX(A2:A20)The MIN function returns the lowest value from a set of values. The MAX function returns the highest value from a set of values.=MIN(A2:A20)=MAX(A2:A20)The MIN function returns the lowest value from a set of values. The MAX function returns the highest value from a set of values.=MIN(A2:A20)=MAX(A2:A20)The MIN function returns the lowest value from a set of values. The MAX function returns the highest value from a set of values.=MIN(A2:A20)=MAX(A2:A20)The MIN function returns the lowest value from a set of values. The MAX function returns the highest value from a set of values.=MIN(A2:A20)=MAX(A2:A20)The MIN function returns the lowest value from a set of values. The MAX function returns the highest value from a set of values.=MIN(A2:A20)=MAX(A2:A20)The MIN function returns the lowest value from a set of values. The MAX function returns the highest value from a set of values.=MIN(A2:A20)=MAX(A2:A20)The MIN function returns the lowest value from a set of values. The MAX function returns the highest value from a set of values.=MIN(A2:A20)=MAX(A2:A20)The MIN function returns the lowest value from a set of values. The MAX function returns the highest value from a set of values.=MIN(A2:A20)=MAX(A2:A20)The MIN function returns the lowest value from a set of values. The MAX function returns the highest value from a set of values.=MIN(A2:A20)=MAX(A2:A20)


Write a c program to find the sum of numbers between given limits?

int sum (int min, int max) {return (max-min+1)*(max+min)/2;}


How do you find the largest and the smallest values among 4 numbers using conditional operators?

int a, b, c, d, max, min; scanf("%d%d%d%d",&a, &b, &c, &d); (a>b)?(max=a,min=b):(max=b,min=a); (c>d)?(a=c,b=d):(a=d,b=c); max=(a>max)?a:max; min=(b<min)?b:min; printf("%d %d\n", max, min);


What is the min-max kva for an IBM 5094 and an IBM 5294?

min: 0.5 KVA MAX: 1.5 KVA