Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by NICE Team. If you also belong to the team, you can get access from here

NICE Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 490 Reviews

Filter interviews by

NICE Senior Devops Engineer Interview Questions and Answers

Updated 17 Apr 2024

NICE Senior Devops Engineer Interview Experiences

1 interview found

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

(1 Question)

  • Q1. What is the flow of cicd
  • Ans. 

    CI/CD flow involves continuous integration, testing, deployment, and monitoring of code changes.

    • Code is pushed to version control system (e.g. Git)

    • Automated build and test process is triggered

    • Code is deployed to testing environment for validation

    • If tests pass, code is deployed to production environment

    • Monitoring and feedback loop for continuous improvement

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

I was interviewed in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. What is ipconf.pl?
  • Q2. What is the difference between scan vip & node vip?
Round 2 - One-on-one 

(3 Questions)

  • Q1. What is quarantile in Exadata?
  • Q2. How to identify the master switch in Exadata?
  • Q3. What is spine switch & leaf switch in exadata?
Round 3 - Case Study 

One of the node of a 3 node cluster is down. Explain the step by step process to troubleshoot the issue.

Round 4 - Coding Test 

Shell script & terraform code output was asked.

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Deep dive into all DevOps tools
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(7 Questions)

  • Q1. If i delete an instance on the console and then i deploy the same instance terraform template how will terraform behave?
  • Ans. 

    Terraform will recreate the instance as per the template

    • Terraform will detect that the instance is missing and recreate it based on the template

    • The new instance will have the same configuration as defined in the template

    • Any changes made to the instance outside of Terraform will be lost

  • Answered by AI
  • Q2. If i have an instance configuration terraform template, and i manually add an ebs to it through console and then give terraform apply how will terraform behave?
  • Q3. What will be the IP range if i need 500 IPs?
  • Ans. 

    The IP range for 500 IPs would typically be a /23 subnet.

    • For 500 IPs, you would need at least a /23 subnet.

    • A /23 subnet provides 512 IP addresses (2^9 = 512), with 510 usable IPs after subtracting network and broadcast addresses.

    • The IP range for a /23 subnet would be from x.x.x.0 to x.x.x.255.

  • Answered by AI
  • Q4. Python coding on string manipulation
  • Q5. What are the health checks after creating instances - 2/2? What do they mean?
  • Ans. 

    Health checks after creating instances ensure the instances are functioning properly.

    • Instance status checks ensure the instance is reachable and responding to traffic.

    • System status checks ensure the underlying hardware is functioning properly.

    • Example: If an instance fails the system status check, it may indicate a problem with the underlying host hardware.

  • Answered by AI
  • Q6. How to deploy microservices?
  • Ans. 

    Microservices can be deployed using containerization tools like Docker and orchestration tools like Kubernetes.

    • Use containerization tools like Docker to package each microservice along with its dependencies into a container image.

    • Leverage orchestration tools like Kubernetes to manage and deploy multiple microservices across a cluster of machines.

    • Implement continuous integration and continuous deployment (CI/CD) pipelin...

  • Answered by AI
  • Q7. Write terraform code to launch an ec2 instance in a vpc and attach a role to it
  • Ans. 

    Launch an EC2 instance in a VPC and attach a role using Terraform

    • Define a VPC resource in Terraform

    • Define a subnet resource within the VPC

    • Create a security group for the EC2 instance

    • Define an IAM role for the EC2 instance

    • Launch an EC2 instance within the subnet and attach the IAM role

  • Answered by AI
Round 2 - One-on-one 

(4 Questions)

  • Q1. Day to day activities
  • Q2. Why do you learn various technologies?
  • Q3. How will it be beneficial for you to learn various technologies because you will be working with limited technologies?
  • Q4. Your project workflow, and how do you manage your tasks

Interview Preparation Tips

Topics to prepare for KPIT Technologies AWS Devops Engineer interview:
  • AWS
  • Terraform
  • Python
Interview preparation tips for other job seekers - Go through AWS, Python and Terraform. If they offer you an offer letter and that is lesser than what you've asked for, they will ask you to accept it and say we will increment it in future. But later they say sorry we can't increment it'll be the same. I experienced this, I had an offer of 16 and i asked 17.5 they said they're good to go. Then I got an offer for 13.75 from Kpit and they said please accept it, and said if you've any other offer in future we'll try matching it. But when I asked them for my new offer to be released they said we can't even give 17.5 we can only give 13.75. So please beware.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain k8s architecture
  • Ans. 

    Kubernetes (k8s) architecture is a container orchestration platform that manages containerized applications across a cluster of nodes.

    • Master Node: Controls the cluster and schedules workloads

    • Worker Nodes: Run containers and communicate with the master node

    • etcd: Key-value store for cluster data

    • API Server: Frontend for Kubernetes control plane

    • Controller Manager: Monitors cluster state and makes changes as needed

    • Scheduler...

  • Answered by AI
  • Q2. Containerisation
Round 2 - One-on-one 

(2 Questions)

  • Q1. Write a docker file
  • Ans. 

    A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image.

    • Start with a base image

    • Use the RUN command to execute commands in the container

    • Use the COPY command to add files from the host machine to the container

    • Use the CMD command to specify the command to run when the container starts

  • Answered by AI
  • Q2. Explain the concept of monitoring
  • Ans. 

    Monitoring is the process of observing and tracking the performance and health of systems, applications, and infrastructure.

    • Monitoring involves collecting data on various metrics such as CPU usage, memory usage, network traffic, and response times.

    • It helps in identifying issues, predicting failures, and optimizing performance.

    • Monitoring tools like Nagios, Prometheus, and Grafana are commonly used in DevOps for real-tim...

  • Answered by AI

Skills evaluated in this interview

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

Overall ok It was 30 min duration

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

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

Round 1 - Aptitude Test 

Testing you general IQ with aptitude exam along with java MCQ exams

Round 2 - Group Discussion 

Discussed about the projects done during engineering

Interview Questionnaire 

1 Question

  • Q1. Shell scripting
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. K8s fundamentals. Role of each component
  • Q2. How can one troubleshoot the crashloop error in Kubernetes (k8s)?
Round 2 - Coding Test 

1. Log parsing using python

Round 3 - Technical 

(3 Questions)

  • Q1. What are inodes?
  • Q2. How do you list all the files held by a process
  • Q3. Container vs Virtaul Machines?
Round 1 - Coding Test 

DSA, Hashmaps, Arrays and String Manipulation

Round 2 - Technical 

(1 Question)

  • Q1. What are terraform modules
  • Ans. 

    Terraform modules are reusable components that can be used to create infrastructure resources.

    • Modules are collections of .tf files that define resources and their dependencies

    • They can be used to create reusable infrastructure code

    • Modules can be published to the Terraform Registry for others to use

    • They can be used to create complex infrastructure setups easily

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for Coding rounds, eventhough its a DevOps position they expect full fledged coding

Skills evaluated in this interview

NICE Interview FAQs

How many rounds are there in NICE Senior Devops Engineer interview?
NICE interview process usually has 1 rounds. The most common rounds in the NICE interview process are Technical.
How to prepare for NICE Senior Devops Engineer 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 NICE. The most common topics and skills that interviewers at NICE expect are AWS, Continuous Integration, Devops, Docker and Jenkins.

Tell us how to improve this page.

NICE Senior Devops Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
NICE Senior Devops Engineer Salary
based on 14 salaries
₹12.5 L/yr - ₹30 L/yr
26% more than the average Senior Devops Engineer Salary in India
View more details

NICE Senior Devops Engineer Reviews and Ratings

based on 2 reviews

2.6/5

Rating in categories

2.6

Skill development

2.6

Work-life balance

2.6

Salary

2.6

Job security

2.6

Company culture

2.6

Promotions

2.6

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer
247 salaries
unlock blur

₹7 L/yr - ₹18.5 L/yr

Senior Software Engineer
153 salaries
unlock blur

₹11.5 L/yr - ₹30 L/yr

Software Engineering Specialist
150 salaries
unlock blur

₹17.8 L/yr - ₹44 L/yr

Software Engineer and Technical Lead
127 salaries
unlock blur

₹9 L/yr - ₹27.1 L/yr

Technical Lead
120 salaries
unlock blur

₹8.4 L/yr - ₹35 L/yr

Explore more salaries
Compare NICE with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview