Me postulé en línea. El proceso tomó 1 semana. Acudí a una entrevista en QBurst (Nueva Delhi) en may 2024
Entrevista
The process was long & exciting with test oriented, the final round was online with the director. Whole process seems planned & welldefined. Need to prepare well for the interview
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'}
];