Question

34. Which statement copies a string from a text box named txtLastName, converts the string to uppercase and saves the string in strLastName? a. strLastName = txtLastName b. txtLastName.Text =strLastName

(ToUpper) c. strLastName = ToUpper (txtLastName.Text) d. strLastName = txtLastName.Text.ToUpper()

Question image 1Question image 2Question image 3Question image 4Question image 5