Tip 1: You must mention the project in the resume and have knowledge about the project mentioned in the resume.
Tip 2: Must prepare for at least one programming language. For me, I worked on C#.
Tip 1 : You must have worked on live project.
Tip 2 : You must be aware about what you written in resume.
My interview was conducted around 2 pm IST. There was a video call interview, and 2 interviewers were there for taking my interview. The interviewer was friendly in nature.



We have an array ARR = {1, 2, 3, 4, 5, 6} and M = 3 , considering 0
based indexing so the subarray {5, 6} will be reversed and our
output array will be {1, 2, 3, 4, 6, 5}.
Write a SQL query to get second highest salary from table? (Practice)



If a string has 'x' repeated 5 times, replace this "xxxxx" with "x5".
The string is compressed only when the repeated character count is more than 1.
The consecutive count of every character in the input string is less than or equal to 9.
My interview was conducted around 2 PM IST. It was a video call interview, and two interviewers were there to take my interview. The interviewers were friendly in nature.



0 x y
1 x y
2 x y
Suppose you are assigned a new project from scratch. What kind of principles will you follow?
I use the repository pattern. I use Unit Of Work for transaction management. I use SOLID principles. I use Entity Framework Core for connecting with the database.


Input: [1,2,3,4,5]
Output: [5,4,3,2,1]

My interview was conducted around 7 pm IST.
There was a video call interview and 2 interviewers were there to take my interview.
The interviewers were friendly in nature.
This was a client round and it was a mock interview.
What are triggers? (Learn)
What challenges did you face during development?
Tip 1: I was implemented azure time trigger function in my Asp.net core project and that time I don't have been much knowledge about azure.
Tip 2: So solving this problem I go through Microsoft official website and learnt from there and implemented in my project.
Type of joins in SQL and why we use it? (Learn)

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?