Envié una solicitud electrónica. Acudí a una entrevista en EPAM Systems (Pune) en oct 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.
Preguntas de entrevista [1]
Pregunta 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
Solicité el puesto a través de un captador. El proceso duró 2 semanas. Acudí a una entrevista en EPAM Systems (Bogotá, Cundinamarca) en abr 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
Solicité el puesto a través de un captador. Acudí a una entrevista en EPAM Systems (Buenos Aires) en abr 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.
Preguntas de entrevista [1]
Pregunta 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.
Acudí a una entrevista en EPAM Systems (Hyderabad)
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.