Upload Button Icon Add office photos
Engaged Employer

i

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

Eloelo Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Eloelo Senior Devops Engineer Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Coding Test 

I was attended for technical f2f round for Android app developer, they asked to develop sample app with large json parsing in grid view. It's good and nice.

Round 2 - Technical 

(1 Question)

  • Q1. Once you successfully implemented coding, they will take technical f2f round. It will mainly in all topics of android.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare more coding questions in all advanced topics and logical questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Merge 2 Sorted linked list
  • Ans. 

    Merge two sorted linked lists into a single sorted linked list

    • Create a new linked list to store the merged result

    • Iterate through both input linked lists and compare nodes to determine the order in which they should be merged

    • Update the next pointers of the nodes in the new linked list accordingly

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Oct 2022. There were 3 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 - Aptitude Test 

50 questions in 12mins

Round 3 - Technical 

(1 Question)

  • Q1. Basic DSA question in binary search and memoization

Interview Preparation Tips

Interview preparation tips for other job seekers - basic DSA question on binary search and basic memoization was asked

I applied via Company Website and was interviewed in Dec 2021. 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 

(2 Questions)

  • Q1. 1. Questions around projects : JWT, UserAuthentication etc
  • Q2. 2. Write a code to find frequency of characters in a given string?
  • Ans. 

    Code to find frequency of characters in a given string

    • Use a hash table to store character frequencies

    • Iterate through the string and update the hash table accordingly

    • Print the hash table to display the character frequencies

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. 1. Write a code to reverse a linked list?
  • Ans. 

    Code to reverse a linked list

    • Create three pointers: prev, curr, and next

    • Initialize prev to null and curr to head

    • Loop through the list and set next to curr's next node

    • Set curr's next node to prev

    • Move prev and curr one node ahead

    • Return prev as the new head

  • Answered by AI
  • Q2. 2. Write a code to reverse linked list in size of K?
  • Ans. 

    Code to reverse linked list in size of K

    • Create a function that takes head of linked list and size K as input

    • Traverse the linked list in groups of K nodes

    • Reverse each group of K nodes using iterative or recursive approach

    • Connect the reversed groups to form the final linked list

    • Return the new head of the reversed linked list

  • Answered by AI
  • Q3. 3. Questions around project and design a database structure for comments system of quora?
Round 4 - HR 

(1 Question)

  • Q1. Basic HR round questions

Interview Preparation Tips

Topics to prepare for AmbitionBox Senior Software Engineer interview:
  • Data Structures
  • Algorithms
  • Web Development
Interview preparation tips for other job seekers - Interview is almost easy, just be confident and think out of the box.

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
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 - Assignment 

Given an simple gaming questions to be developed in JS

Round 3 - Coding Test 

Given another UI design in image to be developed

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

Logical questions MCQ on ansible terraform python and basic programming around 19 questions

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good , questions were ok more on your understanding of options and parameters
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. This first round was very nice
  • Q2. I can strongly suggest first round
Round 3 - Technical 

(2 Questions)

  • Q1. 2nd round was worst even that Panel guy is not interested to take an interview
  • Q2. Finally you will get bad news
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Question Regrading Linux, AWS, Kubernetes and Bash scripting
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?
  • Ans. 

    Individual components of a Kubernetes cluster have different functionalities such as scheduling, networking, storage, and monitoring.

    • Kubelet: Responsible for communication between the master node and worker nodes, managing containers on the node.

    • Kube-proxy: Manages network routing for services within the cluster.

    • Kube-controller-manager: Ensures that the desired state of the cluster matches the actual state.

    • Etcd: Key-va...

  • Answered by AI
  • Q3. Suppose I want to schedule my pods based on limits instead of requested resources, what would I need to do?

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.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain about kubernetes CRDs
  • Ans. 

    Kubernetes Custom Resource Definitions (CRDs) allow users to define custom resources in Kubernetes.

    • CRDs extend the Kubernetes API to create custom resources and controllers.

    • They enable users to define their own resource types and manage them using Kubernetes tools.

    • CRDs are used to extend the functionality of Kubernetes without modifying the core codebase.

    • Examples of CRDs include custom resource types like Deployments, ...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Explain about kuberneted crds
  • Ans. 

    Kubernetes Custom Resource Definitions (CRDs) allow users to define custom resources in Kubernetes.

    • CRDs extend the Kubernetes API to create custom resources and controllers.

    • They enable users to define their own resource types and manage them using Kubernetes tools.

    • CRDs are used to extend the functionality of Kubernetes without modifying the core codebase.

    • Examples of CRDs include custom resource types like databases, qu

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. How AWS ALB works
  • Ans. 

    AWS ALB is a load balancer service that distributes incoming traffic across multiple targets, such as EC2 instances, based on routing rules.

    • ALB operates at the application layer (Layer 7) of the OSI model

    • Supports path-based routing, host-based routing, and routing based on HTTP headers

    • Provides SSL termination, content-based routing, and health checks for targets

    • Can handle WebSocket traffic and integrate with AWS WAF fo

  • Answered by AI

Skills evaluated in this interview

Eloelo Interview FAQs

How to prepare for Eloelo 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 Eloelo. The most common topics and skills that interviewers at Eloelo expect are AWS, Ansible, CI CD Pipeline, Cloud and DevOps.

Tell us how to improve this page.

Interview Questions from Similar Companies

AmbitionBox Interview Questions
4.9
 • 152 Interviews
Cogoport Interview Questions
2.9
 • 53 Interviews
Treebo Hotels Interview Questions
3.2
 • 22 Interviews
Simpl Interview Questions
2.8
 • 17 Interviews
EazyDiner Interview Questions
3.2
 • 14 Interviews
KrazyBee Interview Questions
3.7
 • 14 Interviews
TripFactory Interview Questions
2.0
 • 13 Interviews
Bijak Interview Questions
3.3
 • 12 Interviews
View all
Eloelo Senior Devops Engineer Salary
based on 4 salaries
₹18 L/yr - ₹40 L/yr
63% more than the average Senior Devops Engineer Salary in India
View more details
Product Designer
8 salaries
unlock blur

₹12 L/yr - ₹20 L/yr

QA Engineer
5 salaries
unlock blur

₹5 L/yr - ₹7 L/yr

Video Editor
5 salaries
unlock blur

₹4 L/yr - ₹5 L/yr

Senior Product Manager
4 salaries
unlock blur

₹43 L/yr - ₹55 L/yr

SDE-2
4 salaries
unlock blur

₹21 L/yr - ₹25 L/yr

Explore more salaries
Compare Eloelo with

Cogoport

2.9
Compare

KrazyBee

3.7
Compare

Treebo Hotels

3.2
Compare

Woodenstreet.com

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