Answer:
- She’s A Biochemist
- She’s An Accomplished Space Chef
- She holds the record for most time spent in a space station for an American astronaut — of any gender.
- She became the first woman to command the International Space Station twice.
- She made apple pie out of tortillas
Answer:
Kieran is a Carpenter, and Kurt is a Drafter
Explanation:
Among all the professions listed, Kurt can only possibly be a Drafter. A Drafter is an engineering technician who makes detailed technical drawings or plans for machinery, buildings, electronics, infrastructure, sections, etc. Drafters make use of computer software and manual sketches to convert the designs, plans, and layouts of engineers and architects into a set of technical drawings. All the other professions will at some point need for the professional to stand and work at an height above the ground except for a drafter, whose feet will remain on the ground at almost all times.
Answer: The engineering design process emphasizes open-ended problem solving and encourages students to learn from failure. This process nurtures students abilities to create innovative solutions to challenges in any subject! In addition to their involvement in design and development, many engineers work in testing, production, or maintenance. These engineers supervise production in factories, determine the causes of a component's failure, and test manufactured products to maintain quality.
Explanation:
Answer & Explanation:
//written in java
public class Main {
public static void main(String[] args) {
//declare a char variable for a, b, c
char a;
char b;
char c;
//assign a b and c
//a b and c can be replaced for with
// '#', '$', '%', then with '1', '2', '3'
// for further testing
a = 'x';
b = 'y';
c = 'z';
//output for all possible combination for a, b, c.
System.out.println("" + a + b + c + " " + a + c + b + " " + b + a + c +
" " + b + c + a + " " + c + a + b + " " + c + b + a);
}
}