.container {
display: flex;
}
.container div:last-child {
margin-left: auto;
}




<h1></h1> tags?let pocket = ['turnip', 'stone', 'log', 'apple'];
let selected = pocket[1];
=== comparison operator do?fruit has been assigned a value of apple. How would you change the value to plum?let fruit = 'apple';
let fruit = 'plum'var fruit = 'plum'const fruit = 'plum'fruit = 'plum'<label> element used for?h1 {
color: red;
font-size: 5em;
}
.highlight {
background-color: yellow;
}
<span class="highlight">#BLM</span><span style="highlight">#BLM</span><highlight">#BLM</span><div id="highlight">#BLM</span><input> element?display: none in your stylesheet. Which users will be able to see or hear this content?https://app.uniswap.org/pool specifies the domain name?<form><ul><main><nav>Source: ARIA landmarks in HTML5
<meter><range><datalist><optgroup>.container {
width: 600px;
column-width: 200px;
column-gap: 50px;
}
<cite>Noam Chomsky</cite>
cite {
text-color: cyan;
}
cite {
font-color: cyan;
}
cite {
color: cyan;
}
cite {
text: cyan;
}
.cf::after {
content: '';
display: block;
clear: both;
}
String[] galaxies = new Array("Milky Way", "Whirlpool", "Andromeda");let galaxies = {Milky Way, Whirlpool, Andromeda};galaxies = ["Milky Way", "Whirlpool", "Andromeda"];var galaxies = {"Milky Way", "Whirlpool", "Andromeda"};display: flex to their parent?flex: 1 0 0;flex: initial;flex: 1 1 auto;flex: 1 0 auto;let max = 3;
for (i = 0; i > max; i++) {
document.write("skrt ");
}
<img src="image.jpg"><a href="images/image.jpg"></a><img src="images/image.jpg"><img href="image.jpg">let product => (x,y) { <br /> x \* y; <br />}let product = (x,y) => x\*y;let product => x\*y;let product = (x,y) -> x\*y;const user = {
given_name: 'Joe',
family_name: 'Bloggs',
age: 40,
}
rel="preconnect" added to a link resource. What will this do?<link rel="preconnect" href="https://example.com" />
Source: Web platform tests site
var currencies = ['Bitcoin', 'Ethereum'];
/* Missing line */
console.log(currencies);
currencies.push("Cosmos");Array.append("Cosmos", currencies);currencies.add("Cosmos");currencies(2) = "Cosmos";<input type="radio" value="strawberry">Strawberry
<input type="radio" value="vanilla">Vanilla
<input type="radio" value="chocolate">Chocolate
<input type="radio" value="vanilla" checked><input type="radio" value="vanilla" check><input type="radio" value="vanilla" selected><input type="radio" value="vanilla" on><html> element (or its nearest positioned ancestor element).position: absolute;
An element with position: absolute; is positioned relative to the nearest positioned ancestor (instead of positioned relative to the viewport, like fixed). However; if an absolute positioned element has no positioned ancestors, it uses the document body, and moves along with page scrolling.

float: left to the second paragraph.clear: right to the floated item.clear: left to the second paragraph.clear: left to the floated item.clear: left;
When we use the float property, and we want the next element below (not on the right or left), we will have to use the clear property. When clearing floats, you should match the clear to the float: If an element is floated to the left, then you should clear to the left. Your floated element will continue to float, but the cleared element will appear below it on the web page.
tr:nth-child(2) { background-color: #ccc; }tr:nth-child(2n+1) { background-color: #ccc; }tr:nth-child(2+1) { background-color: #ccc; }tr:nth-child(2n) { background-color: #ccc; }<nav><navigation><main><ul><link rel="preload" href="styles.css" as="style" onload="this.onload=null;this.rel='stylesheet'"><noscript><link rel="stylesheet" href="style.css"></noscript>
aria-live=polite on a live region achieve?.box {
background-color: blue;
background: url(images/star.png?raw=png) no-repeat left top;
}
list-tem: nonebullets: hiddenlist-style-type: nonelist-bullet: none.box inside .container?<div class="container">
<div class="box">what a lovely box, very centered</div>
</div>
.container {
display: flex;
align-items: center;
}
.container {
display: flex;
align-items: center;
justify-content: center;
}
.box {
align-items: center;
justify-content: center;
}
.container {
display: flex;
align: center;
}
width, which property name would you choose?block-widthinline-sizeinline-widthblock-sizergb(18, 138, 125)#128a7drgba(18, 138, 125,.5)hsl(174, 77%, 31%)row-gaprowgapgutterrow-gutterobject-fit: contain on the images.max-width: 100% on the images.width: 100% on the images.resize: true on the images.box {
width: 200px;
padding: 10px;
border: 2px solid black;
margin: 0 15px;
}
```md
- [x] 224px
- [ ] 200px
- [ ] 220px
- [ ] 260px
#### Q70. How would you round the value 11.354 to the nearest full integer?
- [ ] round(11.354);
- [x] Math.round(11.354);
- [ ] Math.rnd(11.354);
- [ ] Maths.round(11.354);
#### Q70. What is the JavaScript compiler Babel used for?
- [x] converts ECMAScript 2015+ code into backward compatible version of JS to support older browsers
- [ ] used to bundle individual JS files for use in your website
- [ ] convert older JS code into modern ECMAScript 2015+ code
- [ ] it is a SSR library that can enhance SEO and accessibility of your site
#### Q71. What is the correct way to link to an external stylesheet from the head of an HTML document?
- [x] `<link rel="stylesheet" href="styles.css">`
- [ ] `<script type="text/css" href="styles.css"></script>`
- [ ] `<script type="text/css" src="styles.css">`
- [ ] `<link rel="css" href="styles.css">`
#### Q72. Which href attribute creates a link to the telephone number 1-(704) 555-1151?
- [x] href = "tel:+17045551151"
- [ ] href="17045551151"
- [ ] href="phone:+1704551151"
- [ ] href="call:+17045551151"
#### Q73. In the color value hsl(38, 90%, 60%), what does 38 represent?
- [x] the tint of the color matching 38 degrade on the color wheel
- [ ] the opacity of the color indicating 38% of fully opacity
- [ ] the brightness of the color matching a brightness of 38%
- [ ] the intensity of the color matching an intensity of 38%
[Source: W3 Schools](<[https://www.w3schools.com/accessibility/accessibility_skip_links.php](https://www.w3schools.com/colors/colors_hsl.asp)>)
#### Q74. What is a skiplink?
- [ ] a replacement for inaccessible navigation
- [ ] a method of allowing a screen-reader user to skip between headings
- [x] a link placed early in the <body> to allow the user to skip to the main content
- [ ] a link to allow users to skip video that automatically plays on a website
[Source: W3 Schools](https://www.w3schools.com/accessibility/accessibility_skip_links.php)
#### Q75. On a page with many images, what would be the effect of adding loading="lazy" to the <img> tag?
- [ ] It will speed up the loading of the image when used with a JavaScript library
- [ ] In supporting browsers, images will be highly compressed, therefore loading more quickly
- [x] In supporting browsers, images will load only when they are in or near the visible viewport
- [ ] In supporting browsers, images will not load unless the user explicitly requests image loading
#### Q76. What is GraphQL?
- [ ] a React library for storing data
- [ ] a Vue.js library for storing and manipulating data
- [x] a query language for fetching data from APIs
- [ ] a new database format designed to replace MySQL
[Source: GraphQL official website](https://graphql.org/)
#### Q77. Which choice will place a multiline text input field on the page?
- [ ] `<multiline></multiline>`
- [x] `<textarea></textarea>`
- [ ] `<input type="multiline">`
- [ ] `<input type="textarea">`
#### Q78. Which browser is not based on Chromium?
- [x] Firefox
- [ ] Opera
- [ ] Chrome
- [ ] Edge
#### Q79. In supporting browsers, what would be the effect of using font-display: swap, as in the example?
```css
@font-face {
font-family: Helvetica;
font-display: swap;
}
<img> element does not have a closing </img> tag.<h1> element is the most important heading on the page.p {font-size: 16em;}h2 {colour: yellow;}div {border-radius: 5px}#my-div {background-color: blue;}<h1 style="color:blue;">
A Blue Heading
</h1>
<ol><li><ul><list>Reference: MDN Web Docs - ol element
Reference: MDN Web Docs - contain property
<div> element in CSS?