Solicité el puesto a través de la escuela superior o la universidad. Acudí a una entrevista en QBurst (Thiruvananthapuram) en oct 2023
Entrevista
The interview process consisted of 2 rounds. Both of them were in person. 1st was a technical round, in which I was interviewed by 2 interviewers. They asked about the basic sql questions and about how the web works. Also some leetcode questions. They see how you think through the process , and if you are able to adapt to any suggestions provided.
The second was an HR round, where I was asked to describe a particular topic. I was also asked to give a presentation on a given topic using the room's whiteboard, with 2 minutes to prepare.
Preguntas de entrevista [1]
Pregunta 1
A networking question, sql question and leetcode question.
Acudí a una entrevista en QBurst (Thiruvananthapuram)
Entrevista
Regular basic DSA questions was asked with a little bit of OOPs and SOLID concepts. Regular basic DSA questions was asked with a little bit of OOPs and SOLID concepts
Two round of technical interview. Asked basic technical questions on first round and application level questions on second round .There were coding questions which we have to show output.Second round was more about analytical questions.
The interview was pretty straightforward and simple, especially if you have a good understanding of JavaScript. Most of the questions were focused on JavaScript, with a few touching on React and Node.js. It wasn’t too difficult and didn’t dive into anything too advanced. If you’re comfortable with JavaScript and have some experience with React and Node, you should be fine. Overall, it felt like they were mainly looking for solid basic knowledge rather than anything overly complex.
Preguntas de entrevista [1]
Pregunta 1
You have an array of fruits and another array of colors where each fruit's color is associated by their id. Your task is to print all the colors that do not belong to apples.
Environment:
JavaScript
let fruits = [
{id: 1, type: 'apple', size: 'small'},
{id: 2, type: 'apple', size: 'medium'},
{id: 3, type: 'orange', size: 'medium'}
];
let colors = [
{id: 1, color: 'red'},
{id: 2, color: 'lightred'},
{id: 3, color: 'yellow'}
];