How do you improve web application? what are the tools you have used? (Or how do you check performance)
Full Stack Software Developer Interview Questions
1,668 full stack software developer interview questions shared by candidates
What is Temporary tables in SQL
What is Triggers and its types And What is the purpose What is Magic Tables in SQL Server
What is web API... explain it
what tool is used to create class objects from DB First
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].
Viewing 611 - 620 interview questions