Solicité el puesto a través de una agencia de empleo. Acudí a una entrevista en Dimentrix (Pune) en jun 2018
Entrevista
First they take programming round on java.In that they give core java(logical )based program execute on machine.
if some one shortlisted in the first round then they take technical round based on java,
and last one is HR round.
Preguntas de entrevista [1]
Pregunta 1
Machine round
Display following 4*4 matrix
1 2 3 4
9 10 11 12
5 6 7 8
13 14 15 16
and 3*3
1 2 3
7 8 9
4 5 6
program is must run dynamically .
Solicité el puesto a través de un captador. Acudí a una entrevista en Dimentrix (Pune) en ene 2019
Entrevista
first round is coding they ask to do simple code there 2 to 3 HR whose ages is about 23-26 I am sure that they also don't about the coding mush because I shows 3 time different output as they told me but still not accepted
Preguntas de entrevista [1]
Pregunta 1
Reverse words in a given string by word.
reverse by recurssion
again they asked to do reverse string with reverse word
again they asked to do reverse only string not word
i write all code proper but still not accepted
There was first coding round.. they have given 1 common coding problem for our batch which consists of 30 students.. We have to code it using java and eclipse. They explained the problem statement very well on board. Question was easy but they put lots of conditions,like u can use ONLY one loop.etc Those conditions made that easy problem bit difficult. They have tested BASIC knowledge by putting those conditions..
Preguntas de entrevista [1]
Pregunta 1
Take 1 array compile time..
e.g. a[]={2,6,4,9,10};
then add adjacent elements of array and get new array.
using above example we get b[]={8,10,13,19};
now in that new array.. find out maximum value and print that value.
and also print two indices of elements in original array whose addition is maximum.
Conditions:
1.DON'T TAKE INPUT FROM USER.
2.YOU CAN USE ONLY ONE LOOP ALSO ONLY ONCE.. DON'T USE NESTED LOOP
3. YOU CAN TRAVERSE ORIGINAL ARRAY ONLY ONCE.