
Explanation of Solution
a.
Method heading for each method:
- The method heading is “public void makeGuess(character c)” that takes a parameter “c” of character type and return nothing.
- The method heading is “public String getDisguisedWord()” that takes no parameters and returns the string which contains the disguised word...
Explanation of Solution
b.
Preconditions and postconditions of each method:
- Precondition and postcondition of “public void makeGuess(character c)” method.
- Precondition: checks whether the character value is one of 26 alpha characters which present in secrete word or not.
- Postcondition: update the number of guesses, incorrect guesses, and disguised word.
- Precondition and postcondition of “public String getDisguisedWord()” method.
- Precondition: None.
- Postcondition: This method returns disguised string.
- Precondition and postcondition of “public String getSecretWord()” method...
Explanation of Solution
c.
Test class for some Java statement:
//Create an object for Hangman class
Hangman game = new Hangman();
//Call initialize() method to set the secret word
game.initialize("Happiness");
//Call playGame() method to play the game
System.out.println("Lets play a round of hangman...
Explanation of Solution
d.
Implementation of class:
Hangman.java:
//Import the java package
import java.util.Scanner;
//Define the class
public class Hangman
{
//Declare the required variables
private String secretWord;
private String disguisedWord;
private String lettersRemaining;
private int guessesMade;
private int incorrectGuesses;
//Define the makeGuess() method
public void makeGuess(Character c)
{
//Check whether character is letter
if (Character.isLetter(c))
{
//Declare and assign the variable
String guess = "" + c;
//Convert the guess to lower case
guess = guess.toLowerCase();
//Declare and initialize the letter position
int letterPosition = lettersRemaining.indexOf(guess);
boolean goodGuess = letterPosition > -1;
/*Loop executes until the position is greater than "-1". */
while (letterPosition > -1)
{
/*Declare and assign the before letter variable. */
String before = lettersRemaining.substring(0, letterPosition);
/*Declare and assign the after letter variable. */
String after = lettersRemaining.substring(letterPosition + 1);
//Set the letter remaining
lettersRemaining = before + "#" + after;
//Set the disguised waord
before = disguisedWord.substring(0, letterPosition);
after = disguisedWord.substring(letterPosition + 1);
disguisedWord = before + guess + after;
//Set the word position
letterPosition = lettersRemaining...
Explanation of Solution
e.
List of extra methods and attributes needed for this implementation:
There is no extra attributes are needed for this implementation.
The extra methods that were used apart from the mentioned methods are,
- public void initialize() method:
- This method is used to initialize the declared variables...
Explanation of Solution
f.
Implementation of class:
Hangman.java:
//Import the java package
import java.util.Scanner;
//Define the class
public class Hangman
{
//Declare the required variables
private String secretWord;
private String disguisedWord;
private String lettersRemaining;
private int guessesMade;
private int incorrectGuesses;
//Define the initialize() method
public void initialize(String word)
{
//Initialize the declared variables
secretWord = word.toLowerCase().trim();
lettersRemaining = secretWord;
disguisedWord = createDisguisedWord(secretWord);
guessesMade = 0;
incorrectGuesses = 0;
}
//Define the createDisguisedWord() method
public String createDisguisedWord(String word)
{
//Convert the secret word into lower case word
word = word.toLowerCase();
/*Call replace() method to replace the "?" with suitable letter. */
word = word.replace('a', '?');
word = word.replace('b', '?');
word = word.replace('c', '?');
word = word.replace('d', '?');
word = word.replace('e', '?');
word = word.replace('f', '?');
word = word.replace('g', '?');
word = word.replace('h', '?');
word = word.replace('i', '?');
word = word.replace('j', '?');
word = word.replace('k', '?');
word = word.replace('l', '?');
word = word.replace('m', '?');
word = word.replace('n', '?');
word = word.replace('o', '?');
word = word.replace('p', '?');
word = word.replace('q', '?');
word = word.replace('r', '?');
word = word.replace('s', '?');
word = word.replace('t', '?');
word = word.replace('u', '?');
word = word.replace('v', '?');
word = word.replace('w', '?');
word = word.replace('x', '?');
word = word.replace('y', '?');
word = word.replace('z', '?');
//Return the secret word
return word;
}
//Define the makeGuess() method
public void makeGuess(Character c)
{
//Check whether character is letter
if (Character.isLetter(c))
{
//Declare and assign the variable
String guess = "" + c;
//Convert the guess to lower case
guess = guess.toLowerCase();
//Declare and initialize the letter position
int letterPosition = lettersRemaining.indexOf(guess);
boolean goodGuess = letterPosition > -1;
/*Loop executes until the position is greater than "-1". */
while (letterPosition > -1)
{
/*Declare and assign the before letter variable. */
String before = lettersRemaining.substring(0, letterPosition);
/*Declare and assign the after letter variable. */
String after = lettersRemaining.substring(letterPosition + 1);
//Set the letter remaining
lettersRemaining = before + "#" + after;
//Set the disguised waord
before = disguisedWord.substring(0, letterPosition);
after = disguisedWord.substring(letterPosition + 1);
disguisedWord = before + guess + after;
//Set the word position
letterPosition = lettersRemaining.indexOf(guess);
}
//Increment the guess count by "1"
guessesMade++;
//Check whether the Guess is not valid
if (!goodGuess)
//Increment the incorrect guess by "1"
incorrectGuesses++;
}
//Otherwise, display the error message
else
System...
Want to see the full answer?
Check out a sample textbook solution
Chapter 5 Solutions
Java: An Introduction to Problem Solving and Programming (7th Edition)
Additional Engineering Textbook Solutions
Starting Out With Visual Basic (8th Edition)
Modern Database Management
Degarmo's Materials And Processes In Manufacturing
Elementary Surveying: An Introduction To Geomatics (15th Edition)
Thinking Like an Engineer: An Active Learning Approach (4th Edition)
Concepts Of Programming Languages
- Need Java method please. Thank you.arrow_forward3. Write two nested loops to generate the following output. (Note: There is one space between each number, and any extra line shown is intentional.) 12 10 8 6 18 15 12 24 20 30 2 3 3 6 48 12 5 10 15 20 6 12 18 24 30arrow_forwardWrite in verilog coding languagearrow_forward
- Q4. Consider the following two design alternatives. Walmart Walmart Store locartion 1 * capacity - Associate Name 1 id position Design Alternative "A" Store locartion 1 capacity Associate Name 1 * id position Design Alternative "B" a) Explain the semantic differences between the two designs, if any. b) Explain the differences in how each design alternative may be implemented in Java. c) which design alternative may require more storage requirement in your opinion, and why?arrow_forwardDesign a schematic for a compartmental model that includes compartments, flows, and parameters with their respective units, using Figure 1 as a guide. For each flow, determine whether it is best represented by a first-order transfer, a Michaelis-Menten saturable process, or a different method.arrow_forward9. Consider the diagram on the right. Using this diagram and the four following terms: (a) lonization Energy, (b) Electron Affinity, (c) Mulliken Electronegativity, and (d) Polarizability, label each arrow with the correct term (you can label the arrows with the corresponding letter for space purposes). Please provide labels for both species X and Y. lonization Limit b) Indicate why. Energy- Species X Species Y Which species (X or Y) has the highest electronegativity? Which has the largest polarizability? c)( 2) Consider BH3 (boron trihydride) and TIH3 (thallium trihydride). Which one is more polarizable and why? Which one would have stronger intermolecular forces and why?arrow_forward
- b) 12. Consider XeO a) Draw the correct Lewis structure for this molecule. Calculate the steric number for XeO3 and based on your answer, what would be the molecular geometry it adopts? d) c) (1mark) According to VB theory, what is the hybridization for this molecule? Use the space below to explicitly show how you have arrived to your answer in part c. Clearly Sketch how hybridization occurs using electron orbital box diagrams and link central and terminal atoms.arrow_forwardConsider CIFs and draw it's Lewis structure. What molecular geometry would you expect it 10. to have, and why? Comment on the distortion of the bond angles, if any is expected.arrow_forwardX Course Home P Pearson+ x + pearson.com/courses/13810469/menu/a2c41aca-b4d9-4809-ac2e-eef29897ce04 A Learning Goal: To understand the components and processes of a galvanic cell. A galvanic cell (or voltaic cell) produces electricity using a spontaneous redox reaction, such as the one shown here: Sn(s) + Cu (aq) Sn(aq) + Cue) The components of this reaction are separated by a salt bridge and connected with a wire forcing the electrons to travel across the wire, creating electricity Correct Previous Answers Standard reduction potentials for tin(II) and copper(II) The standard reduction potential for a substance indicates bow readily that substance gains electrons relative to other substances at standard conditions! Consider the following: Sn(aq) + 2e Sn(s). Cu(aq) + 2eCu(s), E red 0.140 V E red +0.337 V Sn Cu salt bridge Part B Sn²+(aq) Cu (ac The salt bridge is a U-shaped glass tube that is filled with a gel-like substance containing a salt. The salt bridge completes the circuit and…arrow_forward
- 11. Consider IOF3, a) Draw optimized Lewis structures for possible isomers of IOFs. For each isomer, include all equivalent resonance contributors (if applicable) and all lone pairs and all non-zero formal charges Which isomer do you think is most likely? Why?arrow_forwardx1+ 4809-ac2e-eef29897ce04 4 Part A A For a protein of 100 residues, estimate the entropy change per mole upon denaturation. Express your answer with the appropriate units. ΜΑ 0 ? X-10 хы J AS Value mol K ! You have already submilled this answer. Enter a new answer Noloredit lost Try again Submit Previous Answers Request Answer Part B Complete previous panis Part C Complete previous part(s) Braude Eneback Next > 5:08 PM 10/20/2025arrow_forwardPart B Correct glucose +P G6P + H2O AG 13.8 kJ/mol [G6PH₂O] Kea glucose P ΔΟΜ e Note: in the biochemical standard state, the activity of H2O is assigned a value of 1 G6P (1) (0.005) (0.005) e 00831x310 G6P 0.000025 xe 36 1.2 107 M This very low concentration of the desired product would be unfavorable for glycolysis In fact, the reaction is coupled to ATP hydrolysis to give the overall reaction ATP glucose What is AG for the coupled reaction? glucose-6-phosphate Express your answer to three significant figures and include the appropriate units, AG= Value kJ mol Submit Previous Answers Request Answer ADP Harrow_forward
C++ Programming: From Problem Analysis to Program...Computer ScienceISBN:9781337102087Author:D. S. MalikPublisher:Cengage Learning
EBK JAVA PROGRAMMINGComputer ScienceISBN:9781337671385Author:FARRELLPublisher:CENGAGE LEARNING - CONSIGNMENT
Microsoft Visual C#Computer ScienceISBN:9781337102100Author:Joyce, Farrell.Publisher:Cengage Learning,- Programming Logic & Design ComprehensiveComputer ScienceISBN:9781337669405Author:FARRELLPublisher:Cengage
EBK JAVA PROGRAMMINGComputer ScienceISBN:9781305480537Author:FARRELLPublisher:CENGAGE LEARNING - CONSIGNMENT
C++ for Engineers and ScientistsComputer ScienceISBN:9781133187844Author:Bronson, Gary J.Publisher:Course Technology Ptr




