Assume that name is a variable of type String that has been assigned a value

LANGUAGE: Java

CHALLENGE:

Assume that name is a variable of type String that has been assigned a value.
Write an expression whose value is a String containing the second character of the value of name.
So if the value of name were “Smith” the expression ‘s value would be “m”.

SOLUTION:

name.substring(1,2)