Introduction to Java Programming and Data Structures, Comprehensive Version (11th Edition)
11th Edition
ISBN: 9780134670942
Author: Y. Daniel Liang
Publisher: PEARSON
expand_more
expand_more
format_list_bulleted
Concept explainers
Textbook Question
Chapter 10.11, Problem 10.11.6CP
Suppose s1 and s2 are given as fot tows:
StringBuilder s1 = new StringBuilder(“Java”);
StringBuilder s2 = new StringBuilder(“HTML”);
Show the value of s1 after each of the following statements. Assume the statements are independent.
a. s1.append(“ is fun”);
b. s1.append(s2);
c. s1.insert(2, “is fun”);
d. s1.insert(1, s2);
e. s1.charAt(2);
f. s1.length();
g. s1.deleteCharAt(3);
h. s1.delete(1, 3);
i. s1.reverse();
j. s1.replace(1, 3, “Computer”);
k. s1.substring(1, 3);
l. s1 .substring(2);
Expert Solution & Answer
Want to see the full answer?
Check out a sample textbook solutionStudents have asked these similar questions
Strictly java code
Write an application for Limpopo’s Car Care Shop that shows a user a list of available services: oil change, tire rotation, battery check, or brake inspection. Allow the user to enter a string that corresponds to one of the options, and display the option and its price as R250, R220, R150, or R50, accordingly. Display an error message if the user enters an invalid item.
JAVA
Anagram words
Write a C code that asks users to enter two words, one after the other and checks if these words are anagrams (permutations of the same letters).
For instance, the words “smartest” and “mattress” are anagrams.
Examplea
Run 1:
Please enter first word: lookplease enter the second word: coolSorry! “cool” and “look” are not anagrams.
Run 2:
Please enter first word: masters
please enter the second word: smartes
Yes! “masters” and “smartes” are anagrams.
Hint:
If you sort the two words that are anagrams, they will become identical! For instance, “smartest” and “masters” both sort to “aemrsstt”
You can use all functions in <string.h>
Sorting a string is exactly similar to sorting an array. You just need to know the length of the string and make sure you do not touch the terminating null.
Chapter 10 Solutions
Introduction to Java Programming and Data Structures, Comprehensive Version (11th Edition)
Ch. 10.2 - Prob. 10.2.1CPCh. 10.3 - Is the BMI class defined in Listing 10.4...Ch. 10.4 - Prob. 10.4.1CPCh. 10.4 - Prob. 10.4.2CPCh. 10.4 - Prob. 10.4.3CPCh. 10.4 - Prob. 10.4.4CPCh. 10.7 - Prob. 10.7.1CPCh. 10.7 - Prob. 10.7.2CPCh. 10.7 - How do you convert an integer into a string? How...Ch. 10.7 - Show the output of the following code: public...
Ch. 10.7 - Prob. 10.7.5CPCh. 10.8 - What are autoboxing and autounboxing? Are the...Ch. 10.8 - Show the output of the following code. public...Ch. 10.9 - What is the output of the following code? public...Ch. 10.10 - Suppose s1, s2, s3, and s4 are four strings, given...Ch. 10.10 - To create the string Welcome to Java, you may use...Ch. 10.10 - What is the output of the following code? String...Ch. 10.10 - Let s1 be Welcome and s2 be welcome Write the...Ch. 10.10 - Prob. 10.10.5CPCh. 10.10 - Prob. 10.10.6CPCh. 10.10 - Prob. 10.10.7CPCh. 10.10 - Prob. 10.10.8CPCh. 10.10 - What is wrong in the following program? 1public...Ch. 10.10 - Show the output of the following code: public...Ch. 10.10 - Show the output of the following code: public...Ch. 10.11 - Prob. 10.11.1CPCh. 10.11 - Prob. 10.11.2CPCh. 10.11 - Prob. 10.11.3CPCh. 10.11 - Prob. 10.11.4CPCh. 10.11 - Prob. 10.11.5CPCh. 10.11 - Suppose s1 and s2 are given as fot tows:...Ch. 10.11 - Show the output of the following program: public...Ch. 10 - (The Time class) Design a class named Time. The...Ch. 10 - (The BMI class) Add the following new constructor...Ch. 10 - (The MyInteger class) Design a class named...Ch. 10 - Prob. 10.4PECh. 10 - (Display the prime factors) Write a program that...Ch. 10 - (Display the prime numbers) Write a program that...Ch. 10 - Prob. 10.7PECh. 10 - Prob. 10.8PECh. 10 - (The Course class) Revise the Course class as...Ch. 10 - Prob. 10.10PECh. 10 - Prob. 10.11PECh. 10 - (Geometry: the Triangle2D class) Define the...Ch. 10 - (Geometry: the MyRectangle 2D class) Define the...Ch. 10 - (The MyDate class) Design a class named MyDate....Ch. 10 - (Geometry: the bounding rectangle) A bounding...Ch. 10 - (Divisible by 2 or 3) Find the first 10 numbers...Ch. 10 - (Square numbers) Find the first 10 square numbers...Ch. 10 - (Mersenne prime)A prime number is called a...Ch. 10 - (Approximate e) Programming Exercise 5.26...Ch. 10 - (Divisible by 5 or 6) Find the first 10 numbers...Ch. 10 - (Implement the String class) The String class is...Ch. 10 - (Implement the String class) The String class is...Ch. 10 - (Implement the Character class) The Character...Ch. 10 - (New string split method) The split method in the...Ch. 10 - (Implement the StringBuilder class) The...Ch. 10 - (Implement the StringBuilder class) The...
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- JAVA CODE PLEASE Using conditional and looping structures, make a simple calculator that does the following: First, the program should get a single string ? from the user, so that it knows what type of operation it is supposed to perform. If ? is "negate", obtain one number from the user, then negate the number. Output the negated number. If ? is "add", obtain two numbers from the user, then add the two numbers. Output the sum. similar goes to "subtract" & "multiply" division is excluded If ? is "max", obtain two numbers from the user, then get the larger value between the two numbers. If the numbers are equal, output any of them. Input: The first line of input contains a single integer ? (1≤?≤10), which is the number of operations you have to perform. This is followed by a single line containing ? operations separated by a single space. The start of each operation contains a string (which can be negate, add, subtract, multiply or max). If the string is negate, this will be…arrow_forwardJava code please Using conditional and looping structures, make a simple calculator that does the following: First, the program should get a single string ? from the user, so that it knows what type of operation it is supposed to perform. If ? is "negate", obtain one number from the user, then negate the number. Output the negated number. If ? is "add", obtain two numbers from the user, then add the two numbers. Output the sum. similar goes to "subtract" & "multiply" division is excluded If ? is "max", obtain two numbers from the user, then get the larger value between the two numbers. If the numbers are equal, output any of them. Input: The first line of input contains a single integer ? (1≤?≤10), which is the number of operations you have to perform. This is followed by a single line containing ? operations separated by a single space. The start of each operation contains a string (which can be negate, add, subtract, multiply or max). If the string is negate, this will be…arrow_forwardC# Code: There are two A, B players playing the game. Player A is angry with him, and player B is angry with him. Both s and t include only small English letters and are of equal length. A makes the first move, then B, then A, and so on. Before the start of the game, players are familiar with the content of both the letter s and t characters. These players form one rope during the game. Initially, the character unit w is empty. In each move, the player removes any single letter from the alphabetical order in order and adds this letter any (any position) to the letter w you can add a character to any index. Please refer to the Definitions for more specifications). If in any stage of the game, the character unit w is more than 1 length and is a palindrome, the player who made the last move wins. If even after the end of the game (i.e., when both s and t are empty strings), no one can make a unit of characters w a palindrome, and then player B wins. Given the unit of the letters s, and t,…arrow_forward
- 5. public static String getFlag(int size, char color1, char color2, char color3) - This method returns a string where a triangle appears on the left size of the diagram, followed by horizontal lines. For example, calling DrawingApp.getFlag(9, 'R', '.', 'Y'); will generate the string: R... RRYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY YYYYYYYYY RRRYYYYΥΥΥΥΥΥΥΥΥΥΥΥΥΥΥΥΥΥΥΥΥΥΥΥΥΥΥΥΥ YYYYYYYYY RRRRYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY YYYYYYYYY RRRRRYYYYY YYYYYYYYYYYYY YYYYYYYYY RRRRRRY YYYYYYYYYYYYYYYYY YYYYYYYYY RRRRRRRYYYYYYYYYYYYYYYYYYYYYYYYYYYYY YYYYYYYYY RRRRRRRRYY YYYYYYYYYYYYYYYY YYYYYYYYY RRRRRRRRR. RRRRRRRRR. RRRRRRRRYYYYYY rҮҮҮҮҮҮҮҮҮҮҮҮҮҮҮҮҮҮ YYYYYYYYY RRRRRRRYYY ΥΥΥΥΥΥΥΥΥΥΥΥΥΥΥΥΥ ΥΥΥΥΥΥΥΥΥ RRRRRRYYY ΥΥΥΥΥΥΥΥΥΥΥΥΥΥΥ YYYYYYYYY RRRRRYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY YYYYYYYYY RRRRYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY YYYYYYYYY RRRYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY YYYYYYYYY RRYYYYYYYY YYYYYYYYYYYYYYYY ΥΥΥΥΥΥΥ The diagram has a number of rows that corresponds to size * 2 and a number of colums that…arrow_forwardJava program Write an application for Limpopo's Car Care Shop that shows a user a list of available services: oil change, tire rotation, battery check, or brake inspection. Allow the user to enter a string that corresponds to one of the options, and display the option and its price as R250, R220, R150, or R50, accordingly. Display an error message if the user enters an invalid item.arrow_forwarddef area(side1, side2): return side1 * side2s1 = 12s2 = 6Identify the statements that correctly call the area function. Select ALL that apply. Question options: area(s1,s2) answer = area(s1,s2) print(f'The area is {area(s1,s2)}') result = area(side1,side2)arrow_forward
- This is the issue and must be written in java:Write an application that accepts three specific User strings and shows either You have not entered the words alphabetically or You have entered the strings alphabetically depending on whether the strings were in alphabetic order.arrow_forwardJava - Interstate Highway Numberarrow_forwardcerat javaFX 9-Rock, Paper, Scissors GameCreate a JavaFX application that lets the user play the game of rock, paper, scissors againstthe computer. The program should work as follows.1. When the program begins, a random number in the range of 1 through 3 is generated. If the number is 1, then the computer has chosen rock. If the number is 2, thenthe computer has chosen paper. If the number is 3, then the computer has chosenscissors. (Do not display the computer’s choice yet.)2. The user selects his or her choice of rock, paper, or scissors by clicking a Button. Animage of the user’s choice should be displayed in an ImageView component. (Youwill find rock, paper, and scissors image files in the book’s Student Sample Files.)3. An image of the computer’s choice is displayed.4. A winner is selected according to the following rules:l If one player chooses rock and the other player chooses scissors, then rock wins.(Rock smashes scissors.)l If one player chooses scissors and the other player…arrow_forward
- Java Programming Question 12 error: I have this else error in my code and not sure how to fix it. Help would be appreciated!arrow_forwardDescription Write a Java program that compares two Strings. You have to declare a String text1 and assign it the value "programming" and then declare another String text2 and assign it the value "development". Your program should do the following: If the two Strings are exactly the same print to the screen "Exactly the same: True" otherwise print "Exactly the same: False". You may use boolean variables. If and only if the first comparison was false, a comparison should be done that ignores case sensitivity. If they are the same while ignoring the case print to the screen "Similar: True" otherwise print "Similar: False". Sample Input These sentences are the same. These sentences are the same. Sample Output Exactly the same: True Sample Input This sentence has Upper case and Lower case letters. This sentence has upper case and lower case letters. Sample Output Exactly the same: False Similar: True Sample Input Well something is wrong here Obviously they will get a false output Sample…arrow_forward// Converts a string to lowercase, and // displays the string's length // as well as a count of letters public class DebugSeven4 { publicstaticvoidmain(String[] args) { String aString ="HELP!! I need to get 37 things DONE today!!"; int numLetters =0. int stringLength = aString.Length(); System.out.println("In all lowercase, the sentence is: "); for(int i =0; i < stringLength; i++) { char ch = Character.toTheLowerCase(aString.charAt(i)); System.out.print(ch); if(Character.isLetter(ch)) numLetters--; } System.out.println(); System.out.println ("The number of CHARACTERS in the string is " + stringLength); System.out.println(The number of LETTERS is " + numLetters); } }arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education
Expressions in C++ | C++ tutorial for beginners; Author: Tutorial Mart;https://www.youtube.com/watch?v=XHbsZGpmRc8;License: Standard YouTube License, CC-BY
expression in python # python expressions; Author: Abhishek Tripathi;https://www.youtube.com/watch?v=Cc-kJGRjH6k;License: Standard Youtube License