The OA consisted of 4 questions. Test duration: 105 min.
Question level was easy.
Q1. CSS
p ~ ul {
background-color: red;
}Multiple choices: choose the html for which the <ul> tag would have background color = red;
Choices:
a.
<ul>
<li>Coffee</li>
</ul>
<p></p>
b.
<p></p>
<ul>
<li>Coffee</li>
</ul>
c.
<p>
<ul>
<li>Coffee</li>
</ul>
</p>React: VSCode like web IDE was provided. It was quite easy.
Question : Build a simple color picker.
Nodejs: I did not expect a nodejs question for L2. It was a basic middleware question. I could solve 4/6 test cases.
Javascript: Easy Javascript output question around function hoisting. Objective was to write the output and how could you reach the conclusion.