Which of these method of class String is used to check weather a given object starts with a particular
string literal?
Options:
A .  startsWith()
B .  endsWith()
C .  Starts()
D .  ends()
Answer: Option A
Method startsWith() of string class is used to check whether the String in question starts with a specified string. It is specialized form of method regionMatches()
Submit Comment/FeedBack