Expert Solution & Answer
Book Icon
Chapter 9, Problem 1P

Explanation of Solution

Creating "Main.java":

  • Create a class named "Main".
    • Define the "main ()" method.
      • Declare required variables.
      • Do till the user enters "n" using "while" condition.
        • Get the string from the user.
        • Check if the length of the string is greater than or equal to 20.
          • Create an object "e" for the class. Here the exception is thrown using default constructor.
          • Get and print the message using the method "e.getMessage()".
        • Else,
          • Print the number of characters.
        • Ask whether the user wants to continue or not and store the response in a variable "response".
        • Check if the response is equal to "n".
          • Break the loop.

Creating "MessageTooLongException.java":

  • Create a class named "MessageTooLongException" that extends "Exception".
    • Define a default constructor that calls the parent class’s method using "super ()" by passing a message.
    • Define a parameterized constructor that calls the parent class’s method using "super ()" by passing a message that is given as the argument.

Program:

MessageTooLongException.java:

//Define a class

public class MessageTooLongException extends Exception

{

//Default constructor

public MessageTooLongException()

{

//Call the parent class by passing the message

super("Message Too Long!");

}

//Parameterized constructor

public MessageTooLongException(String message)

{

//Call the parent class by passing the message

super(message);

}

}

Main.java:

//import the package

import java.util.Scanner;

//Main class

class Main

{

//Define main method

public static void main(String[] args)

{

//Create an object for the scanner class

Scanner sc = new Scanner(System.in);

//Declare required variables

String str, response = "y";

//Do till the user enters 'n'

while(response...

Blurred answer
Students have asked these similar questions
You are tasked with developing a portable system that can be worn to collect health and fitness data. The challenge is to integrate all functions into the smaller form of an ear clip. The device should include heart rate, movement and temperature sensor and wireless communication with a mobile app. Draw a diagram- hardware architecture of the system- including the selection of suitable sensors, communication modules, and an energy-efficient microcontroller. (visualize the components and their connections)
Draw out an example of 3 systems using Lamport’s logical clock and explain the steps in words.
"Systems have become very powerful and sophisticated, providing quality information fordecisions that enable the firm to coordinate both internally and externally."With reference to the above statement compare the operations of any three data gatheringsystems today’s organisations use to aid decision making.

Chapter 9 Solutions

Java: An Introduction to Problem Solving and Programming (8th Edition)

Chapter 9.1, Problem 11STQ Chapter 9.1, Problem 12STQ Chapter 9.1, Problem 13STQ Chapter 9.1, Problem 14STQ Chapter 9.2, Problem 15STQ Chapter 9.2, Problem 16STQ Chapter 9.2, Problem 17STQ Chapter 9.2, Problem 18STQ Chapter 9.2, Problem 19STQ Chapter 9.2, Problem 20STQ Chapter 9.2, Problem 21STQ Chapter 9.2, Problem 22STQ Chapter 9.2, Problem 23STQ Chapter 9.3, Problem 24STQ Chapter 9.3, Problem 25STQ Chapter 9.3, Problem 26STQ Chapter 9.3, Problem 27STQ Chapter 9.3, Problem 28STQ Chapter 9.3, Problem 29STQ Chapter 9.3, Problem 30STQ Chapter 9.3, Problem 31STQ Chapter 9.3, Problem 32STQ Chapter 9.3, Problem 33STQ Chapter 9.3, Problem 34STQ Chapter 9.3, Problem 35STQ Chapter 9.4, Problem 36STQ Chapter 9.4, Problem 37STQ Chapter 9.4, Problem 38STQ Chapter 9, Problem 1E Chapter 9, Problem 2E Chapter 9, Problem 3E Chapter 9, Problem 4E Chapter 9, Problem 5E Chapter 9, Problem 6E Chapter 9, Problem 8E Chapter 9, Problem 9E Chapter 9, Problem 10E Chapter 9, Problem 11E Chapter 9, Problem 12E Chapter 9, Problem 13E Chapter 9, Problem 1P Chapter 9, Problem 2P Chapter 9, Problem 3P Chapter 9, Problem 2PP Chapter 9, Problem 3PP Chapter 9, Problem 7PP Chapter 9, Problem 10PP Chapter 9, Problem 11PP
Knowledge Booster
Background pattern image
Similar questions
    SEE MORE QUESTIONS
    Recommended textbooks for you
    Text book image
    C++ Programming: From Problem Analysis to Program...
    Computer Science
    ISBN:9781337102087
    Author:D. S. Malik
    Publisher:Cengage Learning
    Text book image
    EBK JAVA PROGRAMMING
    Computer Science
    ISBN:9781337671385
    Author:FARRELL
    Publisher:CENGAGE LEARNING - CONSIGNMENT
    Text book image
    Programming Logic & Design Comprehensive
    Computer Science
    ISBN:9781337669405
    Author:FARRELL
    Publisher:Cengage
    Text book image
    Microsoft Visual C#
    Computer Science
    ISBN:9781337102100
    Author:Joyce, Farrell.
    Publisher:Cengage Learning,
    Text book image
    C++ for Engineers and Scientists
    Computer Science
    ISBN:9781133187844
    Author:Bronson, Gary J.
    Publisher:Course Technology Ptr
    Text book image
    EBK JAVA PROGRAMMING
    Computer Science
    ISBN:9781305480537
    Author:FARRELL
    Publisher:CENGAGE LEARNING - CONSIGNMENT