Candidatei-me online. Fui entrevistado pela EPAM Systems (Pune) em out. de 2025
Entrevista
Questions related to Core Java, Springboot, MySQL .
Questions generally depend on the basis of project requirements you are being hired for
and
then DSA round on their provided portal link which were 2 questions of basic difficulty.
Perguntas de entrevista [1]
Pergunta 1
Q #6) What is meant by the Local variable and the Instance variable?
Answer:
Local variables are defined in the method and scope of the variables that exist inside the method itself.
Instance variable is defined inside the class and outside the method and the scope of the variables exists throughout the class.
Q #7) What is a Class?
Answer: All Java codes are defined in a Class. It has variables and methods.
Variables are attributes which define the state of a class.
Methods is a place where the exact business logic has to be done. It contains a set of statements (or) instructions to satisfy the particular requirement.
Example:
1
2
3
4
5
6
7
public class Addition{ //Class name declaration
int a = 5; //Variable declaration
int b= 5;
public void add(){ //Method declaration
int c = a+b;
}
}
Q #8) What is an Object?
Answer: An instance of a class is called an object. The object has state and behavior.
Whenever the JVM reads the “new()” keyword then it will create an instance of that class.
Example:
1
2
3
4
5
public class Addition{
public static void main(String[] args){
Addion add = new Addition();//Object creation
}
}
The above code creates the object for the Addition class.
Q #9)What are the OOPs concepts?
Answer: OOPs concepts include:
Inheritance
Encapsulation
Polymorphism
Abstraction
Interface
Candidatei-me por meio de recrutador(a). O processo levou 2 semanas. Fui entrevistado pela EPAM Systems (Bogotá, ) em abr. de 2026
Entrevista
se comunicaron conmigo y continue con el proceso las preguntas fueron muy faciles, falta ver los siguientes filtros que me faltan para entrar a trabajar pero en general son muy amables
Candidatei-me por meio de recrutador(a). Fui entrevistado pela EPAM Systems (Buenos Aires) em abr. de 2026
Entrevista
90 minutos de un entrevistador con mal inglés buscando preguntas exactas a preguntas de manual. Ofrecen sueldo muy bajo para todo lo que exigen, no recomiendo. Famosos por tener entrevistas eternas y no contratar a nadie.
Perguntas de entrevista [1]
Pergunta 1
Todo el manual de .NET con todas las preguntas clásicas y repregunta hasta que contestes lo que quería el entrevistador, durante 90 minutos.
Fiz uma entrevista na empresa EPAM Systems (Hyderābād).
Entrevista
The interview was highly professional and engaging. The panel asked insightful questions that allowed for a deep dive into my experience. I appreciated the clear communication and the positive atmosphere.