Q.1) DS/Algo question - Trapping rainwater
Sr Software Developer Interview Questions
7,035 sr software developer interview questions shared by candidates
How do you reverse an integer (or tell if it is a palindrome)?
- The usual questions about previous experience - SOLID - Patterns - Refactor - Good practices
Basic OOPs questions and code review
Tell me about the critical issue which you have fixed recently
Web APIs
They asked DSA-based problem-solving questions and core programming concept
Questions related to authentication, SSR vs. CSR...
Online timed coding assessment with tests that need to pass. Four stages of the coding assessment that builds upon itself.
Given an integer array and another number, find a pair whose sum is given number. Best solution is to use unordered map <int, int> then use this logic map[sum - a[i]] = a[i]; // O(n) then, for each a[i], if map[a[i]] present then that will be the answer. // O(n)
Viewing 6671 - 6680 interview questions