FOUNDATIONS OBJECTIVE ASSESSMENT BANK | 2025
COMPLETE ACCURATE REAL EXAM QUESTIONS WITH
DETAILED ANSWERS | ALREADY GERADED A+ |
GUARANTEED EXCELLENCE PASS
Which set of CSS rules will create a fluid layout? - ✔✔✔ Correct Answer > body
{margin: auto; border: solid 1px gray;} main {padding-left: 35%; border: solid
1px gray;} aside {width: 30%; float: left; border: solid 1px gray;}
What is a network sniffer? - ✔✔✔ Correct Answer > Software that monitors
network traffic and allows users to inspect HTTP requests and responses.
What is the global setting in Bootstrap that affects the overall text appearance on
a website? - ✔✔✔ Correct Answer > Typography
What is the ability of users with disabilities to access and use a webpage with
reasonable effort? - ✔✔✔ Correct Answer > Web Accessibility
What is a browser cache? - ✔✔✔ Correct Answer > An area on a computer hard
drive where web content can be stored by the web browser for quick retrieval
later.
,What is a protocol suite that governs how data packets are transferred over the
internet from one machine to another? - ✔✔✔ Correct Answer > ransmission
Control Protocol / Internet Protocol (TCP/IP)
HTML elements that are containers - ✔✔✔ Correct Answer > <footer>, <header>,
<section>, and <span>
A block element with no semantic meaning - ✔✔✔ Correct Answer > <div>
What type of HTML element fills the minimum space possible in the parent
container and can only contain text of other elements of this type? - ✔✔✔
Correct Answer > Inline Element
Generic HTML element that creates inline containers to facilitate the managing
content on a webpage. Has no semantic meaning - ✔✔✔ Correct Answer >
<span>
What types of elements can be insides a block element? - ✔✔✔ Correct Answer >
Inline and block elements
What types of elements can be insides an inline element? - ✔✔✔ Correct Answer
> Inline elements
What HTML element do we use to facilitate information gathering for submission
to a server? - ✔✔✔ Correct Answer > <form>
,What HTML attribute should be used if a <form> field contains binary data that
the normal format of the query string is not sufficient to encode? - ✔✔✔ Correct
Answer > Enctype
Five primary attributes for a <input> element - ✔✔✔ Correct Answer > id, name,
type, value, placeholder
What is the <input> type attribute value of a text box widget? - ✔✔✔ Correct
Answer > text
Which HTML element should be used to produce a submit button widget in form?
- ✔✔✔ Correct Answer > <input>
Which <input> attribute allows the input to start with a default value? - ✔✔✔
Correct Answer > value
Which <input> attribute provides a hint to the user about the information being
requested? - ✔✔✔ Correct Answer > placeholder
Which attribute inside the <label> element is used to associate the label with a
widget? - ✔✔✔ Correct Answer > for
True of false? An <option> element must have a value attribute. - ✔✔✔ Correct
Answer > False
Which element can create a button with an image? - ✔✔✔ Correct Answer >
<button>
, Four <input> types that exist for entering specific types of text. - ✔✔✔ Correct
Answer > email, search, tel, url
Audio formats supported by nearly all web browsers - ✔✔✔ Correct Answer >
AAC, MP3
Correct HTML for referring to an external style sheet - ✔✔✔ Correct Answer >
<link rel="stylesheet" type="text/css" href="mystyle.css">
Where in an HTML document is the correct place to refer to an external style
sheet? - ✔✔✔ Correct Answer > In the <head> section
Which HTML tag is used to define an internal style sheet? - ✔✔✔ Correct Answer
> <style>
Which HTML attribute is used to define inline styles? - ✔✔✔ Correct Answer >
style
Which is the correct CSS syntax? - ✔✔✔ Correct Answer > body {color:black;}
How to insert CSS comment - ✔✔✔ Correct Answer > /* this is a comment */
Which property is used to change the background color? - ✔✔✔ Correct Answer
> background-color