Tip 1 : be strong in core java
Tip 2 : hands on experience on spring boot
Tip 3 : jack of everything master of one thing
Tip 1 : Keep the things you are absolutely sure about talking
Tip 2 : Use the same font
A technical lead from the company started asking questions on core java right after the introduciton
what is the output in below program
class A{
A(){sout("A");}
}
class B extends A{
B(int a){super();sout("B");}
}
class Main {
main(){
B b = new B();
}
}
i just wrote the out put
Random questions on previous projects
How to handle transaction management on multiple microservices level
Tip 1: google it
Tip 2: try the solution.
Attitude and random technical questions from the previous projects
When to choose kafka over rabbit mq
when you have the need of publish subscribe model

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?