in jGrasp
Objective In this assignment you will be practicing breaking down a problem into smaller problems, writing static methods for each smaller problem, calling the static methods in the main method to create the desired output. Problem Write a program to display the word TENNESSEE on the screen as shown below. Here is the sample output A java shell has been provided for you to fill in with the required code. //add block comment here public class PrintTennessee { public static void main(String[] args) { //your code, call other methods you wrote } //add block commnet here public static void printT() { //your code } //add block commnet here public static void printE() { 1/your code } //add block commnet here public static void printN() { } //add block commnet here public static void prints { } } Requirements You need to break down the problem into smaller problems and write a static methods for each smaller problem. In order to break down the problem into smaller pieces you need to identify the letters: T. ENS Write a method to display each of these letters Call those methods in the main method to generate the desired output . . . no repeated code should appear in your program you must have a total of 5 methods main method a method to display T a method to display O a method to display N a method to displays include block comments at the top of your program with your name, description of the program, and the date the program was written include block comments before each method describing in one line what the method does. choose meaningful names for your class name and the method names. feel free to be creative, however you need to generate the given output. . . TT TT TT TT EEEEEEEEEE E EEEEEEEEEE E EEEEEEEEEE NN N N N N NN N N 11 11 N N UN EEEEEEEEEE EEEEEEEEEE EFFEEEEEEE SSSSSSSS SSSSSSSS $ 5 SSSSSSSS SSSSSSSS 5 SSS55555 5 5 5 55555555 ELLEEEEEEE E EEEEEEEEEE E ELEEEEEEEE E Figure 1, shows the word TENNESSEE