.container {
display: flex;
}
.container div:last-child {
margin-left: auto;
}
- function scope
- block scope
- inline scope
- global scope
- to indicate that this text is the main heading on the page
- to make the text bold
- to ensure that search engines treat the keywords as being important for this page
- to demonstrate to screen readers that this text is important
- when you cannot think of useful alt text
- when you don't think it would be interesting to someone who cannot see it
- when the image has come from a CMS
- when the image is purely decorative
- title
- class
- style
- id
- top
- opacity
- width
- height
let pocket = ['turnip', 'stone', 'log', 'apple'];
let selected = pocket[1];
- log
- apple
- stone
- turnip
- It sets one variable equal to another in both value and type
- It tests for equality of type only
- It tests for equality of value only
- It tests for equality of value and type
Q9. In the following code, the variable 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'
- to identify the different parts of a figure
- to explain what needs to be entered into a form field
- as a caption for images
- as a heading for tables
- The page will not display
- An error message will be displayed
- The browser will not load the stylesheet
- The browser will ignore the unknown CSS
h1 {
color: red;
font-size: 5em;
}
- selector
- combinator
- declarator
- markup
.highlight {
background-color: yellow;
}
-
<span class="highlight">#BLM</span>
-
<span style="highlight">#BLM</span>
-
<highlight">#BLM</span>
-
<div id="highlight">#BLM</span>
- range
- address
- date
- password
Q15. You have used display: none
in your stylesheet. Which users will be able to see or hear this content?
- all users
- users who can see the content on the screen
- no users
- screen reader users
- margin
- border
- padding
- paragraph
- https
- org
- uniswap.org
- app.uniswap
-
<form>
-
<ul>
-
<main>
-
<nav>
Source: ARIA landmarks in HTML5
- It employs code that can be viewed only on a desktop computer
- It is obsolete and is not recommended for use in marking web content
- It employs code that will require users to update their browsers
- It employs incorrect syntax that will cause the browser to crash
- Font sizes are expressed relative to the font size of the containing div element
- Font sizes are expressed relative to the font size of the parent elements
- Font sizes are relative to the base font size of the operating system.
- Font sizes are relative to the root em unit used in the HTML element.
Q21. Which HTML element represents either a scalar value within a known range OR a fractional value?
-
<meter>
-
<range>
-
<datalist>
-
<optgroup>
- sharing JavaScript code with other people
- making JavaScript-reliant sites accessible to users who do not have JavaScript turned on
- bundling individual JavaScript files for use on your website
- source control
.container {
width: 600px;
column-width: 200px;
column-gap: 50px;
}
- one
- three
- four
- two
<cite>Noam Chomsky</cite>
- A
cite {
text-color: cyan;
}
- B
cite {
font-color: cyan;
}
- C
cite {
color: cyan;
}
- D
cite {
text: cyan;
}
.cf::after {
content: '';
display: block;
clear: both;
}
- inserting content that cannot be seen by screen readers
- fixing an Internet Explorer 11 bug
- clearing floats in float-based layouts
- creating a new block formatting context
-
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"};
Q27. Which description correctly describes the initial values of flex items if you have applied display: flex
to their parent?
- Items display in a row, lined up at the start, and do not stretch to fill the container
- Items display in a column, lined up at the start, and do not stretch to fill the container
- Items stay in a column until you add some flex properties.
- Items displayed in a row, lined up at the start and stretched to fill the container
Q28. Which line of code, if applied to all flex items in a flex container, would cause each flex item to take up an equal share of the total width of the container? For example, if there are four items, they would get 25% of each.
-
flex: 1 0 0;
-
flex: initial;
-
flex: 1 1 auto;
-
flex: 1 0 auto;
Q29. A video on your webpage does not display and the console shows an error about mixed content. What is happening?
- The webpage is using a DOCTYPE, which renders it incapable of displayed video in addition to other web content.
- Your browser does not support HTML5 video.
- The video is from a source that cannot be displayed in your location for legal reasons.
- The page is loaded via HTTPS, but the video is being served insecurely as HTTP and the browser is blocking it.
let max = 3;
for (i = 0; i > max; i++) {
document.write("skrt ");
}
- skrt skrt skrt
- skrt skrt
- skrt skrt skrt skrt
- nothing
Q31. You have placed an image in a directory named images and want to reference it from a page located at the root of your site. Which choice would correctly display the image on the page?
- < img src="image.jpg">
- < a href="images/image.jpg">
- < img src="images/image.jpg">
- < img href="image.jpg">
Q32. Which choice is a correct use of the parseInt() function in Javascript that parses a string and returns an integer?
- parseInt("six");
- parse_int('6');
- parseInt("6");
- parseint("6");
- let product => (x,y) {
x * y;
} - let product = (x,y) => x*y;
- let product => x*y;
- let product = (x,y) -> x*y;
Q34. Lighthouse is a tool for auditing your website. Which choice is not a category of report offered by Lighthouse?
- performance
- UX design
- accessibility
- SEO
const user = {
given_name: 'Joe',
family_name: 'Bloggs',
age: 40,
}
- function
- array
- variable
- object
<link rel="preconnect" href="https://example.com" />
- It will tell the browser that this link is a site belonging to the current domain.
- It will do nothing because this is a deprecated attribute that browsers do not support.
- It will tell the browser that a connection will be made to another origin and to start getting ready as soon as possible.
- It will tell the browser that a resource is needed, and that it should start getting fetched as soon as possible.
- images
- HTML
- CSS
- JavaScript
- the "Can I Use" website
- the Web Platform Tests Suite
- the CSS specification
- MDN property pages
Source: Web platform tests site
Q39. You have a set of images that are slightly different sizes and aspect ratios. You don't mind if you crop off some of the image, but you want each image to completely fill a square box without being distorted. Which property and value would achieve this?
- object-fit: contain
- object-fit: stretch
- object-fit: all
- object-fit: cover
- all <a> tags whose href attribute begins with "org"
- all <a> tags whose href attribute equals "org"
- all <a> tags whose href attribute ends with "org"
- all <a> tags whose href attribute contains "org"
- It eliminates some JavaScript silent errors by changing them to throw errors.
- It prohibits some syntax likely to be defined in future versions of ECMAScript.
- It forces the writing of valid HTML and CSS.
- It fixes mistakes that make it difficult for JavaScript engines to perform optimizations.
Q42. In normal flow, some elements display as block elements default and others inline. which choice contains only block-level by default elements?**
- ul, li, a
- p, b, h3
- div, p, em
- div, main, h1
Q43. Which line would you add to this code to add "Cosmos" to the list of currencies using JavaScript?
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>
Q45. _ moves an element completely out of the page's normal layout flow like it is sitting on its own separate layer. From there, you can fix it in a position relative to the edges of the page's <html>
element (or its nearest positioned ancestor element).
- Sticky positioning
- Absolute positioning
- Relative positioning
- Fixed positioning
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.
Q46. You have created a box that has a height set with CSS. Which line of CSS would add scroll bars if the content is taller than the box, but leave no visible scroll bars if the content fits into the box?
- .box { overflow: scroll; }
- .box { overflow: scroll-x; }
- .box { overflow: auto; }
- .box { overflow: none; }
Q47. Which array method should you apply to run a function for every item within an array, returning an array of all items for which the function is true?
- every()
- map()
- forEach()
- filter()
Q48. The image below has float: left applied. Text wraps the float on the right and bottom. How would you force the second paragraph to start underneath the float, leaving a gap after the preceding paragraph?
- Apply
float: left
to the second paragraph. - Apply
clear: right
to the floated item. - Apply
clear: left
to the second paragraph. - Apply
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.
Q49. You want to create striped table rows using CSS without adding a class to any element. Which CSS would correctly apply the background color to every odd row in your table?
-
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; }
Q50. You are designing a site and creating a navigation bar linking to the main sections. Which HTML element should you use to indicate that this is the main navigation?
-
<nav>
-
<navigation>
-
<main>
-
<ul>
Q51. You discover that CSS is being loaded on a website using the following code. Why might a web developer have done this?
<link rel="preload" href="styles.css" as="style" onload="this.onload=null;this.rel='stylesheet'"><noscript><link rel="stylesheet" href="style.css"></noscript>
- The CSS is being loaded asynchronously in order to prevent render blocking.
- This will stop the CSS from being loaded for old browsers that do not support the techniques in use.
- This is part of a stylesheet-switching script to load different themes for the site.
- This will stop the CCS from being loaded on slow data connections.
Q52. The flex property is often applied to flex items with a value of 1. Using flex: 1 is a shorthand - what does it unpack to?
- flex: 0 0 100;
- flex: 1 0 0;
- flex: 0 0 auto;
- flex: 1 1 auto;
- only using code that is supported by the newest browsers, and serving the site without JavaScript to old browsers
- removing unused code from the JavaScript files
- splitting code into various bundles so that decisions can be made on loading priority
- allowing the browser to ignore code it believes will perform badly
- a method of auditing performance that gives your site a score, which is then used for Google ranking
- a next-generation image format offering a smaller file size than equivalent PNG or JPEG images
- a new font format that allows a single font to display at different styles and weights
- a next-generation PDF format that offers a smaller file size and better accessibility than standard PDF documents
Q55. Your website uses CSS Grid Layout extensively, and a visitor who navigates using the keyboard tells you that they seem to jump erratically all over the screen when navigating. What is the most likely problem?
- The visitor's browser does not have full support for CSS Grid Layout.
- Items have been positioned in such a way that they are in a different order to the source.
- The browser has a keyboard navigation bug.
- You need to add the tabindex attribute to elements.?
- when the browser displays the first bit of content from the DOM
- when the user can consistently interact with all of the page elements
- when HTML has loaded, but not necessarily JavaScript, CSS, or images
- when the user can see the webpage on the screen
- a JavaScript framework that is leaner than React
- a JavaScript bundler
- a testing framework
- a JavaScript package manager
- load
- mouseover
- hover
- focus
- It is a piece of code that provides modern functionality in browsers that do not support it.
- It is a piece of code that hides broken content from old browsers.
- It is a term for languages such as Saas that compile to CSS.
- It is a script that runs to add vendor prefixes to modern CSS.
- Angular
- Laravel
- Vue
- React
- The screen reader will not notify the user of changes to live regions.
- The screen reader will wait until there is a pause to announce changes.
- The screen reader will announce all changes immediately.
- The screen reader will use a polite voice when announcing changes.
Q62. Review the CSS below. What color would you expect the background color of the element with a class of .box to be?
.box {
background-color: blue;
background: url(images/star.png?raw=png) no-repeat left top;
}
- black
- blue
- transparent
- white
-
list-tem: none
-
bullets: hidden
-
list-style-type: none
-
list-bullet: none
<div class="container">
<div class="box">what a lovely box, very centered</div>
</div>
- A
.container {
display: flex;
align-items: center;
}
- B
.container {
display: flex;
align-items: center;
justify-content: center;
}
- C
.box {
align-items: center;
justify-content: center;
}
- D
.container {
display: flex;
align: center;
}
Q65. CSS Logical Properties and Values now have wide-ranging support in browsers. If you wanted to use the logical version of width
, which property name would you choose?
-
block-width
-
inline-size
-
inline-width
-
block-size
-
rgb(18, 138, 125)
-
#128a7d
-
rgba(18, 138, 125,.5)
-
hsl(174, 77%, 31%)
-
row-gap
-
rowgap
-
gutter
-
row-gutter
Q68. You are creating a responsive design, but when you view your site on a smaller screen, you notice that images are causing a horizontal scroll bar. How can you solve this problem without stretching any images out of shape?
- Set
object-fit: contain
on the images. - Set
max-width: 100%
on the images. - Set
width: 100%
on the images. - Set
resize: true
on the images.
Q69. The CSS box model describes how the parts of a CSS box fit together and the size of the box. What is the actual width of the following box's visible part under the standard box model?
box {
width: 200px;
padding: 10px;
margin: 0 15px;
border: 2px 5px;
}
- 230px
- 220px
- 200px
- 260px
- round(11.354);
- Math.round(11.354);
- Math.rnd(11.354);
- Maths.round(11.354);
- 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
-
<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">
- href = "tel:+17045551151"
- href="17045551151"
- href="phone:+1704551151"
- href="call:+17045551151"
- 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
- a replacement for inaccessible navigation
- a method of allowing a screen-reader user to skip between headings
- a link placed early in the to allow the user to skip to the main content
- a link to allow users to skip video that automatically plays on a website
- 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
- 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
- a React library for storing data
- a Vue.js library for storing and manipulating data
- a query language for fetching data from APIs
- a new database format designed to replace MySQL
Source: GraphQL official website
-
<multiline></multiline>
-
<textarea></textarea>
-
<input type="multiline">
-
<input type="textarea">
- Firefox
- Opera
- Chrome
- Edge
Q79. In supporting browsers, what would be the effect of using font-display: swap, as in the example?
@font-face {
font-family: Helvetica;
font-display: swap;
}
- The browser will show no content until the web font loads.
- The browser will ignore the web font.
- The browser will ignore the web font in a situation where the user has indicated they are saving data.
- The browser will load a system font while waiting for the web font to load.
- allowing the browser to ignore code that it believes will perform badly
- splitting code into various bundles so that decisions can be made on loading priority
- removing unused code from JavaScript files
- only using code that is supported by the newest browsers, and serving the site without JavaScript to old browsers
Q81. The vertical-align property works only on certain elements, or on those that have a certain CSS applied. Which element by default will allow vertical-align to be used?
- div
- td
- figure
- p
Q82. Which attribute is used to add text to an image that will be displayed if the image does not load and read out to screen reader users?
- title
- data
- src
- alt
Q83.Which pseudo-class allows you to selectively show a focus ring on elements only if keyboard navigation is detected?
- focus-show
- :focus-visible
- :focus-ring
- focus-keyboard
- have the same value as the id attribute
- have the same value of the name attribute
- belong to the same field set
- have the same value as the class attribute
- The value of a class attribute should be unique in an HTML document.
- The
<img>
element does not have a closing</img>
tag. - The
<h1>
element is the most important heading on the page. - The value of an id attribute should be unique in an HTML document.
- p {font-size: 16em;}
- h2 {colour: yellow;}
- div {border-radius: 5px}
- #my-div {background-color: blue;}
<h1 style="color:blue;">
A Blue Heading
</h1>
- Inline
- Internal
- External
- None of the above
Q88. How would you set the value of a property—in this example,—back to the default value, as listed in the specification?
- color: initial
- color: default
- color: reset
- color: inherit