Upload Button Icon Add office photos
Engaged Employer

i

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

Netomi Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Netomi Senior Devops Engineer Interview Questions and Answers

Updated 21 Feb 2025

Netomi Senior Devops Engineer Interview Experiences

1 interview found

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

I appeared for an interview in Jan 2025.

Round 1 - Technical 

(3 Questions)

  • Q1. Can you explain the core components of kubernetes and their roles?
  • Ans. 

    Kubernetes core components include Pods, Nodes, Services, Deployments, and ConfigMaps.

    • Pods: Smallest deployable units in Kubernetes, can contain one or more containers.

    • Nodes: Individual machines in a Kubernetes cluster where Pods are deployed.

    • Services: Abstraction that defines a logical set of Pods and a policy by which to access them.

    • Deployments: Manages the deployment and scaling of a set of Pods.

    • ConfigMaps: Decouple...

  • Answered by AI
  • Q2. How do you scale application in kubernetes?
  • Ans. 

    Scaling applications in Kubernetes involves horizontal scaling, using tools like HPA and cluster autoscaler.

    • Use Horizontal Pod Autoscaler (HPA) to automatically adjust the number of pods based on CPU or memory usage.

    • Implement Cluster Autoscaler to dynamically adjust the size of the Kubernetes cluster based on resource demands.

    • Utilize Kubernetes StatefulSets for stateful applications that require scaling with stable net...

  • Answered by AI
  • Q3. What is the difference between HPA and VPA? Explain with their use-case
  • Ans. 

    HPA is Horizontal Pod Autoscaler for scaling pods based on CPU utilization, while VPA is Vertical Pod Autoscaler for adjusting resource requests based on resource usage.

    • HPA scales the number of pods in a deployment based on CPU utilization, ensuring optimal performance and resource utilization.

    • VPA adjusts the resource requests of pods based on resource usage, allowing for efficient resource allocation within a cluster.

    • ...

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. What happens to the deployed workload within a kubernetes cluster in case the master goes down?
  • Ans. 

    In case the master goes down in a Kubernetes cluster, the deployed workload continues to run as the worker nodes are still operational.

    • The worker nodes in the Kubernetes cluster continue to operate and manage the deployed workload even if the master node goes down.

    • The worker nodes are responsible for running the containers and maintaining the desired state of the cluster.

    • The master node being down may affect the abilit...

  • Answered by AI
  • Q2. What the different functionalities of individual components of a kubernetes cluster?
  • Q3. Suppose I want to schedule my pods based on limits instead of requested resources, what would I need to do?
  • Ans. 

    To schedule pods based on limits, customize the scheduler and use custom resource definitions.

    • Modify the Kubernetes scheduler to consider limits instead of requests.

    • Use a custom scheduler that prioritizes pods based on their resource limits.

    • Implement a scheduling policy that evaluates pod limits for placement decisions.

    • Example: Create a custom scheduler that assigns pods with higher limits to nodes with more available ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Here are some ways you can strengthen your chances for a Senior Devops Engineer:
1. Keep your fundamentals strong. Kubernetes is very expansive, but a well-grounded knowledge in its core concepts, architecture, and troubleshooting techniques will create a clear distinction for you
2. Be honest during the interview. Do not bluff your way through something that you might not have worked on, acknowledge it and demonstrate your willingness to learn.
3. Work towards improving your hands-on skills, this would help you get clarity.

Top trending discussions

View All
Interview Hub
2w
a client servicing executive
FeedCard Image
Got a question about Netomi ?
Ask anonymously on communities.

Interview questions from similar companies

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

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. Describe basic Kotlin question , retrofit, CICD and MVVM
  • Ans. 

    Kotlin, Retrofit, CI/CD, and MVVM are essential concepts in modern Android development.

    • Kotlin: A modern programming language for Android, known for its conciseness and safety features.

    • Retrofit: A type-safe HTTP client for Android and Java, used for making API calls. Example: Retrofit.Builder().baseUrl(BASE_URL).build()

    • CI/CD: Continuous Integration and Continuous Deployment practices automate testing and deployment, enh...

  • Answered by AI
  • Q2. Can you write an algorithm to round a number to 'n' decimal places without using the math library?
  • Ans. 

    An algorithm to round a number to 'n' decimal places without using the math library.

    • Convert the number to a string to manipulate its decimal places.

    • Split the string into integer and decimal parts.

    • Check if the decimal part has more than 'n' digits.

    • If it does, round the last digit based on the next digit.

    • Recombine the integer and rounded decimal parts.

  • Answered by AI

Senior Devops Engineer Interview Questions Asked at Other Companies

Q1. What are Terraform life cycles ? and how do we use them ?
Q2. How do you trigger a pipeline from a specific version of applicat ... read more
Q3. What is ingress in Kubernetes, and how does it help us when deplo ... read more
Q4. what are stages involved in release pipeline ? Explain the code
Q5. What are TF provisioners? Describe their use cases.

I applied via Naukri.com and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. All questions were related to job.
  • Q2. Problem solving.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please focus on basic knowledge.

I applied via LinkedIn and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What is closure and explain?
  • Ans. 

    Closure is a function that has access to variables in its outer scope, even after the outer function has returned.

    • Closure is created when a function is defined inside another function.

    • The inner function has access to the outer function's variables and parameters.

    • The inner function can access the outer function's variables even after the outer function has returned.

    • Closures are used for data privacy, event handlers, and...

  • Answered by AI
  • Q2. What is hoc, pure component and react.memo.
  • Ans. 

    hoc, pure component and react.memo are all ways to optimize React components.

    • Higher Order Components (HOC) are functions that take a component and return a new component with additional functionality.

    • Pure Components are components that only re-render when their props or state change.

    • React.memo is a higher order component that memoizes the result of a component rendering, preventing unnecessary re-renders.

  • Answered by AI
  • Q3.  Give the result of pre written javascript questions like counter increment.
  • Ans. 

    JavaScript counters can be incremented using various methods, including loops and functions, to track values over time.

    • Use 'let count = 0;' to initialize a counter.

    • Increment using 'count++;' or 'count += 1;'.

    • Example: for (let i = 0; i < 5; i++) { count++; } results in count = 5.

    • Functions can encapsulate counter logic: function increment() { count++; }.

  • Answered by AI
  • Q4. One coding question in react.

Interview Preparation Tips

Interview preparation tips for other job seekers - Should have basics clear and try some coding questions in JavaScript.

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Apr 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 

(2 Questions)

  • Q1. Last company work profile
  • Q2. Dot Net, oracle framework, sql related qu.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. DSA Structures and Tests
  • Ans. 

    Understanding of data structures and algorithms is crucial for software engineering roles.

    • Knowledge of common data structures like arrays, linked lists, trees, graphs, etc.

    • Understanding of algorithms like sorting, searching, dynamic programming, etc.

    • Ability to analyze time and space complexity of algorithms.

    • Experience in writing efficient code using data structures and algorithms.

    • Familiarity with common data structure ...

  • Answered by AI
  • Q2. Question on vertx
Be interview-ready. Browse the most asked HR questions.
illustration image

I applied via Naukri.com and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. AWS services
  • Q2. Terraform questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview level should be according to the role.
Are these interview questions helpful?

I applied via Naukri.com and was interviewed in Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. 1. they asked about your roles and responsibilities 2. daily basis tasks and recently faced issues 3. Some basic questions from your current roles and responsibilities.
  • Q2. As we know in devops, we have multiple technology which we should have knowledge about below technologies: CI/CD, cloud computing , linux, shell, docker, ansible, Kubernetes and some others.
  • Q3. In my interview I have given 2 technical round. 1ts is a telephonic interview where they asked multiple questions about docker , ansible, linux basic and network command. And 2nd one is my client interview...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared and keep calm.

I applied via Indeed and was interviewed in Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is master-slave architecture?
  • Ans. 

    Master-slave architecture is a design pattern where one device or process controls one or more other devices or processes.

    • Master device/process controls the slave device/process

    • Master device/process is responsible for distributing tasks to the slave devices/processes

    • Slave devices/processes report back to the master device/process

    • Commonly used in distributed computing, database replication, and networking

    • Examples includ...

  • Answered by AI
  • Q2. How Jenkins work?
  • Ans. 

    Jenkins is an open-source automation server that helps to automate parts of the software development process.

    • Jenkins is used for continuous integration and continuous delivery (CI/CD) pipelines.

    • It can be configured to automatically build, test, and deploy code changes.

    • Jenkins supports a wide range of plugins that can be used to extend its functionality.

    • It can be integrated with other tools such as Git, Docker, and AWS.

    • ...

  • Answered by AI
  • Q3. What do know about Auto scaling and load balancing in AWS?
  • Ans. 

    Auto scaling and load balancing are AWS services that help in managing traffic and scaling resources automatically.

    • Auto Scaling helps in automatically adjusting the number of EC2 instances based on traffic demand.

    • Load Balancing helps in distributing traffic across multiple EC2 instances.

    • Auto Scaling and Load Balancing work together to ensure that the application is highly available and can handle sudden spikes in traff...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go prepared, study everyday, study common asked questions from Google for your role, and be confident while giving interview, no one is going to kill you or throw you out of the office. Just be confident and answer everything with grace. If you are not selected, no problem, try another interview. Eventually you will crack one. All the best!!

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Mostly they ask questions on your resume

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for write code for Jenkins file, terraform, ansible-playbook

Netomi Interview FAQs

How many rounds are there in Netomi Senior Devops Engineer interview?
Netomi interview process usually has 2 rounds. The most common rounds in the Netomi interview process are Technical.
How to prepare for Netomi 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 Netomi . The most common topics and skills that interviewers at Netomi expect are Automation, Customer Service, Data Collection, Linux and Monitoring.
What are the top questions asked in Netomi Senior Devops Engineer interview?

Some of the top questions asked at the Netomi Senior Devops Engineer interview -

  1. Suppose I want to schedule my pods based on limits instead of requested resourc...read more
  2. Can you explain the core components of kubernetes and their rol...read more
  3. What the different functionalities of individual components of a kubernetes clu...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

2-4 weeks 100%
View more
Software Development Engineer II
13 salaries
unlock blur

₹19.9 L/yr - ₹30.1 L/yr

Data Analyst
12 salaries
unlock blur

₹4 L/yr - ₹9 L/yr

Devops Engineer
10 salaries
unlock blur

₹10.3 L/yr - ₹18.2 L/yr

Software Engineer
7 salaries
unlock blur

₹12 L/yr - ₹15.5 L/yr

Product Owner
6 salaries
unlock blur

₹12 L/yr - ₹22 L/yr

Explore more salaries
Compare Netomi with

XenonStack

3.1
Compare

ENH iSecure

4.0
Compare

Miko

3.2
Compare

Orpak Systems

3.6
Compare
write
Share an Interview