↳
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
↳
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
↳
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
↳
unexpected to me and made me rewinding my memories
↳
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
↳
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
↳
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
↳
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