what tool is used to create class objects from DB First
Full Stack Software Engineer Interview Questions
1,393 full stack software engineer interview questions shared by candidates
What tool used for create models once we created DB Tables
What is the LINQ equivalent of LEFT JOIN in SQL
Database design question (talked through problem/solution collaboratively and drew on whiteboard)
DSA and React Debugging round : Question on String with Backtracking. Major discussion was on approach and then space/time complexity. Mathematical proof for same was discussed. For react debugging, a problem statement about photo rotation was discussed. Google search was allowed in the round.
Given an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k, and j != k, and nums[i] + nums[j] + nums[k] == 0. Note: the solution set must not contain duplicate triplets. Input: nums = [-1,0,1,2,-1,-4] Output: [[-1,-1,2],[-1,0,1]] Explanation: nums[0] + nums[1] + nums[2] = (-1) + 0 + 1 = 0. nums[1] + nums[2] + nums[4] = 0 + 1 + (-1) = 0. nums[0] + nums[3] + nums[4] = (-1) + 2 + (-1) = 0. The distinct triplets are [-1,0,1] and [-1,-1,2].
Build a board game with react.
- approach to take home project - simple coding challenge in whatever language - simple SQL query - why do you want to work here - how do you work in teams
1 leetcode easy for first round and 1 leetcode medium for second round
convert a string to an integer
Viewing 501 - 510 interview questions