Summary We first learned about the different types of applications of programming to various engineering fields. Then we went over the types of computer languages, which included, machine, assembly, and high-level languages. C and C++, the languages used in this course, are both high-level languages. We were introduced to the engineering problem solving methodology, which is as follows: Problem statement Input/output description Hand example Algorithm development Test solution We then did an activity which utilized this. We got together in groups to perform steps 1-3 in trying to find the distance between two points, then tested this on the computer. After that, we learned about constants and variables, and about different numeric data types. Problems 1 //First day //Distance formula program //This program calculates distance between two points #include <stdio.h> #include <math.h> int main(void){ //Declared variables double x1=...