Question

In: Computer Science

(in C# please.) EXCEPTION HANDLING Concept Summary: 1. Use of try… catch in a program 2....

(in C# please.) EXCEPTION HANDLING Concept Summary:

1. Use of try… catch in a program

2. Define an exception class and call it from the driver program.

For this lab you will complete two parts.

Part (a) of the lab implements try… catch and uses an existing exception in C# or in Java.

Write a program that implements an ArrayIndexOutOfBounds error.

Part (b) writes a program that converts a time from 24-hour notation to 12-hour notation.

Assume the user will enter the time as a 4-digit number with no colon.

Submission Guidelines: You will turn in 3 program files. Part (a) has one program file Part (b) requires two program files. (Note: C# Students can turn in one program file)

Specifications: Part (a): Write a program in Java or C# that declares an array of 5 elements and displays the contents of the array. Your program should attempt to access the 6th element in the array (which does not exist) and using try.. catch your program should prevent the run-time error and display your error message to the user. Sample output including error message is provided below. SAMPLE OUTPUT: Part (a) Printing an element out of bounds 5 7 11 3 0 You went out of limits in the array

Part (b): Define an exception class called InvalidTimeFormatException. If the user enters an invalid time like 1065 or 2515, the program should throw and handle an InvalidTimeFormatException. NOTE: Assume the user will enter the time as a 4-digit number with no colon.

SAMPLE OUTPUT:

Part (b) Enter time in 24-hour notation: 1614

That is the same as 4:14 PM Again? (y/n) y

Enter time in 24-hour notation: 0245

That is the same as 2:45 AM Again? (y/n) y

Enter time in 24-hour notation: 1215

That is the same as 12:15 PM Again? (y/n) y

Enter time in 24-hour notation: 2612 Error: Hour can only be between 0 and 23 Again? (y/n) y

Enter time in 24-hour notation: 1562 Error: Minutes can only be between 0 and 59 Again? (y/n) n

Solutions

Expert Solution

Below is the solution:

using System;

namespace ExceptionHandling
{
    class Program
    {
      

        static void Main(string[] args)
        {
            int[] num = new int[5] {5,7,11,3,0};
            try
            {
                for(int i=0; i<=num.Length; i++) //loop runs 6 times
                {
                    Console.Write(num[i]+ " ");
                }

            }
            catch (IndexOutOfRangeException ex) //print an error
            {
                Console.WriteLine("\nYou went out of limits in the array");
            }

            int hour, minute, number; //declare variable
            String AmPm = "";
                char option = 'y';
                try
                {
                    do
                    { //loop util user user enter n
                        //read number
                        Console.Write("\nEnter time in 24 - hour notation:");
                        number = Convert.ToInt32(Console.ReadLine());
                        hour = number / 100;
                        //check for the 24 hour
                        if (hour > 24 || hour < 0)
                        {
                            Console.Write("Error: Hour can only be between 0 and 23 Again? (y/n) ");
                            option = Console.ReadLine()[0];
                        }
                        else
                        {
                            if (hour > 0 || hour <= 12)
                                AmPm = "AM";
                            else
                                AmPm = "PM";
                        }
                      
                        minute = number % 100;
                    //check for the 60 minute
                        if (minute > 60 || minute < 0)
                        {
                               Console.Write("Error: Minutes can only be between 0 and 59 Again? (y/n) ");
                               option = Console.ReadLine()[0];
                        }
                        else
                        {
                            //print
                            Console.Write("That is the same as " + hour + ":" + minute + " " +AmPm+" Again? (y/n) ");
                            option = Console.ReadLine()[0];
                        }

                    } while (option == 'y');
                }
                catch (InvalidTimeZoneException ex) //print an error
                {
                    Console.WriteLine(ex.ToString());
                }
          

            Console.ReadKey();
        }
    }
}

sample output:

5 7 11 3 0
You went out of limits in the array

Enter time in 24 - hour notation:1614
That is the same as 16:14 PM Again? (y/n) y

Enter time in 24 - hour notation:0245
That is the same as 2:45 AM Again? (y/n) y

Enter time in 24 - hour notation:1215
That is the same as 12:15 PM Again? (y/n) y

Enter time in 24 - hour notation:2612
Error: Hour can only be between 0 and 23 Again? (y/n) y

Enter time in 24 - hour notation:1562
Error: Minutes can only be between 0 and 59 Again? (y/n) n


Related Solutions

*IN JAVA* EXCEPTION HANDLING Concept Summary: 1. Use of try… catch in a program 2. Define...
*IN JAVA* EXCEPTION HANDLING Concept Summary: 1. Use of try… catch in a program 2. Define an exception class and call it from the driver program. For this lab you will complete two parts. Part (a) of the lab implements try… catch and uses an existing exception in C# or in Java. Write a program that implements an ArrayIndexOutOfBounds error. Part (b) writes a program that converts a time from 24-hour notation to 12-hour notation. Assume the user will enter...
EXCEPTION HANDLING Concept Summary: 1. Exception handling 2. Class design Description Write a program that creates...
EXCEPTION HANDLING Concept Summary: 1. Exception handling 2. Class design Description Write a program that creates an exception class called ManyCharactersException, designed to be thrown when a string is discovered that has too many characters in it. Consider a program that takes in the last names of users. The driver class of the program reads the names (strings) from the user until the user enters "DONE". If a name is entered that has more than 20 characters, throw the exception....
*In Java please! EXCEPTION HANDLING Concept Summary: 1. Exception   handling   2. Class   design Description Write   a  ...
*In Java please! EXCEPTION HANDLING Concept Summary: 1. Exception   handling   2. Class   design Description Write   a   program   that   creates   an   exception   class   called   ManyCharactersException,   designed   to   be   thrown   when   a   string   is   discovered   that   has   too   many   characters   in   it. Consider   a   program   that   takes   in   the   last   names   of   users.   The   driver   class   of   the   program reads the   names   (strings) from   the   user   until   the   user   enters   "DONE".   If   a   name is   entered   that   has   more   than   20   characters,  ...
I do not know how to: D. Apply exception handling using try-catch for System.OutOfMemoryException. the code...
I do not know how to: D. Apply exception handling using try-catch for System.OutOfMemoryException. the code i have in POWERSHELL: while($true) { $input= Read-Host "Enter the option 1-5" if ($input -eq 5) { break } #B. Create a “switch” statement that continues to prompt a user by doing each of the following activities, until a user presses key 5: switch ( $input ){ #Using a regular expression, list files within the Requirements1 folder, with the .log file extension and redirect...
Raising an Exception In the previous problem, you used a try/except statement to catch an exception....
Raising an Exception In the previous problem, you used a try/except statement to catch an exception. This problem deals with the opposite situation: raising an exception in the first place. One common situation in which you will want to raise an exception is where you need to indicate that some precondition that your code relies upon has not been met. (You may also see the assert statement used for this purpose, but we won’t cover that here.) Write a function...
in C#, What is an exception and what are the advantages of exception handling?
in C#, What is an exception and what are the advantages of exception handling? What are the differences between the traditional error-handling methods and the object-oriented exception-handling methods and when should you use each one? Provide three to four paragraphs detailing your findings/views on these questions..provide examples with a simple code also..
Write a try/catch/finally clause to catch one or more specific Exception objects in Java.
Write a try/catch/finally clause to catch one or more specific Exception objects in Java.
Modify the following program. Add using Exception handing and polymorphism. try-catch block, Finally block in java...
Modify the following program. Add using Exception handing and polymorphism. try-catch block, Finally block in java * description of class Driver here. *these is the main class where it acts like parent class. Compiler will execute firstly static method. import java.util.Scanner; public class Driver {     public static void main (String[] args){         Scanner stdIn = new Scanner(System.in);         String user;         String computer;         char a = 'y';         do {             System.out.println("What kind of Computer would you like?");...
write in c++ Create a program that uses EXCEPTION HANDLING to deal with an invalid input...
write in c++ Create a program that uses EXCEPTION HANDLING to deal with an invalid input entry by a user. a. Write a program that prompts a user to enter a length in feet and inches. The length values must be positive integers. b. Calculate and output the equivalent measurement in centimeters 1 inch = 2.54 centimeters c. Write the code to handle the following exceptions: If the user enters a negative number, throw and catch an error that gives...
What advantages does object-oriented exception handling provide? When a program contains multiple catch blocks, how are...
What advantages does object-oriented exception handling provide? When a program contains multiple catch blocks, how are they handled? Write the statement to declare a three-by-four array of integers with the elements initialized to zero. Name the array myArray. What is the difference between volatile and nonvolatile storage in Java programming? Give examples of different storage situations. What are some of the advantages of the ArrayList class over the Arrays class? How can you use the enhanced for loop? What does...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT