Tip 1: Prioritize practicing previously asked interview questions as well as online test questions.
Tip 2: Develop a strong understanding of Data Structures and Algorithms (DSA).
Tip 3: Create at least two high-quality projects and ensure you understand every aspect of them thoroughly.
Tip 1: Include concise explanations of at least two impressive projects, covering all essential details.
Tip 2: Ensure all your skills are listed.
Tip 3: Prioritize emphasizing your skills, projects, and experiences in your resume.
The interviewer asked 2 Coding Problems.

Each result of the division is rounded to the nearest integer greater than or equal to that element. For Example, 7/3 = 3.



Input: 'a' = [2, 4, 6] and 'b' = [1, 3, 5]
Output: 3.5
Explanation: The array after merging 'a' and 'b' will be { 1, 2, 3, 4, 5, 6 }. Here two medians are 3 and 4. So the median will be the average of 3 and 4, which is 3.5.



let 'ARR' = [1, 2, 3] then the possible subarrays of 'ARR' will be - {1}, {2}, {3}, {1, 2}, {2, 3}, {1, 2, 3}.
The following is a description of the instance of this famous puzzle involving 2 eggs and a building with 100 floors.
Suppose that we wish to know which stories in a 100-story building are safe to drop eggs from, and which will cause the eggs to break on landing. What strategy should be used to drop eggs such that the total number of drops in the worst case is minimized and we find the required floor?
Tell me about yourself.
Tell me about your projects.
Why do you know about us?
Why do you want to join us?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?