title | type | duration | creator | competencies | ||||
---|---|---|---|---|---|---|---|---|
Expressions |
homework |
1:25 |
|
Java, Expressions |
- You will practice writing expressions
- Revisit algebraic expressions and order of operations
- Research theorums and formulae used in the real world
- Convert formula that adhere to the order of operations to programmtic expressions
- Fork this repository and clone it to your computer.
- Inside of the
expressions.java
, write out each expression for this assignment. - When complete, add/commit/pull/push to Github and create a pull request to submit your homework.
- Research the order of operations online (or write it out based on memory).
- In the comments of
expressions.java
, leave a description of order of operations. - Describe the order in which operators/functions run.
- Add 42 to 1
- Multiple 0 by 981 and then add 68 times 8
- Add 3.14 to 0.09 and then remove 12 from the total
- Divide 89 by 4 to show only the remainder
- Subtract 5.16 from 66.7128 and divide the results by 5
For some of these expressions, you may use variable placeholders in stead of values. Example: (n + x)
- Express how to find the area of a circle as an expression
- Express the pythagorithm theorum as an expression
- Express how to find the area of a triangle as an expression
- Express how discover the volume of a cube
- Express how to find out how manyn milliseconds are in 14 minutes
Some of these challenges will require that we assume variables currently exist. Feel free to be creative in writing these expressions.
- Express how to calculate if a number equal in value to one third of another number
- Express two linear equations that are equal to each other
- Express how to discover the slope of a line