Open In App

Accolite Digital Interview Experience for Senior Java Developer

I received the Technical recruiter’s direct call for the role of Senior Java Developer – Backend. After initial discussion over the phone call. They scheduled the interview on Turbohire. There were 3 rounds:

First-round: Technical interviews: I was asked basic java questions:






class Base{
 public static void hello(){
   System.out.print("Base::Hello");
 
}
class Child extends Base{
 public static void hello(){
   System.out.print("Child::Hello");
 
}
class Main{
 public static void main(String[] args){
   //what would be output?
   Base b = new Child();
   b.hello();
 }
}

Managerial Round: This round was mostly focused on the Project and Some questions on Spring boot and microservices.

These were the questions that were asked, some questions I am not able to recall. Hope this helps.



Article Tags :