Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Design, using an IPO chart, a tlow chart, pseudocode, or any reasonable combination of these techniques, a module called checkGuess that accepts 2 string inputs.

Design, using an IPO chart, a tlow chart, pseudocode, or any reasonable combination
of these techniques, a module called checkGuess that accepts 2 string inputs. The
first input will be the user's guess and the second input will be a secret letter chosen
at random. No Python code is expected or required for this solution.
If the first input is alphabetically after the second input, return a value of 1. If the first
input is alphabetically before the second input, return a value of -1. If the two inputs
are equal return a value of 0. Do not take upper or lower case into consideration.
Use your module as part of a design, using an IPO chart, flow chart, pseudocode, or
any reasonable combination of these techniques, to solve the following problem.
Call your module using pseudocode like CALL checkGuess( op1, op2) AS val. Your
pseudocode should use your own variable names instead of op1, op2, and val. Be sure
to document any assumptions you make along the way in your design.
Problem:
A person is playing a guessing game in which they have 3 guesses to figure out the
computer's secret letter which will be between A and Z inclusive. If they guess the
letter correctly on the first guess the program should stop making them guess and
they should get 26 points. If they guess the letter correctly on the second guess the
program should stop making them guess and they should get 13 points. If they guess
the letter correctly on the third guess, they should get 7 points. After an incorrect
guess tell the user if their guess was too high or too low based on the results of
checkGuess. If they fail to guess the letter correctly after 3 guesses they get 0 points.
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_step_2

Step: 3

blur-text-image_step3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Introduction To Data Mining

Authors: Pang Ning Tan, Michael Steinbach, Vipin Kumar

1st Edition

ISBN: 321321367, 978-0321321367

More Books

Students also viewed these Databases questions

Question

2. What should an employer do when facing an OSHA inspection?

Answered: 1 week ago