I applied through a staffing agency. The process took 2 days. I interviewed at Blaize (Bengaluru) in Dec 2020
Interview
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.
Interview questions [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"