What makes you passionate about this field?
Full Stack Software Engineer Interview Questions
1,393 full stack software engineer interview questions shared by candidates
"todo" app in React, design an e-commerce, "why rivian?"
Guys most of the question above, here I'm gonna share the question I failed, as I promised the interviewer that I'm gonna solve it, it just needs 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.
Two leetcode questions: medium, hard
algorithms and ds
Can you walk us through a project you led, focusing on the challenges you faced and how you overcame them?
Technical Interview: given CSV of cities, use weather API to get 5-day forecast for each city, calculating and returning the coldest 3-hour average period in forecast.
Easy-medium difficulty Leetcode questions. E.g. valid parentheses
Frontend coding question was about taking user input and converting it to a bar chart based on percentages. Backend coding interview was about validParentheses question on Leetcode.
Given an event that is fired only once and multiple threads can register callbacks, all to be fired after the event occurs, how to prevent race conditions/all callbacks called properly. Buddybits, given an array of bits with each level above composed as the && of the two below, how to propigate the changes by setting a range to all 0's as well as in another operation set all to 1's.
Viewing 821 - 830 interview questions