Course 1 Assessment: Introduction to Web Development
Week- 4 Course 1 Assessment: Introduction to Web Development
1.
Question 1
In the client/server model, is the web browser a client or a server?
Well done. In the client/server model, the web browser is a client.
====================================================================
5.
Question 5
Which HTML tag is used to link to other HTML documents?
Well done. The anchor tag is used to link to other HTML documents.
====================================================================
6.
Question 6
What type of selector is used for the following CSS rule?
Well done. The class selector is prefixed with a . character.
====================================================================
10.
Question 10
React applications are built using reusable pieces of code. What are these pieces known as?
Well done. React applications are built using reusable pieces of code called Components.
====================================================================
1.
Question 1
The code that runs on the web server is commonly known as _____________.
Well done. The code is the software and the physical components are the hardware.
====================================================================
10.
Question 10
True or False. Dynamic content is generated by an Application Server.
Well done. Static content are files sent directly by the web server whereas dynamic content is generated by an application server.
====================================================================
2.
Question 2
In the web browser, what is the role of JavaScript?
Well done. JavaScript allows developers to process user interaction and data.
====================================================================
5.
Question 5
True or False. Unordered lists are defined in HTML using the <ol> tag.
Well done. The <ul> tag is used to define an unordered list and the <ol> tag is used to define an ordered list.
====================================================================
6.
Question 6
What type of selector is used for the following CSS rule?
Well done. The ID selector is prefixed with a # character.
====================================================================
7.
Question 7
What is the border-box width for the following CSS rule?
Well done. The border-box width is the content width + padding width + border width.
====================================================================
8.
Question 8
How many columns does Bootstrap’s grid consist of?
8
10
12
====================================================================
9.
Question 9
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
Well done. Infixes represent the responsive breakpoints in the Bootstrap grid.
====================================================================
3.
Question 3
Which of the following issues does UDP solve? Select all that apply.
Well done. UDP prevents data corruption but data can still arrive out of order or not arrive at all.
1.
Question 1
True or False. In the request/response cycle, the web browser sends the request.
Well done. The web browser sends a request and receives a response from the web server.
====================================================================
4.
Question 4
True or False. Little Lemon will display in the web browser’s main window.
True - False
====================================================================
3.
Question 3
Which protocol is used to transfer HTML documents to the web browser when browsing the World Wide Web?
Well done. HTTP and HTTPS are used to transfer HTML documents when browsing the World Wide Web.
====================================================================
8.
Question 8
True or False. The libraries which our application depends on can be combined into a single file using code bundling.
Well done. Code bundling helps to optimise the delivery of libraries to the web browser.
====================================================================
4.
Question 4
What will display on the web page inside the web browser for the following HTML document?
Well done. The content inside the body element displays on the web page.
====================================================================
7.
Question 7
What is the margin-box width for the following CSS rule?
Well done. The margin-box width is the content width + padding width + border width + margin width.
====================================================================
10.
Question 10
React applications are built using reusable pieces of code. What are these pieces known as?
Well done. React applications are built using reusable pieces of code called Components.
====================================================================
2.
Question 2
In the web browser, what is the role of CSS?
Well done. CSS describes how the content is presented in the web browser.
====================================================================
10.
Question 10
React stores a representation of the browser DOM in memory. What is this representation called?
Well done. The virtual DOM is used to represent the browser DOM in memory.
====================================================================
6.
Question 6
In the following CSS rule, what part of the rule is represented by div?
Well done. The CSS selector is the part of the rule represented by div.