Write the result of each evaluated expression in the provide
     Write the result of each evaluated expression in the provided blank. Assume the following and initializations. If you believe the expression will result in a compile time (syntax)error or runtime error (exception) write \"compile time error\" or \"runtime error \" respectively.  s.length  arr.length  arr(2]  s.length()  s.charAt(3)  drr.length  t.length()  s.toUpperCase()  s.indexOf(\"o\")  s.indexOf(\"o\", 6)  s.substring(1, 2)  s.substring(s.indexOf(\"wo\"))  s.indexOf(s.substring(2, 5))  s.substring(arr[4])  arr[arr[2]]   
  
  Solution
a.compilation error
b.5
c.3
d.11
e.l
f.0
g.0
h.HELLO WORLD
i.4 6
j.6
k.el
l.world
m.2
n.7
o.runtime error.

