I applied through a staffing agency. The process took 1 day. I interviewed at Remaxys (Noida) in Sept 2017
Interview
1st round has 3 section . 1st section has MCQs on string ,in 2nd section you have to guess output,3rd section has 4 coding question.they called around 30 canditates.they take only 1-2 candidate for 2nd round.
I applied through other source. I interviewed at Remaxys (Noida) in Mar 2017
Interview
Interview was tough.Core java concepts need to be very clear.4 Programming questions asked.
Along with me there were approximately 30 more students.
I appplied through AMCAT. Its a long process but company gives a good package.
Interview questions [1]
Question 1
Programming questions were mostly based on strings and collections.
I applied through a recruiter. I interviewed at Remaxys (Noida) in July 2016
Interview
first round was on line test...there were two on-line test
in first test there were objective type questions from java and oops concept(for this round follow indiabix.com)(duration was 60 minutes)
in the second test there were 4 java programs...to be executed(duration was 90 minutes)
After clearing these rounds f2f interview will be taken by ceo
Interview questions [1]
Question 1
programs..
1.You are given a number in form of integer consist of digits from 0 to 9. Each digit consist of several dash ( see figure) . Your job is to calculate the number of dashes in the given number.
-- -- --
| | | | | |
| | | | | |
-- -- -- --
| | | | |
| | | | |
-- -- --
2.An array of integers is given and you have to split the array from the index where sum of left hand side elements is equal to sum of right hand side elements
for eg.[1,1,0,2] this will be splitted in two parts [1,1] [0,2]
[3,2,1,5,1] will be [3,2,1] and[5,1]
3.a string is given "i am in delhi" if "elh" is there in the given string in the same order('e' then 'l' then 'h') then print "YES"
else "no"
4.Write a program to check whether string is pallindrom or not