Me postulé a través de otra fuente. Acudí a una entrevista en Remaxys (Noida) en mar 2017
Entrevista
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.
Preguntas de entrevista [1]
Pregunta 1
Programming questions were mostly based on strings and collections.
Me postulé a través de una agencia de empleos. El proceso tomó 1 día. Acudí a una entrevista en Remaxys (Noida) en sep 2017
Entrevista
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.
Me postulé a través de un reclutador. Acudí a una entrevista en Remaxys (Noida) en jul 2016
Entrevista
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
Preguntas de entrevista [1]
Pregunta 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