Trending News
Promoted
pls help asap?
Which is the correct code to enter the grade value (x) in the program? *
(Multiple answers)
x = Textbox1.Text
x = label1.Text
x = inputbox("Enter the grade")
Text1.Text=x
inputbox("Enter the grade")=x
3 Answers
Relevance
- Michal SychraLv 71 month ago
Text1.Text is a control. A string of characters can be assigned to it (as in the fourth case). You can then modify or delete this text immediately after running your program.
- 1 month ago
x=inputbox("enter the grade") is the correct one. it will ask the user to input the grade. then you can display it using the text1.text=x
Still have questions? Get your answers by asking now.