Colors of Jupiter
A time-lapse of SpaceX’s Falcon 9 rocket launch over California. Many people thought it was a UFO…. [https://vimeo.com/248591160]
“I felt I was an accepted team member. It was a great experience and a unique opportunity.”
Ruth Ann Strunk, a math major, was hired in 1968 at NASA’s Kennedy Space Center as an acceptance checkout equipment software engineer. She monitored the work of contractors who wrote the computer programs designed to check out the command module, lunar module and the Apollo J mission experiments. These experiments were conducted aboard the service modules on Apollo 15, 16 and 17 by the command module pilots.
“I am proud of the advancement and the number of women who are working and enjoy working here,” Strunk said. “It was a wonderful opportunity NASA afforded me during Apollo that I have been able to use ever since.”
Remember the women who made #Apollo50th possible.
Follow Women@NASA for more stories like this one, and make sure to follow us on Tumblr for your regular dose of space: http://nasa.tumblr.com.
How To Code: Insertion Sort in C language
Insertion sort is a basic algorithm for sorting elements in an array or list. Insertion sort works by grabbing one element and comparing to the element next to it. If the element is larger than its neighbor, then the element is left in its original position. If the element is smaller than its neighbor, than it compares it to the other previous elements to find a suitable position. Then all larger values are shifted up a space and the element is inserted into the correct position.
Output:
Sorted Array array:[17][26][36][48][52]