-
Which element shows completion progress of a task?
-
- <option>
- <meter>
- <progress>
- <select>
- None of these
Correct Option: C
<progress> element in HTML shows an indicator indicating completion progress of a task, which is typically displayed as a progress bar. It also includes all the global attributes including max, value etc. >select< element specifies control over a menu of options. <option> represent item contained in <select> element. <meter> gives a scalar range of value.