¿Qué hace el siguiente código?
String s = "hello"; String t = s.substring(1, 4); System.out.println(t);
Imprime "hello"
Imprime "llo"
Imprime "h"
Imprime "ell"