Question: Predict the output and check your answer by writing and running a program in the Python editor. Type your prediction and include a screenshot of

Predict the output and check your answer by writing and running a program in the Python editor. Type your prediction and include a screenshot of your response for a, b, and c. a)2**2**3 b)2**(2**3) c)(2**2)**3 Problem 3: (3 pts): a) Create a flowchart and pseudocode that shows the logic for the following. You do not have to write the code, just show the logic of the following with a flowchart and pseudocode. A program that prompts the user to input an integer that represents an amount in cents (less than 1.00). You can call it pocketChange. The program will then calculate the smallest combination of coins that the user has. For example, 32 cents is 1 quarter, 1 nickel, and 2 pennies, so: - pocketChange is .32. Is .32>.25, then 1 quarter and subtract .25 from pocketChange -Is pocketChange (now .07>.10-Is pocketChange >.05, then 1 nickel, and subtract .05 from pocketChange -Is pocketChange (now .02>.01, then 1 penny and subtract .01 from pocketChange. -Is pocketChange more than or less than 1 b) Optional: Write the programs code in the Python editor, include the video that demonstrate your code and running of code. (2 pts)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!