TWILIO | OA | Frontend Questions
Anonymous User
1635

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>
  1. React: VSCode like web IDE was provided. It was quite easy.
    Question : Build a simple color picker.

  2. Nodejs: I did not expect a nodejs question for L2. It was a basic middleware question. I could solve 4/6 test cases.

  3. Javascript: Easy Javascript output question around function hoisting. Objective was to write the output and how could you reach the conclusion.

Comments (3)