Upload Button Icon Add office photos

EPAM Systems

Compare button icon Compare button icon Compare

Filter interviews by

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

Updated 7 Aug 2024

8 Interview questions

A Senior Software Engineer 2 was asked
Q. Explain the process of auto-scaling 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 in...

A Senior Software Engineer 2 was asked
Q. How would you create a 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

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

Q1. What is your level of expertise as a full stack developer with MS ... read more
asked in BOLT India
Q2. Given an array of numbers that represents the stock price for eac ... read more
asked in bp
Q3. Implement LRU cache with expiration, priority, and recentness-bas ... read more
Q4. Discuss HTTP Response Status Codes and how they can be customized ... read more
Q5. Create a shell script to create 100 users on 5 different servers.
A Senior Software Engineer 2 was asked
Q. 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 infr...

A Senior Software Engineer 2 was asked
Q. Tell me more about your experience with 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 mo...

What people are saying about EPAM Systems

View All
a junior software developer
3d
Should I stay or switch?
So I(~3yoe java dev) recently made my first switch to a product based company. The work used to be good, has good wlb and chill time and flexible timings and wfo. The thing is I'm not getting any PBC vibes. All people in my team/company are from service based only(not judging them as it's inc. me), no super serious work/production bugs/oncall(i don't want to work in such pressure but atleast want to know how people handle it), no similar mindset people, no girls to talk to(yes it's a major issue for me, as I didn't have any female friends to talk to, let alone love) So it's a big concern for me, to build some connection with someone, and even worse thing I got changed to new team, they aren't even assigning proper work and I've been having sooo much free time since past 2 weeks. I've lost motivation to do anything,for many other reasons in life. Ik this is a dream job for many,inc me but now I'm in this i just couldn't get enough of it, please suggest what to do. TIA
Got a question about EPAM Systems?
Ask anonymously on communities.
A Senior Software Engineer 2 was asked
Q. Create a shell script to create 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.

A Senior Software Engineer 2 was asked
Q. What is the 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...

A Senior Software Engineer 2 was asked
Q. What is hierarchical injection in Angular?
Ans. 

Hierarchical injectors in Angular manage dependency injection across component trees, promoting modularity and reusability.

  • Angular uses a hierarchical dependency injection system to manage services and components.

  • Each Angular module can have its own injector, allowing for scoped services.

  • Child components can access services from their parent injectors, enabling shared state.

  • Example: A service provided in a parent ...

Are these interview questions helpful?
A Senior Software Engineer 2 was asked 11mo ago
Q. 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

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 appeared for an interview 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
  • Ans. 

    Hierarchical injectors in Angular manage dependency injection across component trees, promoting modularity and reusability.

    • Angular uses a hierarchical dependency injection system to manage services and components.

    • Each Angular module can have its own injector, allowing for scoped services.

    • Child components can access services from their parent injectors, enabling shared state.

    • Example: A service provided in a parent compo...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for EPAM Systems Senior Software Engineer 2 interview:
  • Javascript
  • Angular
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

I applied via Campus Placement and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude knowledge

Round 2 - Coding Test 

Strong in java

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confidence and focus on your goal

What people are saying about EPAM Systems

View All
a junior software developer
3d
Should I stay or switch?
So I(~3yoe java dev) recently made my first switch to a product based company. The work used to be good, has good wlb and chill time and flexible timings and wfo. The thing is I'm not getting any PBC vibes. All people in my team/company are from service based only(not judging them as it's inc. me), no super serious work/production bugs/oncall(i don't want to work in such pressure but atleast want to know how people handle it), no similar mindset people, no girls to talk to(yes it's a major issue for me, as I didn't have any female friends to talk to, let alone love) So it's a big concern for me, to build some connection with someone, and even worse thing I got changed to new team, they aren't even assigning proper work and I've been having sooo much free time since past 2 weeks. I've lost motivation to do anything,for many other reasons in life. Ik this is a dream job for many,inc me but now I'm in this i just couldn't get enough of it, please suggest what to do. TIA
Got a question about EPAM Systems?
Ask anonymously on communities.

Interview Questionnaire 

3 Questions

  • Q1. Basic questions from the resume content. Be through with the project mentioned in your resume. Also try to prepare at least one object oriented language basics.
  • Q2. I was asked questions on RADIUS TACACS Firewalls and VPN as I had mentioned network security in my resume
  • Q3. Not at all difficult just as general HR interview

Interview Preparation Tips

Round: Test
Experience: If you are applying as a fresher, you may have to appear for a test which will have basic aptitude questions on General Maths and English followed by two basic coding questions in any language like C C++ Java etc

Round: Group Discussion
Experience: Just be confident in keeping your point. Cracking this won't be that difficult.

I applied via Naukri.com and was interviewed before Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. If "WAS" is shutdown are you ok with DEVops
  • Ans. 

    Yes, I am comfortable with DEVops if WAS is shutdown.

    • I have experience with both WAS and DEVops

    • I understand the dependencies between the two systems

    • I am confident in my ability to troubleshoot and resolve any issues that may arise

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for tricky questions

Skills evaluated in this interview

Interview Questionnaire 

4 Questions

  • Q1. All questions about java only. 1. Different between interface and abstract class . 2.questions on rest Threads 3.java object on hashcode 4. Previous company projects
  • Q2. All about java 1. Explain collection hierarchy 2.Explain exception hierarchy 3.how many of classes in java 4.what are problem u faced while deploying the project and etc on deployment
  • Ans. 

    Collection hierarchy in Java includes interfaces like Collection, List, Set, Queue, and Map with their respective implementations.

    • Collection interface is the root interface in the collection hierarchy

    • List interface extends Collection and allows duplicate elements, with implementations like ArrayList and LinkedList

    • Set interface extends Collection and does not allow duplicate elements, with implementations like HashSet a...

  • Answered by AI
  • Q3. What will be work if hire . And
  • Q4. All about package and joining date
Are these interview questions helpful?

I applied via Naukri.com and was interviewed before Sep 2019. There were 6 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. IQ Test
  • Q2. Machine Test
  • Q3. Face To Face

Interview Preparation Tips

Interview preparation tips for other job seekers - basically there are 3 rounds:-
1. IQ Test
2. Machine Test
3. Face to Face

IQ Test is not so tough but prepare well Machine Test
Machine Test Question are like :-
Q.1 - We declare a variable in C++ like "is_this_a_variable" and in Java like "IsThisAVariable". There is underscore in between every word and first alphabet of every word is in lowercase in C++ and in Java first alphabet is in capital without underscore. Create a program in which if user input a string in a C++ variable format it will convert the input in java variable format.

Q2. Count the frequency of a string.
user input string - pqhphi
output-
p - 2
q - 1
h - 2
i - 1

Be strong in algorithms and data structure.

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

It happens in very friendly manner.

  • Q1. 

    Paths in a Matrix Problem Statement

    Given an 'M x N' matrix, print all the possible paths from the top-left corner to the bottom-right corner. You can only move either right (from (i,j) to (i,j+1)) or dow...

  • Ans. 

    Print all possible paths from top-left to bottom-right in a matrix by moving only right or down.

    • Use backtracking to explore all possible paths from top-left to bottom-right in the matrix.

    • At each cell, recursively explore moving right and down until reaching the bottom-right corner.

    • Keep track of the current path and add it to the result when reaching the destination.

  • Answered by AI
  • Q2. Can you create 2 tables in SQL and perform different operations on them?
  • Ans. 

    Yes, I can create 2 tables in SQL and perform operations like INSERT, SELECT, UPDATE, and DELETE.

    • Create Table 1: CREATE TABLE employees (id INT, name VARCHAR(50), salary DECIMAL(10,2));

    • Create Table 2: CREATE TABLE departments (dept_id INT, dept_name VARCHAR(50));

    • Insert Data: INSERT INTO employees VALUES (1, 'John Doe', 50000);

    • Select Data: SELECT * FROM employees WHERE salary > 40000;

    • Update Data: UPDATE employees SET...

  • Answered by AI
Round 2 - Face to Face 

Round duration - 90 minutes
Round difficulty - Medium

No problem occur very friendly environment.

Round 3 - Face to Face 

(1 Question)

Round duration - 90 minutes
Round difficulty - Hard

  • Q1. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

  • Ans. 

    Find all possible paths for a rat in a maze from source to destination.

    • Use backtracking to explore all possible paths in the maze.

    • Keep track of visited cells to avoid revisiting them.

    • Explore all possible directions (up, down, left, right) from each cell.

    • Add the current direction to the path and recursively explore further.

    • If the destination is reached, add the path to the list of valid paths.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteriaAbove 7 CGPAVirtusa interview preparation:Topics to prepare for the interview - Linked List, Binary Search Tree ,Queue, Array ,DP ,Graph ,RecursionTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Competitive programming plays a major role when you are appearing for coding rounds as a fresher. In the coding rounds, you won't get direct problems copied from Geeksforgeeks or Leetcode. You would be required to use your logical thinking to go ahead in the process. This is where competitive programming helps.

Tip 2 : Coding rounds are all about Coding + Timing. Most people fail to excel due to the pressure of a timer ticking on your head. So, instead of just solving problems, try to participate in timed contests. This will help you be used to the pressure of the timer.

Tip 3 : Many big companies like Microsoft, Amazon, and even Google expect you to be good at standard problems. So, once you are done with coding round by your logical skills and competitive programming, you must be well versed with some standard problems in order to excel.

Application resume tips for other job seekers

Tip 1 : Make it short, crisp, and simple. It is always good to have a 1 pager resume. 
Tip 2 : Resume must comprise of the following: Educational Qualifications, Technical skills, Projects, Work experience (if any), Achievements. Other than this, you may include some extra co-curricular achievements.

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

NTT Data user image NIDHI PRIYADARSHINI

posted on 9 Apr 2015

Interview Questionnaire 

6 Questions

  • Q1. Tell me about your project
  • Ans. 

    Developed a web-based project management tool for a startup

    • Used React for the frontend and Node.js for the backend

    • Implemented user authentication and authorization using JWT

    • Integrated with third-party APIs such as Trello and Slack

    • Implemented real-time updates using WebSockets

    • Deployed on AWS using EC2 and RDS

  • Answered by AI
  • Q2. Write the idea or algorithm for d program of fibonacci series
  • Q3. One question from your subject
  • Q4. Introduce yourself
  • Ans. 

    I am a software engineer with experience in developing web applications and mobile apps.

    • Proficient in programming languages such as Java, Python, and JavaScript

    • Skilled in using frameworks like React, Angular, and Spring Boot

    • Experienced in working with databases such as MySQL and MongoDB

    • Familiar with Agile development methodologies and DevOps practices

  • Answered by AI
  • Q5. If I give you a box full of pencils..in how many ways can you use it
  • Q6. Do you have any question for me

Interview Preparation Tips

Round: Test
Experience: Time management is very important to clear the aptitude test. Besides this a lot of practice is also very important.  This round is the major filteration round. Though each round is a major filteration round cuz NTT DATA is not a bulk recruiter like cts, infy etc. Almost 2-3 thousand students were there for this round from 6 different colleges and only 100 of them were selected.
Tips: Its better to start with the preparation from before and do consider the previous year placement papers available at indiabix. You can practice more n more. Apart from this you can go through the r.s aggarwal aptitude book also.

Round: Group Discussion
Experience: There were many panels and each panel had 10-12 students. The H.r first decided some other topic but when he asked wether everybody is aware of the topic ..there were few who didn't know about it. .so he picked up another topic. Fortunately he asked me to start with the discussion.  Always try to be the one to break the ice.
Tips: The only key to crack this round is that yku should talk. You should definitely not confuse gd with debate. You should not argue or by any chance shouldn't sound arrogant.

Round: Technical Interview
Experience: They will definitely ask about your project so be thorough with that. Ntt data is a Japanese company . Though this is IT but it will ask  from the subject of your own choice from people those who have a non IT background. After you get shortlisted in d gd they will give you a form to fill. Do fill that form without fail. If it is blank then even if u go to the hr round he will reject you.
Tips: Just be confident and always smile. Be careful on what you write in your resume cuz they can ask about anything based on your resume.

Round: HR Interview
Experience: This round was a cake walk. Just be confident and updated about the company.  Do ask him a question if he asks you to do that.but make sure it shouldn't be vague or out of the picture.
Tips: Keep smiling and don't get nervous.  If they ask you about location preferences,  dun get firm at one place.try to be flexible.

General Tips: Donot loose hope at any cost. You never know when your moment is going to arrive. Do practice the aptitude as much as you can. Finally NTT DATA selected only 50 overall in wch 11 were from my college n i was lucky to be one of them. the offer letter was issued the same day and we were all venerated.  Its just a game of confidence. All the best
Skill Tips: Try to add some co curricular activities and justify your role.
Skills: communication, technical knowledge, management skills, leadership
College Name: SATHYABAMA UNIVERSITY
Motivation: You will find the it companies mostly head quartered in U.S but this company is in Japan. Plus you have better opportunity and growth compared to other companies cuz its not a bulk recruiter.

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, Resume Shortlist and Behavioral.
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.

Overall Interview Experience Rating

4.7/5

based on 3 interview experiences

Difficulty level

Hard 100%

Duration

Less than 2 weeks 100%
View more
EPAM Systems Senior Software Engineer 2 Salary
based on 27 salaries
₹19.5 L/yr - ₹36 L/yr
7% 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

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

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

₹16.3 L/yr - ₹37.3 L/yr

Software Engineer
2.2k salaries
unlock blur

₹8.5 L/yr - ₹23.8 L/yr

Lead Software Engineer
1.1k salaries
unlock blur

₹30 L/yr - ₹47.1 L/yr

Senior Systems Engineer
391 salaries
unlock blur

₹22 L/yr - ₹36.3 L/yr

Software Developer
366 salaries
unlock blur

₹10.2 L/yr - ₹30.5 L/yr

Explore more salaries
Compare EPAM Systems with

DXC Technology

3.7
Compare

Sutherland Global Services

3.5
Compare

Optum Global Solutions

4.0
Compare

Virtusa Consulting Services

3.7
Compare
write
Share an Interview