Course 1 Assessment: Introduction to Web Development Quiz Answers
In this article i am gone to share Coursera Course: Introduction to Front-End Development Week 4 | Course 1 Assessment: Introduction to Web Development Quiz Answers with you..
Enroll Link: Introduction to Front-End Development
Also visit: Module Quiz: UI Frameworks Quiz Answers
Course 1 Assessment: Introduction to Web Development Quiz Answers
Question 1)
In the client/server model, is the web browser a client or a server?
- Client
- Server
Question 2)
In the web browser, what is the role of JavaScript?
- To describe the content of the web page
- To provide interactivity and data processing
- To describe the visual look and layout
Question 3)
Which protocol is used to transfer HTML documents to the web browser when browsing the World Wide Web?
- HyperText Transfer Protocol (HTTP)
- File Transfer Protocol (FTP)
- Dynamic Host Configuration Protocol (DHCP)
Question 4)
What will display on the web page inside the web browser for the following HTML document?
<!DOCTYPE html> <html> <head> <title>Little Lemon</title> </head> <body> <p>Our Menu</p> </body> </html>
- Little Lemon
- Our Menu
Question 5)
A hyperlink is used to link to other documents and content. Which of the following is the correct way to use a hyperlink?
<anchor src="dog.htm">My Dog</anchor> <a href="cat.html">My Cat</a> <a src="mouse.html">My Mouse</a>
- <anchor src=”dog.htm”>
- <a href=”cat.html”>
- <a src=”mouse.html”>
Question 6)
In the following CSS rule, what is the width: 50%; part of the rule known as?
div { width: 50%;}
- Property
- Selector
- Attribute
Question 7)
What is the margin-box width for the following CSS rule?
div { width: 20px; padding-left: 10px; padding-right: 10px; margin-left: 10px; margin-right: 10px; }
- 20 pixels
- 40 pixels
- 60 pixels
Question 8)
A responsive web page adapts its layout to provide the best user experience based on a user’s device. The point at which it adapts is known as the _________________.
- Design Point
- Breakpoint
- Box Point
Question 9)
In the following HTML, the btn-primary CSS class is applied to the button element. What is this CSS class known as in Bootstrap?
<button class="btn btn-primary">Submit</button>
- Infix
- Modifier
- Component
Question 10)
React stores a representation of the browser DOM in memory. What is this representation called?
- The Virtual DOM
- The Memory DOM
- The Copy DOM
Question 11)
True or False. In the request/response cycle, the web browser sends the request.
- True
- False
Question 12)
Which of the following issues does UDP solve? Select all that apply.
- Out of order data
- Corrupted data
- Lost data
Question 13)
True or False. Little Lemon will display in the web browser’s main window.
<!DOCTYPE html> <html> <head> <title>Little Lemon</title> </head> <body> <p>Our Menu</p> </body> </html>
- True
- False
Question 14)
What is the border-box width for the following CSS rule?
div { width: 10px; padding-left: 5px; padding-right: 5px; border-width: 5px; margin-left: 10px; margin-right: 10px; }
- 20 pixels
- 25 pixels
- 30 pixels
- 50 pixels
Question 15)
True or False. The following div element will fill 6 columns of the Bootstrap grid on desktop devices.
<div class="col-12 col-lg-6"> </div>
- True
- False
Question 16)
Which of the following is TCP suitable for transmitting? Select all that apply.
- Text
- Video Streaming
- Voice Calls
- Images
Question 17)
True or False. Unordered lists are defined in HTML using the <ol> tag.
- True
- False
Question 18)
What type of selector is used for the following CSS rule?
#header {width: 50%;}
- ID selector
- Element selector
- Class selector
Question 19)
React applications are built using reusable pieces of code. What are these pieces known as?
- Elements
- Components
- Snippets
Question 20)
What will display in the web browser tab for the following HTML document?
<!DOCTYPE html> <html> <head> <title>Little Lemon</title> </head> <body> <p>Our Menu</p> </body> </html>
- Little Lemon
- Our Menu
Question 21)
The code that runs on the web server is commonly known as _____________.
- Hardware
- Software
Question 22)
Which HTML tag is used to link to other HTML documents?
- The image tag <img>
- The anchor tag <a>
- The link tag <link>
Question 23)
In the following CSS rule, what part of the rule is represented by div?
div { width: 50%;}
- Property
- Selector
- Attribute
Question 24)
What is the padding-box width for the following CSS rule?
div { width: 10px; padding: 5px; margin-left: 10px; margin-right: 10px; }
- 10 pixels
- 15 pixels
- 20 pixels
- 40 pixels
Question 25)
How many columns does Bootstrap’s grid consist of?
- 8
- 10
- 12
Question 26)
In the following HTML, Bootstrap grid CSS class col-xl-6 is applied to the div element. What is the xl part of the class known as?
<div class="col-xl-6">
</div>
- Infix
- Modifier
- Component
Question 26)
In the web browser, what is the role of CSS?
- To describe the content of the web page
- To provide interactivity and data processing
- To describe the visual look and layout
Question 27)
True or False. Dynamic content is generated by an Application Server.
- True
- False
Question 28)
True or False. The libraries which our application depends on can be combined into a single file using code bundling.
- True
- False