Database design question (talked through problem/solution collaboratively and drew on whiteboard)
Full Stack Softwareentwickler Interview Questions
1,681 full stack softwareentwickler interview questions shared by candidates
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
"Have you checked our web site?"
Asked about - mostly ES6-related questions - NodeJS Basic Questions - DB-related Questions
To Make you comfortable basic question - WAP in C# to print odd numbers upto 100.
Viewing 621 - 630 interview questions