Answer:
Did you get the answer yet or not or should i sent it?
Explanation:
Answer:
Option b. The value is a floating-point number that should be displayed with 2 decimal places.
Explanation:
The f is a format code for a floating point number. Sometimes, a specific precision is required to display a floating point number. To meet the precision requirement, we can precede the f with a dot and followed with a precision value.
For example:
print("My value: {0:.2f}".format(123.45678))
will display 123.46
*The output has been rounded up to two decimal places.
Answer:
1. true 2.false 3.a 4.d 5.c 6.d 7. true 8.true 9.true 10.true
Explanation:
Answer:
<h2 /><h2>Pseudocode</h2>
<h3>Advantages of Pseudocode:</h3>
- Easier to translate into a high level programming language
- No pressure of syntax (grammar) of the coding
- Partially resembles standard English so it's easier for programmers to understand
<h3>Disadvantages of Pseudocode:</h3>
- Can't immediately spot errors in coding such as logic errors
- Runtime errors don't exist in Pseudocode
<h2>Flowcharts</h2><h3 /><h3>Advantages of Flowcharts</h3>
- Focuses on the logic of the program
- Displays the manipulation (and flow) of data easily
<h3>Disadvantages of Flowcharts</h3>
- Not ideal for big programs (only for subprograms)
- Shapes may not be clear or obvious to what they are in terms of their functions