I don't get an interview but in start there was 10 aptitude question and 3 programming.Programming question might be easy for some and medium level for some.Aptitude is basic level one .
Perguntas de entrevista [1]
Pergunta 1
I got
1.There is a table tennis games between A and B. There score board is marked in X-Y format where X is the score of A and Y is the score of B. In beginning A severs and after 2 servers it is pass to the other person. Find the number of times A servered
Inputs given
t=4
So here t mentioned is number of elements in array
0
0
1
0
Here 0-0 is the score of first game and A is served here
Then 1-0 is the score of next game here also A is served
Total A served are 2
t=4
2
0
5
0
Here 2-0 B is served
And 5-0 A is served
So here total A served is 1
2)1.You are given an array A consisting of n integers. Your task is to construct a new array B with non negative integers and length less than 2^25 such that
The XOR of all elements in A and that of elements of B are same.
Find the sum of elements in B and return the result modulo 10^9 +7.
Inputs given
n=1
[5]
Output is 5
3) There is an array given we need find the maximum subarray sum. Here we can delete first element and append it to the end of array and find maximum subarray sum
Input given
[1,3,-4,5,2]
The element on first position can be deleted from front and add to the back
[3,-4,5,2,1]
The next element can also be deleted from front and add to back to get maximum subarray sum
[-4,5,2,1,3]
Sum=11
It was interview for multiple colleges at the same campus. There were two aptitude level tests. After clearing that, in the same day it followed with group discussion. The topic was on the spot. After that, there was a HR interview.
The interview process was well organized and professional. The interviewer was friendly and explained each stage clearly. There were two technical rounds followed by an HR discussion. Feedback was provided promptly.
Perguntas de entrevista [1]
Pergunta 1
Why do you want to join our company?
How would you handle an upset customer?
Describe a situation where you solved a problem.
This two-round technical interview evaluates your foundational coding skills through language-specific data structures and algorithms first, followed by a second session focused on advanced framework architecture combined with practical, applied problem-solving challenges