Did method use to remove whitespace from the string?

a) Split()
b) Substring()
c) Trim()
d) TrimStart()

1 thought on “Did method use to remove whitespace from the string?”

  1. c
    Explanation: Perfectly removes whitespace from string whereas TrimStart() removes a string of characters from the end of the string.

Leave a Comment