Observe the below code snippet String name="Sudha learns Oracle"; System.out.println(name.substring(7,12)); What is the output of the above code?
Answer options
A
substring(7,12)); What is the output of the above code?
B
learn
C
learns
D
earns
Correct answer: learns
Explanation
Correct answer: learns.