Upload Button Icon Add office photos

Zoho

Compare button icon Compare button icon Compare
4.3

based on 952 Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Zoho Devops Engineer Interview Questions and Answers

Updated 28 Feb 2024

Zoho Devops Engineer Interview Experiences

1 interview found

Devops Engineer Interview Questions & Answers

user image thulasinadh bathala

posted on 28 Feb 2024

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

I applied via Walk-in and was interviewed before Feb 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

They will provide 10-20 aptitude questions and 10-20 coding outputs or flowchart related questions

Round 2 - Coding Test 

They will give 5 coding questions, you can write in any programming language, irrespective of output they check how you are thinking and which logic you are using and efficiency of the code

Round 3 - Coding Test 

In this round they will give bulk application programme no need to finish it but they will check your thought process and depth in oops concepts,

Round 4 - Technical 

(3 Questions)

  • Q1. In this round they will ask technical questions, you have to explain use case with live examples
  • Q2. What is static key word where can we use
  • Ans. 

    The static keyword in Java is used to create variables and methods that belong to the class itself, rather than instances of the class.

    • Static variables are shared among all instances of a class

    • Static methods can be called without creating an instance of the class

    • Static blocks are used to initialize static variables

  • Answered by AI
  • Q3. Why public static void main
  • Ans. 

    The public static void main method is the entry point for a Java program.

    • public: Access modifier indicating that the method can be accessed from any other class.

    • static: Indicates that the method belongs to the class itself, not an instance of the class.

    • void: Indicates that the method does not return any value.

    • main: The name of the method that serves as the entry point for the program.

    • String[] args: An array of strings ...

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Will ask casual questions

Interview Preparation Tips

Interview preparation tips for other job seekers - write a efficient code, use minimum variables, no need of scanners to read variables just concentrate on logic.

Skills evaluated in this interview

Interview questions from similar companies

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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Recruitment Consulltant

Round 1 - One-on-one 

(1 Question)

  • Q1. Explain our company devops process
  • Ans. 

    Our company's DevOps process focuses on continuous integration, automated testing, and deployment.

    • Continuous integration: Developers regularly merge their code changes into a shared repository, triggering automated builds and tests.

    • Automated testing: Testing is automated at various stages of the development process to ensure code quality and reliability.

    • Deployment automation: Code changes are automatically deployed to ...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. It was about terraform
  • Q2. It was about kubernetes
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is VPC and its concepts?
  • Ans. 

    VPC stands for Virtual Private Cloud, a virtual network dedicated to your AWS account.

    • VPC allows you to create a logically isolated section of the AWS Cloud where you can launch AWS resources.

    • You can define your own IP address range, create subnets, configure route tables, and network gateways within a VPC.

    • VPC provides security by allowing you to control inbound and outbound traffic to and from your instances.

    • You can c...

  • Answered by AI
  • Q2. What are the two health checks when EC2 instance is launched?
  • Ans. 

    The two health checks when an EC2 instance is launched are System Status Checks and Instance Status Checks.

    • System Status Checks ensure that the underlying host system is healthy and reachable.

    • Instance Status Checks ensure that the instance is running properly and can be accessed.

    • Examples: System Status Checks may include checking network connectivity, while Instance Status Checks may include verifying system logs.

  • Answered by AI
  • Q3. What is difference between IAM group and IAM roles?
  • Ans. 

    IAM groups are collections of IAM users, while IAM roles are permissions that can be assumed by users or services.

    • IAM groups are used to manage permissions for multiple users at once

    • IAM roles are used to delegate permissions to users or services

    • IAM groups can contain multiple users, while IAM roles can only be assumed by one entity at a time

  • Answered by AI

Skills evaluated in this interview

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

I applied via AmbitionBox and was interviewed in May 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. What is your Strength?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Question on the skills that you have written in resume
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Overall ok It was 30 min duration

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Recruitment Consulltant

Round 1 - Technical 

(9 Questions)

  • Q1. About experience in DevOps ?
  • Q2. How do you approach to create a jenkins pipeline ?
  • Ans. 

    To create a Jenkins pipeline, I follow these steps:

    • Define the stages and steps of the pipeline

    • Create a Jenkinsfile with the pipeline code

    • Configure Jenkins to use the Jenkinsfile

    • Test the pipeline and make necessary adjustments

    • Integrate with version control for continuous integration

    • Use plugins for additional functionality

  • Answered by AI
  • Q3. Syntax to print jenkins secrets ?
  • Ans. 

    To print Jenkins secrets, use the syntax: printenv

    • Use the 'printenv' command followed by the name of the secret to print its value

    • Make sure to have the necessary permissions to access the secret

    • Example: printenv MY_SECRET

  • Answered by AI
  • Q4. Creation of Docker image using Dockerfile ?
  • Ans. 

    Dockerfile is a script that contains instructions to build a Docker image.

    • Create a Dockerfile with instructions for building the image

    • Use the 'docker build' command to build the image from the Dockerfile

    • Example: FROM ubuntu:latest RUN apt-get update && apt-get install -y nginx

    • Example: docker build -t myimage:latest .

  • Answered by AI
  • Q5. Difference between CMD and RUN in Dockerfile ?
  • Ans. 

    CMD is used to specify the default command to be executed when a container is launched. RUN is used to execute commands during the build process.

    • CMD is used to set the default command or parameters for the container

    • RUN is used to execute commands during the build process to create the image

    • CMD can be overridden by passing arguments to docker run command

    • RUN executes the command and creates a new layer on top of the curr...

  • Answered by AI
  • Q6. Difference between Java and Nodejs ?
  • Ans. 

    Java is a statically typed language while Nodejs is a runtime environment for executing JavaScript code.

    • Java is compiled while Nodejs is interpreted

    • Java is better for large-scale enterprise applications while Nodejs is better for real-time applications

    • Java has a larger community and more libraries while Nodejs has a simpler and more lightweight architecture

    • Java is used for Android app development while Nodejs is used f

  • Answered by AI
  • Q7. What is PaaS, IaaS & SaaS ?
  • Ans. 

    PaaS, IaaS, and SaaS are cloud computing models that provide different levels of infrastructure and software services.

    • PaaS (Platform as a Service) provides a platform for developers to build and deploy applications without worrying about infrastructure management.

    • IaaS (Infrastructure as a Service) provides virtualized computing resources such as servers, storage, and networking.

    • SaaS (Software as a Service) provides sof...

  • Answered by AI
  • Q8. What is DevOps ?
  • Ans. 

    DevOps is a software development methodology that emphasizes collaboration and communication between development and operations teams.

    • DevOps aims to streamline the software development process by breaking down silos between development and operations teams

    • It involves using automation and continuous delivery to speed up the release cycle

    • DevOps also emphasizes monitoring and feedback to ensure that software is reliable a...

  • Answered by AI
  • Q9. What is build in Java ?
  • Ans. 

    Build in Java refers to the process of compiling source code into executable code.

    • Build process involves compiling, testing, and packaging the code

    • Java build tools like Maven and Gradle automate the build process

    • Build artifacts can be JAR, WAR, or EAR files

    • Build process can be customized using build scripts like Ant

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

I was interviewed in Jan 2024.

Round 1 - Assignment 

They first gave me a project to be implemented in Go language, then was called for tefchnival round

Interview Preparation Tips

Interview preparation tips for other job seekers - long process

Zoho Interview FAQs

How many rounds are there in Zoho Devops Engineer interview?
Zoho interview process usually has 5 rounds. The most common rounds in the Zoho interview process are Coding Test, Aptitude Test and Technical.
What are the top questions asked in Zoho Devops Engineer interview?

Some of the top questions asked at the Zoho Devops Engineer interview -

  1. what is static key word where can we ...read more
  2. why public static void m...read more
  3. in this round they will ask technical questions, you have to explain use case w...read more

Tell us how to improve this page.

Zoho Devops Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Zoho Devops Engineer Salary
based on 14 salaries
₹4.8 L/yr - ₹16.5 L/yr
19% more than the average Devops Engineer Salary in India
View more details

Zoho Devops Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

4.0

Work-life balance

5.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Member Technical Staff
1.4k salaries
unlock blur

₹5.6 L/yr - ₹23 L/yr

Technical Support Engineer
538 salaries
unlock blur

₹2.5 L/yr - ₹11 L/yr

Software Developer
404 salaries
unlock blur

₹5 L/yr - ₹19 L/yr

Software Engineer
85 salaries
unlock blur

₹4.7 L/yr - ₹15.5 L/yr

Web Developer
79 salaries
unlock blur

₹3.5 L/yr - ₹12.3 L/yr

Explore more salaries
Compare Zoho with

Freshworks

3.5
Compare

Salesforce

4.1
Compare

SAP

4.2
Compare

TCS

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