Frontend

 60 Minutes
 16 Questions


This test is designed to assess a candidate's knowledge of the fundamentals of React, JavaScript, HTML, and CSS, as well as their ability to code in JavaScript and manipulate data structures. The test will include questions on the basics of each subject, as well as more advanced topics such as data structures and data manipulation. The test will also include coding challenges to assess the candidate's ability to apply their knowledge in a practical setting.


Example Question:

Multiple-Choice
Consider the below style and HTML code, what will happen when the browser width will be 600px?
<html>
<style>
@media screen and (max-width:680px) {
ul.topnav li:not(:nth-child(1)):not(:nth-child(2)) {display: none;}
}
</style>
<body>
<ul class="topnav">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
<li>Water</li>
</ul>
</body>
</html>