Upload Button Icon Add office photos

Filter interviews by

EPAM Systems Senior Software Developer Interview Questions and Answers

Updated 19 Sep 2024

EPAM Systems Senior Software Developer Interview Experiences

2 interviews found

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

I applied via Company Website and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. A coding querstion on linkedlist implementation
  • Q2. Python basic questions like decorator, singleton class, OOPS

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare all common python interview question and resume based tech skills
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

Data Structures and Algorihms round

Interview Preparation Tips

Interview preparation tips for other job seekers - Two medium Leetcode questions were asked
One was LongestSubstringWithoutRepititions

Senior Software Developer Interview Questions Asked at Other Companies

asked in Freshworks
Q1. Intersection of Linked ListYou are given two Singly Linked List o ... read more
asked in Freshworks
Q2. Middle Of Linked ListGiven the head node of the singly linked lis ... read more
asked in Freshworks
Q3. Overlapping IntervalsYou have been given the start and end times ... read more
asked in SAP
Q4. Sum Of Max And MinYou are given an array “ARR” of size N. Your ta ... read more
asked in Freshworks
Q5. Cube Sum PairsYou are given a positive integer N, and you have to ... read more

Senior Software Developer Jobs at EPAM Systems

View all

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Do you know microfrontend
  • Ans. 

    Microfrontend is a software architectural style where a frontend application is decomposed into smaller, more manageable pieces.

    • Microfrontend allows teams to work on different parts of the frontend independently.

    • Each microfrontend can be developed, tested, and deployed separately.

    • Microfrontend architecture helps in scaling large frontend applications.

    • Examples of microfrontend frameworks include single-spa, Webpack Modu

  • Answered by AI
  • Q2. How to setup env in angular app, pipes asynch pure impure, subject and subject behavior only theory
  • Ans. 

    Setting up environment in Angular app, understanding pipes, async, pure/impure, Subject and BehaviorSubject in theory

    • Setting up environment in Angular app involves configuring environment files for different environments like development, production, etc.

    • Pipes in Angular are used for transforming data in templates. Async pipes are used for handling asynchronous data streams.

    • Pure pipes are stateless and only recompute w...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I was interviewed for the Senior frontend developer position virtually. The interview went really well. Some basic to moderate angular interview questions were asked. then they said the interview is over.. HR was on the call, she ask me to wait for some time. Then she added a manager and said you will have to go through the managerial round right now. I was not prepared, given all the answers which was project related and weakness how to manage team and all.

Then he said do you know microfrontend. I said that its not in my experience as of now but i can learn and adapt it easily. Then asked about Work from office as i belong to pune and position was for pune i was quite okay with it. Then they wrap up the interview. I was very positive and was expecting HR round mail instead i got mail for rejection stating we are sorry about it. I was 95% positive about the interview as it was nothing that I didnt answered.

Even after mailing them back what is feedback they didnt bother to reply.

Skills evaluated in this interview

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

Questions from Resume, solving code snippets, DSA Algo

Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain GCD, Core Data, Higher Order Functions, ARC
  • Ans. 

    GCD, Core Data, Higher Order Functions, ARC are key concepts in iOS development.

    • GCD (Grand Central Dispatch) is a technology for managing concurrent operations.

    • Core Data is a framework for managing the model layer objects in an application.

    • Higher Order Functions are functions that operate on other functions, taking them as arguments or returning them.

    • ARC (Automatic Reference Counting) is a memory management technology

  • Answered by AI
  • Q2. Weak Unowned, iOS App States
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
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Project related questions, database basic questions, python basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover all basic concepts and coding
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Java and spring boot questions
  • Q2. Sort the array in ascending order
  • Ans. 

    Sorts an array of strings in ascending order.

    • Use a sorting algorithm like bubble sort, insertion sort, or quicksort.

    • Compare adjacent elements and swap them if they are in the wrong order.

    • Repeat the process until the array is sorted.

  • Answered by AI
  • Q3. Java collections questions
  • Q4. Project agile , cicdpipeline
Round 2 - Technical 

(1 Question)

  • Q1. Brush up java and spring and sorting questions

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

It was an on-campus round. Aptitude was around technical computer questions.

Round 1 - Technical 

(1 Question)

  • Q1. Powerbuilder 1.What is lookupdisplay function and when do we use datawindow 2.how do you debug and track errors in powerbuilder 3. Difference between quick select and Sql select data source 4.how to connec...
  • Ans. 

    Answers to questions related to Powerbuilder for Senior Software Developer position.

    • lookupdisplay function is used to display a value from a related table in a datawindow

    • Debugging and error tracking can be done using the Powerbuilder debugger and log files

    • Quick select is used for simple queries while SQL select data source is used for complex queries

    • Powerbuilder can connect to different databases using ODBC or native d...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on details of the concepts and relate to your previous company experiences as an example to Interviewer. Be confident and clear while representing and be honest.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

1 hours was the interview

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell about your self
  • Q2. Tell me about your previous company

Interview Preparation Tips

Interview preparation tips for other job seekers - do welll

EPAM Systems Interview FAQs

How many rounds are there in EPAM Systems Senior Software Developer interview?
EPAM Systems interview process usually has 1 rounds. The most common rounds in the EPAM Systems interview process are Coding Test and Technical.
How to prepare for EPAM Systems Senior Software Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at EPAM Systems. The most common topics and skills that interviewers at EPAM Systems expect are Debugging, DHCP, LDAP, Linux Administration and Medical Coding.
What are the top questions asked in EPAM Systems Senior Software Developer interview?

Some of the top questions asked at the EPAM Systems Senior Software Developer interview -

  1. python basic questions like decorator, singleton class, O...read more
  2. A coding querstion on linkedlist implementat...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 EPAM Systems interviews
Company Website
50%
50% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
EPAM Systems Senior Software Developer Salary
based on 123 salaries
₹13.7 L/yr - ₹35 L/yr
90% more than the average Senior Software Developer Salary in India
View more details

EPAM Systems Senior Software Developer Reviews and Ratings

based on 11 reviews

3.5/5

Rating in categories

3.6

Skill development

3.6

Work-Life balance

3.9

Salary & Benefits

3.1

Job Security

3.4

Company culture

3.1

Promotions/Appraisal

2.9

Work Satisfaction

Explore 11 Reviews and Ratings
Senior Software Developer - C++, Network Protocol, Linux

Hyderabad / Secunderabad

6-11 Yrs

₹ 13.7-31 LPA

Senior Software Developer ReactJS

Hyderabad / Secunderabad

5-10 Yrs

₹ 17-29.25 LPA

Explore more jobs
Senior Software Engineer
2.6k salaries
unlock blur

₹15 L/yr - ₹42.7 L/yr

Software Engineer
1.7k salaries
unlock blur

₹6.9 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