I applied through university. I interviewed at Amruta (Hyderābād) in July 2020
Interview
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
Interview questions [1]
Question 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]);
}
}