Upload Button Icon Add office photos

Filter interviews by

EPAM Systems Senior Software Engineer 2 Interview Questions, Process, and Tips for Experienced

Updated 7 Aug 2024

Top EPAM Systems Senior Software Engineer 2 Interview Questions and Answers for Experienced

View all 7 questions

EPAM Systems Senior Software Engineer 2 Interview Experiences for Experienced

3 interviews found

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

Two java coding questions - 1 DSA and 1 streams

Round 2 - Technical 

(2 Questions)

  • Q1. AWS lambda related - cons and pros
  • Q2. AWS VPC related - NACL and security groups
Round 3 - Technical 

(1 Question)

  • Q1. System design of current project
  • Ans. 

    Designed a scalable microservices architecture using Docker and Kubernetes for real-time data processing.

    • Utilized Docker containers to encapsulate each microservice for easy deployment and scaling

    • Implemented Kubernetes for automated container orchestration and management

    • Used Kafka for real-time data streaming and processing

    • Designed RESTful APIs for communication between microservices

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Sep 2023.

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 

(4 Questions)

  • Q1. There were many interview questions about javascript. You need to know about OOPS in javascript,prototypical inheritance, find palindrome substring in a given string most optimal solutions
  • Q2. Difference between merge and rebase in git
  • Ans. 

    Merge combines changes from different branches, while rebase moves the current branch to the tip of another branch.

    • Merge creates a new commit with the combined changes of two branches.

    • Rebase moves the current branch to the tip of another branch, replaying the commits on top of it.

    • Merge preserves the commit history of both branches, while rebase creates a linear history.

    • Merge is non-destructive and is preferred for pres...

  • Answered by AI
  • Q3. Angular usefactory , usevalue, useclass
  • Q4. Hirerichal injector in angular

Interview Preparation Tips

Topics to prepare for EPAM Systems Senior Software Engineer 2 interview:
  • Javascript
  • Angular

Senior Software Engineer 2 Interview Questions Asked at Other Companies for Experienced

Q1. Implement LRU with expiration, priority and recentness based evic ... read more
Q2. create Shell script for 100 users on 5 different servers
Q3. Tell me more about python scripting
asked in IQVIA
Q4. What is lifecycle methods of authentications method
asked in Bosch
Q5. What are standers Process and Practice?
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Create Shell script for 100 users on 5 different servers
  • Ans. 

    Create a Shell script to add 100 users on 5 different servers.

    • Use a loop to create 100 users on each server.

    • Utilize the 'useradd' command to add users.

    • Ensure unique usernames for each user on each server.

    • Consider using SSH for remote server access.

    • Test the script on a single server before running on all servers.

  • Answered by AI
  • Q2. Create ci/cd pipeline
  • Ans. 

    Set up a ci/cd pipeline for automated software deployment

    • Choose a CI/CD tool like Jenkins, GitLab CI, or CircleCI

    • Define the stages of the pipeline (build, test, deploy)

    • Integrate with version control system (e.g. GitHub, Bitbucket)

    • Automate testing and code quality checks

    • Configure notifications for pipeline status updates

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about terraform
  • Ans. 

    Terraform is an open-source infrastructure as code software tool created by HashiCorp.

    • Terraform allows users to define and provision infrastructure using a declarative configuration language.

    • It supports multiple cloud providers such as AWS, Azure, and Google Cloud Platform.

    • Terraform uses a 'plan and apply' workflow to make changes to infrastructure.

    • It helps in automating the process of setting up and managing infrastru...

  • Answered by AI
  • Q2. Write auto scaling of ec2 instances
  • Ans. 

    Auto scaling of EC2 instances involves setting up policies to automatically adjust the number of instances based on demand.

    • Set up CloudWatch alarms to monitor metrics like CPU utilization or network traffic

    • Create an Auto Scaling Group with desired minimum and maximum number of instances

    • Define scaling policies to add or remove instances based on the alarms triggered

    • Test the auto scaling by simulating load on the instanc

  • Answered by AI
Round 3 - Behavioral 

(2 Questions)

  • Q1. Tell me more about python scripting
  • Ans. 

    Python scripting is a way to automate tasks using Python programming language.

    • Python scripting allows for automating repetitive tasks by writing scripts in Python.

    • It is commonly used for tasks like data processing, web scraping, and automation.

    • Python scripts can be run from the command line or integrated into larger applications.

    • Python's extensive standard library makes it easy to work with files, networks, and more.

  • Answered by AI
  • Q2. Where do you see after 5 years in this organization

Interview Preparation Tips

Topics to prepare for EPAM Systems Senior Software Engineer 2 interview:
  • Shell Scripting
  • Terraform
  • Git lab
  • Jenkins
  • AWS

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Interview Questions about Java, Spring boot and other technical frameworks you worked on
  • Q2. Implement Binary search tree
  • Ans. 

    Binary search tree is a data structure where each node has at most two children, with the left child being less than the parent and the right child being greater.

    • Start with a root node and insert new nodes by comparing values and traversing left or right accordingly.

    • Implement functions for insertion, deletion, search, and traversal (inorder, preorder, postorder).

    • Ensure the tree remains balanced to maintain efficient se

  • Answered by AI
  • Q3. How hash map works in java
  • Ans. 

    HashMap in Java is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

    • HashMap uses hashing to store key-value pairs in an array of linked lists.

    • It uses the hashCode() method of keys to determine the index where the value will be stored.

    • If two keys have the same hashCode, they are stored in the same linked list at that index.

    • HashMap allows null keys and values, but only on...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Its a service company and I attended the interview on 2015.

Skills evaluated in this interview

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
-
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
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. A DSA question based on Linked List. Find the longest common suffix of 2 linked lists. for eg-> 1 ->8 -> 9 -> 7 -> 3 -> 2 -> 6 4 -> 8->5->7-> 3-> 2 -> 6, given the head of both linked lis...
Round 2 - Technical 

(1 Question)

  • Q1. Implement LFU cache in Java. Questions on Java, Spring, microservices and my current project discussion.
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial round
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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Feb 2023. There were 4 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. Design a react app to fetch and display data from an api.
  • Ans. 

    Design a React app to fetch and display data from an API.

    • Create a React component to fetch data from the API using fetch or axios

    • Use state to store the fetched data and update the component's UI

    • Render the data in the component's JSX to display it on the screen

  • Answered by AI
  • Q2. Basic react questions.
  • Q3. Asked question on react unit testing.
Round 3 - Technical 

(1 Question)

  • Q1. In depth questions on html, css, javascript, typescript, react and next.js.
Round 4 - HR 

(1 Question)

  • Q1. The third round was salary discussion.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics clear on the technology that you are applying for.

Skills evaluated in this interview

EPAM Systems Interview FAQs

How many rounds are there in EPAM Systems Senior Software Engineer 2 interview for experienced candidates?
EPAM Systems interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the EPAM Systems interview process for experienced candidates are Technical, Behavioral and Coding Test.
What are the top questions asked in EPAM Systems Senior Software Engineer 2 interview for experienced candidates?

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

  1. create Shell script for 100 users on 5 different serv...read more
  2. Tell me more about python script...read more
  3. Difference between merge and rebase in ...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 EPAM Systems interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
EPAM Systems Senior Software Engineer 2 Salary
based on 17 salaries
₹18 L/yr - ₹36 L/yr
19% more than the average Senior Software Engineer 2 Salary in India
View more details

EPAM Systems Senior Software Engineer 2 Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-Life balance

4.0

Salary & Benefits

4.0

Job Security

4.0

Company culture

4.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 1 Review and Rating
Senior Software Engineer
2.6k salaries
unlock blur

₹11 L/yr - ₹42 L/yr

Software Engineer
1.7k salaries
unlock blur

₹7 L/yr - ₹24 L/yr

Lead Software Engineer
842 salaries
unlock blur

₹15.6 L/yr - ₹52 L/yr

Senior Systems Engineer
312 salaries
unlock blur

₹13.9 L/yr - ₹38.8 L/yr

Software Test Automation Engineer
268 salaries
unlock blur

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