what are the methods variable and output code of following program public class rhyd 5152603
what are the Methods,Variable and Output code of following program
public class Rhydham{
public static void main(String [] args){
displayString2();
displayString1();
}//end main
/**Method which displays whatever is stored in a local string variable to the screen*/
public static void displayString1(){
String s1 = “eyes are Blue”;
System.out.println(s1);
}//end displayString1
/**Method which displays whatever is stored in a local string variable to the screen*/
public static void displayString2(){
String s2 = “Roses are Red”;
System.out.println(s2);
}//end displayString2
}//end class