Candidatei-me por meio de uma agência de recrutamento. O processo levou 2 dias. Fui entrevistado pela Blaize (Bengaluru) em dez. de 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.
Perguntas de entrevista [1]
Pergunta 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"