FC0-U61 · Question #783
A programmer needs to specify how to store a test score entered using a web form. Which of the following would be best to use?
The correct answer is A. Variable. A variable is the best option to store a test score entered using a web form. In programming, variables are used to store data values that can change over time, such as user input. The variable can be set to store the score when the user submits it, allowing the program to manipu
Question
A programmer needs to specify how to store a test score entered using a web form. Which of the following would be best to use?
Options
- AVariable
- BVector
- CConstant
- DArray
How the community answered
(31 responses)- A87% (27)
- B3% (1)
- C3% (1)
- D6% (2)
Explanation
A variable is the best option to store a test score entered using a web form. In programming, variables are used to store data values that can change over time, such as user input. The variable can be set to store the score when the user submits it, allowing the program to manipulate or display the score later as needed.
Topics
Community Discussion
No community discussion yet for this question.