Ho presentato la mia candidatura tramite l'università. Ho sostenuto un colloquio presso Amruta (Hyderabad) nel mese di lug 2020
Colloquio
interview process was online which contained aptitude questions of verbal, logical and programming questions. logical contained directions, ages and percentage problems. programming had c and java questions such as arrays control statements loops etc
Domande di colloquio [1]
Domanda 1
public class arr1 {
public static void main(String[] args) {
int a[]= {10,20,30,40,50};
for(int x:a)
{
System.out.println(x);
}
a[1]=105;
System.out.println("the element in the first index: "+a[2]);
}
}