J'ai postulé via une agence de recrutement. Le processus a pris 2 jours. J'ai passé un entretien chez Blaize (Bengaluru) en déc. 2020
Entretien
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.
Questions d'entretien [1]
Question 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"