Upload Button Icon Add office photos

Filter interviews by

EPAM Systems Senior Software Development Engineer Interview Questions and Answers for Experienced

Updated 30 Aug 2023

EPAM Systems Senior Software Development Engineer Interview Experiences for Experienced

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Mar 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. Solid principle
  • Q2. You have to build app infront of them using solid principles
  • Q3. Angular js and solid principele

Interview Preparation Tips

Interview preparation tips for other job seekers - In frontend mostly focusing on angular and solid principle. Would not advice to join, environment is not so good

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Dependency Injection?
  • Ans. 

    Dependency Injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Allows for easier testing by providing mock dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Examples: Constructor injection, Setter injection, Interface injection

  • Answered by AI
  • Q2. How to handle exception in java
  • Ans. 

    In Java, exceptions can be handled using try-catch blocks to catch and handle specific exceptions.

    • Use try-catch blocks to catch exceptions and handle them gracefully

    • Use multiple catch blocks to handle different types of exceptions

    • Use finally block to execute code regardless of whether an exception is thrown or not

    • Throw custom exceptions using throw keyword

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. In Java8, different between flatmap and map
  • Ans. 

    map transforms each element in a stream, while flatMap transforms each element into multiple elements

    • map applies a function to each element in a stream and returns a new stream of the results

    • flatMap applies a function that returns a stream for each element in the original stream, then flattens the streams into a single stream

    • Example: map - stream.map(x -> x * x), flatMap - stream.flatMap(str -> Arrays.stream(str.split(

  • Answered by AI
  • Q2. How to handle the ConcureentModificationException
  • Ans. 

    ConcurrentModificationException occurs when a collection is modified while iterating over it.

    • Use Iterator to iterate over the collection instead of foreach loop.

    • If modification is necessary, use Iterator's remove() method instead of collection's remove() method.

    • Consider using synchronized collections or ConcurrentHashMap to avoid ConcurrentModificationException.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(6 Questions)

  • Q1. Http1.1 vs 2.0 vs 3.0
  • Ans. 

    HTTP/1.1 is the older version with persistent connections, HTTP/2.0 introduces multiplexing and server push, and HTTP/3.0 uses QUIC protocol for faster performance.

    • HTTP/1.1 uses persistent connections for each request/response, leading to potential performance issues.

    • HTTP/2.0 introduces multiplexing, allowing multiple requests/responses to be sent over a single connection simultaneously.

    • HTTP/2.0 also supports server pu...

  • Answered by AI
  • Q2. Print all the possible subsets from a given slice of integers
  • Ans. 

    Print all possible subsets from a given slice of integers

    • Use recursion to generate all possible subsets

    • For each element in the slice, include or exclude it in the subset

    • Keep track of the current subset being generated

  • Answered by AI
  • Q3. Questions on GRPC implementation
  • Q4. About code profiling
  • Q5. What is context package in golanguage
  • Ans. 

    Context package in Go language provides a way to pass around deadlines, cancellation signals, and other request-scoped values.

    • Context package is used to manage deadlines, cancellation signals, and request-scoped values in Go programs.

    • It allows passing data between function calls without having to pass them explicitly as arguments.

    • Context package is commonly used in web servers to manage request-specific data and timeou...

  • Answered by AI
  • Q6. RestApi vs GRPC
  • Ans. 

    REST API is a standard protocol for web services using HTTP, while gRPC is a high-performance, open-source RPC framework.

    • REST API uses HTTP for communication, making it easy to implement and widely supported.

    • gRPC is a modern, high-performance RPC framework that uses HTTP/2 for transport and Protocol Buffers for serialization.

    • gRPC is more efficient in terms of performance and supports features like bidirectional streami...

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. How to copy slice element and reflect the new changes done in original slice to new slice
  • Ans. 

    Use copy() function to create a new slice and reflect changes in original slice to the new slice.

    • Use the copy() function to create a new slice with the same length as the original slice.

    • Make changes to the original slice.

    • The changes made to the original slice will automatically reflect in the new slice as well.

  • Answered by AI
  • Q2. How do you handle panic in golang
  • Q3. Why golang is best compared to other languages
  • Ans. 

    GoLang is best for its simplicity, efficiency, concurrency support, and strong community backing.

    • Efficient performance due to compiled nature and garbage collection

    • Concurrency support with goroutines and channels

    • Strong standard library with built-in support for networking, encoding, and more

    • Simple and clean syntax that promotes readability and maintainability

    • Growing community and ecosystem with popular frameworks like

  • Answered by AI
  • Q4. Explain Kubertnetes Architecture
  • Ans. 

    Kubernetes is an open-source container orchestration platform for automating deployment, scaling, and management of containerized applications.

    • Kubernetes follows a master-slave architecture with a master node controlling multiple worker nodes.

    • Master node components include API server, scheduler, controller manager, and etcd.

    • Worker node components include kubelet, kube-proxy, and container runtime (e.g. Docker).

    • Kubernet...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

All the aptitude questions including verbal, non-verbal, technical and general aptitude.

Round 2 - Technical 

(1 Question)

  • Q1. DBMS, OOPS, Java
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Ticketing system design
  • Ans. 

    Ticketing system design involves creating a platform for users to submit, track, and resolve issues or requests.

    • Design a user-friendly interface for submitting tickets

    • Implement a system for assigning tickets to appropriate teams or individuals

    • Include features for tracking ticket status and communication with users

    • Consider scalability and performance of the system

    • Integrate with other tools or systems for seamless workfl

  • Answered by AI
  • Q2. Aws ec2 and jenkins

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Linux , puzzle, simple programs l
Round 2 - One-on-one 

(1 Question)

  • Q1. About me and about my previous work
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Questions related Data Sctructure and Algorithms
Round 2 - Technical 

(1 Question)

  • Q1. Questions related to Project and TechStack
Round 3 - HR 

(1 Question)

  • Q1. Behavioral questions were asked
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Basic aptitude and essay

Round 2 - Technical 

(1 Question)

  • Q1. Easy, questions around rojects
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Basic java and one coding question
Round 3 - Technical 

(1 Question)

  • Q1. In depth questions on oops and spring boot hibernate and java 8 features
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Basics of java were asked
Round 3 - Technical 

(1 Question)

  • Q1. Advanced design concepts and sql
Round 4 - HR 

(1 Question)

  • Q1. Salary negotiations behaviour round screening

EPAM Systems Interview FAQs

How many rounds are there in EPAM Systems Senior Software Development Engineer interview for experienced candidates?
EPAM Systems interview process for experienced candidates usually has 2 rounds. The most common rounds in the EPAM Systems interview process for experienced candidates are Resume Shortlist and Technical.
What are the top questions asked in EPAM Systems Senior Software Development Engineer interview for experienced candidates?

Some of the top questions asked at the EPAM Systems Senior Software Development Engineer interview for experienced candidates -

  1. You have to build app infront of them using solid princip...read more
  2. Angular js and solid princip...read more
  3. Solid princi...read more

Tell us how to improve this page.

EPAM Systems Senior Software Development Engineer Salary
based on 26 salaries
₹15.1 L/yr - ₹31.8 L/yr
44% more than the average Senior Software Development Engineer Salary in India
View more details

EPAM Systems Senior Software Development Engineer Reviews and Ratings

based on 4 reviews

3.6/5

Rating in categories

3.6

Skill development

3.5

Work-Life balance

4.4

Salary & Benefits

2.5

Job Security

3.0

Company culture

3.6

Promotions/Appraisal

2.8

Work Satisfaction

Explore 4 Reviews and Ratings
Senior Software Engineer
2.6k salaries
unlock blur

₹15 L/yr - ₹42.7 L/yr

Software Engineer
1.7k salaries
unlock blur

₹7 L/yr - ₹24 L/yr

Lead Software Engineer
831 salaries
unlock blur

₹15.6 L/yr - ₹52 L/yr

Senior Systems Engineer
304 salaries
unlock blur

₹12 L/yr - ₹36.3 L/yr

Software Test Automation Engineer
267 salaries
unlock blur

₹7 L/yr - ₹20 L/yr

Explore more salaries
Compare EPAM Systems with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview