Frontend Web Development
How does the rem unit represent a font size?
Which choice is not of invoking strict mode in JavaScript?
Which color value will create a background color that is semitransparent?
How can you rewrite this function using arrow function syntax?
What is theelement used for?
What does setting aria-live=polite on a live region achieve?
Which part of the URL https://app.uniswap.org/pool specifies the domain name
Which CSS property and value would correctly remove the bullets from a list item?
Which description correctly describes the initial values of flex items if the only thing you have done is apply display: flex to their parent?
How many columns will there be, given this code? .container { width: 600px; Column-width: 200px; column-gap: 50px;}
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?
What is Webpack primarily used for?
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';
What is the name of the event that occurs when the mouse pointer hovers over an element?
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?
Variables declared with the let keyword have what type of scope?
Why would you surround a piece of text with
Which statement is true when an HTML tag has been deprecated?
You discover that CSS is being loaded on a website using the following code. Why might a web developer have done this?
What is yarn?
What will this loop print? let max = 3; for (i = 0; i > max; i++) {document.write("skrt "); }
What does the CSS selector a[href$="org"] select?
_ 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 element (or its nearest positioned ancestor element)?
You have used display: none in your stylesheet. Which users will be able to see or hear this content?
Which choice is a correct use of the parseInt() function in Javascript that parses a string and return an integer?
Which choice is not a value of the type attribute of theelement?
Which attribute must have a unique value each time it is used in an HTML document?
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) no-repeat left top; }
What does the === comparison operator do?
Lighthouse is a tool for auditing your website. Which choice is not a category of report offered by Lighthouse?
What will be the value of selected? let pocket = ['turnip', 'stone', 'log', 'apple']; Let selected = pocket[1];
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?
In normal flow, some elements display as block elements default and others inline. which choice contains only block-level by default elements?**
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?
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?
In a grid layout, which property will create gaps between the rows in the grid?
When might an empty alt attribute be the correct value?
Which HTML will result in text being highlighted in yellow? .highlight {background-color: yellow;}
You have placed an image in a directory named images and want to reference it from a page located in the root of your site. Which choice would correctly display the image on the page?
What is meant by the term "polyfill" when used in web development?
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?
Which choice is not a render blocking resource?
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;}
Which CSS property will not trigger layout recalculation?
What is the correct way to initialize an array of galaxies in JavaScript?
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?
A video on your webpage does not display and the console shows an error about mixed content. What is happening?
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/
In this code, what is the term for the h1? h1 { color: red; font-size: 5em; }
Which choice is not a JavaScript framework?