Solved

String SValue = "Life Is About Choices";

Question 71

Multiple Choice

string sValue = "Life is about choices";
String [ ] sn = sValue.Split(' ') ;
Using the Substring( ) method with sValue, which of the following references the word choices?


A) sValue.Substring(14, 7) ;
B) sValue.Substring(3) ;
C) sValue.Substring("choices") ;
D) sValue.Substring(15, 7) ;

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions