How do you build your own dictionary in c#? How does compiler generates generics and decide? How does reflection work in compiler?
Senior Full Stack Engineer Interview Questions
813 senior full stack engineer interview questions shared by candidates
can you attend a meeting
How does React work internally? What makes it fast? Why or why not should an application use a single database? What is a promise and how does it work? How do you send an async request in Javascript?
What was a project you worked on that you are proud of ?
what is you down point in every job?
The first interview involved implementing the following functions: Implement Array.prototype.forEach Implement Array.prototype.map using your forEach Implement Array.prototype.reduce using your map function Implement the debounce concept (using setTimeout)
Mostly talking about previous projects. One standard question was "how'd you deal with conflit at your previous job"?
What kind of suggestions do you have for the product after playing with it?
General background and experience.
Guys most of the questions are above, here I'm gonna share the question I failed, as I promised the interviewer that I'm gonna solve it, I just needed more time. The most difficult question is the following: we have this array: $input = [ 'item/id' => 'my_id', 'item/title' => 'my_title', 'item/group1/val1' => 'my_val1', 'item/group1/val2' => 'my_val2', 'summary' => 'xyz', 'item/group1/val3' => 'my_val3', ]; We need to convert it to : Array ( [item] => Array ( [id] => my_id [title] => my_title [group1] => Array ( [val1] => my_val1 [val2] => my_val2 [val3] => my_val3 ) ) [summary] => xyz ) This is using PHP.
Viewing 191 - 200 interview questions