Research engineer Interview Questions
2K
Research Engineer interview questions shared by candidates
Reverse a linked list
4 Answers↳
reverse DoublyLinkedList(node) { while(node) { printf(node->info); if(node->previous==Null) { printf(node->info); break; } } } Less
↳
reverse DoublyLinkedList(node) { while(node) { printf(node->info); if(node->previous==Null) { printf(node->info); break; } node =node->previous; } } Less
↳
reverse DoublyLinkedList(node) { while(node) { printf(node->info); node =node->previous; if(node->previous==Null) { printf(node->info); break; } } } Less

Let a rope of unit length is cut into n pieces. What is the expected length of the smallest piece?
4 Answers
How many windows APIs do you remember?
3 Answers
Technical stuff mostly
2 Answers↳
Described whatever I knew
↳
Through questions like this, interviewers are mostly trying to test your skillset (and its relevance to the role) as robustly as possible, so be prepared for multiple offshoots and followups. It could be a useful exercise to do mocks with friends or colleagues in Huawei to get a real sense of what the interview is actually like. Alternatively Prepfully has a ton of Huawei Research Engineer experts who provide mock interviews for a pretty reasonable amount. prepfully.com/practice-interviews Less

What's the most adventure you've been through in your life?
1 Answers↳
unexpected to me and made me rewinding my memories

engg basics like thermodynamics etc
1 Answers↳
Through questions like this, interviewers are mostly trying to test your skillset (and its relevance to the role) as robustly as possible, so be prepared for multiple offshoots and followups. It could be a useful exercise to do mocks with friends or colleagues in Hitachi to get a real sense of what the interview is actually like. Alternatively Prepfully has a ton of Hitachi Research Engineer experts who provide mock interviews for a pretty reasonable amount. prepfully.com/practice-interviews Less

Why would you like to leave your current job?
2 Answers↳
First reason is low salary,the second one is their not given importance to talented people if their not consider the freshers or newly joint team member and also they provide the increment to seniority level only Less
↳
I'm diploma in EEE department, I'm working in production field, I'm searching to maintance work I'm learning and work for maintenance Less

Design for a google doc style spreadsheet, with a focus on how to handle multiple concurrent edits and formulas on the spreadsheet.
2 Answers↳
Described a transactional model for updates.
↳
It's a very common interview question, this article How To Design Google Docs (bit.ly/1RxoUV7) has a detailed discussion about this topic. bit.ly/1RxoUV7 Less

Print all possible permutations of string inputs
2 Answers↳
Hello, may i know about the detail of your interview time? date? morning or afternoon? because actually i also join at this interview (Bandung, Indonesia) Less
↳
import java.util.Arrays; import java.util.Scanner; class PermuteString { static int k=0; public static String[] doPermutation(char[] str,int i,int n,String[] s) { if(i==n) { for(int m=0;m Less

How would you profile the processor utilization of a process on an embedded system?
2 Answers↳
Answered that it could be done using procfs on an embedded linux system with kernel, but the interviewer said it was too high level and that I didn't have an OS which was odd since he said process. I then said a bare-metal program could use systick (or architecture specific implementation) or hardware timers to track WCET timing, still seemed to be an incorrect answer. I thought he might want a software approach and mentioned a few static profiling tools and schedulability calculations, but he didn't want that either. I eventually said you could mask interrupts, assert GPIO and track clock pulses but he didn't seem happy. I've thought this one over a lot but I'm not really sure what he was looking for... Less
↳
Possibly looking for a hardware solution for a timer / interrupt based process. We've used LEDs turned on/off by software during certain activities. Hook that up to a signal analyzer and you've got a detailed view of the timing. Less