Me postulé a través de una agencia de empleos. El proceso tomó 2 días. Acudí a una entrevista en Blaize (Bengaluru) en dic 2020
Entrevista
Interview happened over a zoom meeting. First round was a technical discussion with one panel. He asked be about my work experience, projects and my role followed by technical questions.
Lastly he asked me about why I want to change the job and what I am looking for.
Preguntas de entrevista [1]
Pregunta 1
Q1. shift all 1's in a binary representation of a number to left side.
ex. 1010 = 10 convert it to 1100 = 12
Q2. Question related to fork; number of hello printed by the below program
printf("hello");
fork();
printf("hello");
fork();
printf("hello");
Q3. Reverse words in a string.
ex. given string: "this is the dummy string"
output string: "string dummy the is this"