If the HTML form game has a text field named point in it, what is the proper way to set the text associated with point to 10?

a) game.point = "10"
b) game.point.text = "10"
c) game.point.caption = "10"
d) game.point.value = "10"

d) game.point.value = "10"

Computer Science & Information Technology

You might also like to view...

Risk transference may involve purchasing insurance

Indicate whether the statement is true or false

Computer Science & Information Technology

The base case of a recursive function

A) is 0. B) is 1. C) is depth / 2. D) is 1 / (depth * 3.1415). E) depends on the problem being solved.

Computer Science & Information Technology