Question 2 1 pts Given the following code fragment, which programming statement replaces the comment of X's with an assignment to the price member value of myBook to 12.99? struct Book public string isbn; public string title: public string firstName; public string lastName; public double price; public string publisher: private Sub btnSubmit_click (ByVal sender. Dim myBook As Book End Sub myBook = 12.99; myBook.price 12.99; Oprice 12.99; OmyBook.price Question 3 1 pts Given the following code fragment, which programming statement replaces the comment of X's with an assignment to the publisher member value of myBook to "Solis Media"? struct Book ( Public string isbn; Public string title; Public string firstName: Public string lastName; Public double price Public string publisher: private void btnSubmit_Click (object sender... Book myBook; O publisher "Solis Media"; myBook "Solis Media"; 0 myBook.publisher= "Solis Media", 0 myBook.publisher = Solis Media; Question 4 1 pts Given the following code fragment, which programming statement replaces the comment of X's with an assignment to the price member value of myBook to 29.45? struct Book ( public string isbn; public string title; public string firstName: public string lastName; public double price; public string publisher: private void btnSubmit_Click (object sender... Book myBook; price 29.45 OmyBook 29.45; O myBook.price; O myBook.price 29.45 Question 5 1 pts Given the following code fragment, which programming statement replaces the comment of X's with an assignment to title member value of myBook to "Programming" ? struct Book public string isbn; public string title; public string firstName public string lastName; public double price; public string publisher; private void btnSubmit_Click (object sender.. Book myBook; OmyBook "Programming"; myBook.title "Programming" title "Programming" 0 myBook.title= Programming