Suppose we have a text "human" that we want to convert into string without using the "new" operator. Which is the correct way from the following to do so:
a) toString()
b) String(human)
c) String newvariable="human"
d) Both human.toString() and String(human)