> Write a Java program to:?

Write a Java program to:?

Posted at: 2014-12-18 
a)

String uni = "Eastern Michigan University";

System.out.println (uni.substring (0, 16));

a) Print the sub string “Eastern Michigan” from “Eastern Michigan University” which is user input.

b) Then again print the sub string “Eastern” from “Eastern Michigan”

c) Then print the uppercase of the final string “Eastern”.

d) Finally find the length of the final string as well.