1|Page
WGU C777 OBJECTIVE ASSESSMENT FINAL EXAM
|COMPLETE QUESTIONS WITH EXPERT SOLUTIONS
| 2026 LATEST UPDATED | GET A+
<form> ......ANSWER......Which HTML tag is used to create an HTML
form for user input?
autocomplete
EXAMPLES: <form action="action_page.php" autocomplete="on">
<input type="email" autocomplete="off"> ......ANSWER......Which
attribute specifies whether a form or an input field should allow the
browser to predict the value?
novalidate
EXAMPLE: <form action="/action_page.php" novalidate>
......ANSWER......Which attribute specifies that the form input should not
be validated when submitted?
action
,2|Page
EXAMPLE: <form action="/action_page.php"> ......ANSWER......Which
attribute defines the action to be performed when the form is
submitted?
enctype
EXAMPLE: <form action="/action_page_binary.asp" method="post"
enctype="multipart/form-data"> ......ANSWER......Which attribute
specifies how form input should be encoded when submitted to the
server?
method
EXAMPLE: <form action="/action_page.php" method="get"
target="_blank"> ......ANSWER......Which attribute specifies the HTTP
method to be used when submitting the form data?
target
EXAMPLE: <form action="/action_page.php" method="get"
target="_blank"> ......ANSWER......Which attribute specifies where to
display the response that is received after submitting the form?
list
,3|Page
EXAMPLE:<input list="browsers">
<datalist id="browsers">
</datalist> ......ANSWER......Which attribute refers to pre-defined
options contained in a datalist?
min and max
EXAMPLE: <input type="number" min="1" max="5">
......ANSWER......Which attributes define the minimum or maximum
value for an <input> element?
maxlength
EXAMPLE: <input type="text" maxlength="4"> ......ANSWER......Which
attribute defines the maximum length of input allowed in an <input>
field?
multiple
EXAMPLE: <input type="file" id="files" multiple> ......ANSWER......Which
attribute allows the user to enter more than one value in the <input>
element?
pattern
, 4|Page
EXAMPLE: <input type="text" pattern="[A-Za-z]{3}">
......ANSWER......Which attribute checks input into the field against a
regular expression, which is a pattern of characters for use in pattern-
matching and search-and-replace functions?
placeholder
EXAMPLE: <input type="tel" placeholder="123-45-678">
......ANSWER......Which attribute provides a hint to the user of the input
value expected in the <input> field?
required
EXAMPLE: <input type="text" required> ......ANSWER......Which
attribute requires input in the field before the form can be submitted?
user input validation ......ANSWER......What do we call the process that
tests data input to verify whether the input follows a specified format
or meets minimum requirements for character number or type?
inline validation ......ANSWER......What do we call the process in which
the user input in each field of a form is validated before the form is
submitted?
WGU C777 OBJECTIVE ASSESSMENT FINAL EXAM
|COMPLETE QUESTIONS WITH EXPERT SOLUTIONS
| 2026 LATEST UPDATED | GET A+
<form> ......ANSWER......Which HTML tag is used to create an HTML
form for user input?
autocomplete
EXAMPLES: <form action="action_page.php" autocomplete="on">
<input type="email" autocomplete="off"> ......ANSWER......Which
attribute specifies whether a form or an input field should allow the
browser to predict the value?
novalidate
EXAMPLE: <form action="/action_page.php" novalidate>
......ANSWER......Which attribute specifies that the form input should not
be validated when submitted?
action
,2|Page
EXAMPLE: <form action="/action_page.php"> ......ANSWER......Which
attribute defines the action to be performed when the form is
submitted?
enctype
EXAMPLE: <form action="/action_page_binary.asp" method="post"
enctype="multipart/form-data"> ......ANSWER......Which attribute
specifies how form input should be encoded when submitted to the
server?
method
EXAMPLE: <form action="/action_page.php" method="get"
target="_blank"> ......ANSWER......Which attribute specifies the HTTP
method to be used when submitting the form data?
target
EXAMPLE: <form action="/action_page.php" method="get"
target="_blank"> ......ANSWER......Which attribute specifies where to
display the response that is received after submitting the form?
list
,3|Page
EXAMPLE:<input list="browsers">
<datalist id="browsers">
</datalist> ......ANSWER......Which attribute refers to pre-defined
options contained in a datalist?
min and max
EXAMPLE: <input type="number" min="1" max="5">
......ANSWER......Which attributes define the minimum or maximum
value for an <input> element?
maxlength
EXAMPLE: <input type="text" maxlength="4"> ......ANSWER......Which
attribute defines the maximum length of input allowed in an <input>
field?
multiple
EXAMPLE: <input type="file" id="files" multiple> ......ANSWER......Which
attribute allows the user to enter more than one value in the <input>
element?
pattern
, 4|Page
EXAMPLE: <input type="text" pattern="[A-Za-z]{3}">
......ANSWER......Which attribute checks input into the field against a
regular expression, which is a pattern of characters for use in pattern-
matching and search-and-replace functions?
placeholder
EXAMPLE: <input type="tel" placeholder="123-45-678">
......ANSWER......Which attribute provides a hint to the user of the input
value expected in the <input> field?
required
EXAMPLE: <input type="text" required> ......ANSWER......Which
attribute requires input in the field before the form can be submitted?
user input validation ......ANSWER......What do we call the process that
tests data input to verify whether the input follows a specified format
or meets minimum requirements for character number or type?
inline validation ......ANSWER......What do we call the process in which
the user input in each field of a form is validated before the form is
submitted?