document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /**
  2.  * @author (Andika Nugrahanto)
  3.  * @version (22/12/2020)
  4.  */
  5. public class Example4
  6. {
  7.     public static void main(String args[])
  8.    {
  9.       try{
  10.      String str="beginnersbook";
  11.      System.out.println(str.length());;
  12.      char c = str.charAt(0);
  13.      c = str.charAt(40);
  14.      System.out.println(c);
  15.       }catch(StringIndexOutOfBoundsException e){
  16.       System.out.println("StringIndexOutOfBoundsException!!");
  17.        }
  18.    }
  19. }
');