Question: Need to be in Java Language Morse code is a code where each letter of the English alphabet, each digit, and various punctuation characters are



Need to be in Java Language
Morse code is a code where each letter of the English alphabet, each digit, and various punctuation characters are represented by a series of dots and dashes. Figure 1 shows part of the code. Write a program that asks the user to enter a string and then converts that string into Morse code. Use hyphens for dashes and periods for dots. Some points to consider: Design: Figure out what classes and methods you need to develop. Ex. Utility classes, class to represent Morse code generator, etc Architecture: Create a UML of your architecture idea. Make it re-usable and configurable by someone other than yourself The input can be given in two ways 1. 2. 3. a. b. Command line args Passed into a function 4. 5. Use string buffers when you are (or are going to) manipulating large Strings Use appropriate accessors for your variables and methods
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
