public class Tester { public static void main(String[] args) { String s = "what is the answer to this question?"; String sub = s.substring( 10, 11); System.out.print(sub); } }