Ho presentato la mia candidatura tramite un'agenzia di reclutamento personale. La procedura ha richiesto 2 giorni. Ho sostenuto un colloquio presso Blaize (Bengaluru) nel mese di dic 2020
Colloquio
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.
Domande di colloquio [1]
Domanda 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"