(Choose 1 answer)
What does the value string contain after the following code is executed?
var string = "Good luck on the test";
string = string.link("www.deitel.com")
A. the text "www.deitel.com"
B. a link to
www.deitel.com with the text "Good luck on the test"
C. a link to
www.deitel.com with the text "www.deitel.com"
D. Nothing, the string conversion will generate an error.