Upload Button Icon Add office photos

Zoho

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Zoho Interview Questions, Process, and Tips

Updated 20 Feb 2025

Top Zoho Interview Questions and Answers

View all 135 questions

Zoho Interview Experiences

Popular Designations

505 interviews found

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

I applied via campus placement at St Josephs Evening College, Bangalore and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Went good interviewer asked about oops

Round 2 - Group Discussion 

Group discussion on is internet good or bad

Round 3 - HR 

(2 Questions)

  • Q1. Tell me about urself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills

    • Team player with excellent communication skills

  • Answered by AI
  • Q2. What is your future goal
  • Ans. 

    My future goal is to become a lead software developer and eventually start my own software development company.

    • Continue learning new technologies and programming languages

    • Gain experience in leading and managing a team of developers

    • Work on challenging projects to enhance my skills

    • Build a strong network within the software development industry

    • Save up capital to eventually start my own company

  • Answered by AI

Top Zoho Software Developer Interview Questions and Answers

Q1. to find the divisors of a number and to add all the divisors to check whether it is greater than the given number
View answer (4)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Explain the concept of multithreading and how is it differ from multiprocessing
  • Ans. 

    Multithreading allows multiple threads to exist within the context of a single process, while multiprocessing involves multiple processes running concurrently.

    • Multithreading allows multiple threads to share the same memory space and resources of a single process, while multiprocessing involves separate memory space for each process.

    • Multithreading is more lightweight and efficient compared to multiprocessing as threads ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zoho Mobile Application Developer interview:
  • Programming
  • Data Structures
  • Operating Systems
  • System Design
Interview preparation tips for other job seekers - Research the company thoroughly, tailor your resume and cover letter accordingly, practice interviewing and showcase your skill confidently

Skills evaluated in this interview

Mobile Application Developer Interview Questions asked at other Companies

Q1. How to handle the huge number of concurrent HTTP requests of orders for the same item? What if there is only one item left in the stock?
View answer (1)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basics aptitude and c programming

Round 2 - Coding Test 

Basics DSA questions and dsa

Top Zoho Software Developer Interview Questions and Answers

Q1. to find the divisors of a number and to add all the divisors to check whether it is greater than the given number
View answer (4)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (41)

What people are saying about Zoho

View All
miraculousmule
Verified Icon
1w
student at
thiagarajar college
Having on campus from zoho for content writing role so what are the requirements and how to prepare
Got a question about Zoho?
Ask anonymously on communities.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Nov 2024.

Round 1 - Coding Test 

Easy to medium leedcode problems

Top Zoho Member Technical Staff Interview Questions and Answers

Q1. What is a class in js means? And explain its use case
View answer (2)

Member Technical Staff Interview Questions asked at other Companies

Q1. Buy and Sell StockYou are Harshad Mehta’s friend. He told you the price of a particular stock for the next ‘N’ days. You can either buy or sell a stock. Also, you can only complete at most 2-transactions. Find the maximum profit that you ca... read more
View answer (4)

Zoho interview questions for popular designations

 Software Developer

 (151)

 Technical Support Engineer

 (50)

 Member Technical Staff

 (38)

 Software Engineer

 (27)

 Content Writer

 (8)

 Project Trainee

 (7)

 Web Developer

 (6)

 Developer

 (5)

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

I applied via Naukri.com and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

75 min (quantitative only)

Round 2 - Coding Test 

Basic coding and advance coding dsa

Interview Preparation Tips

Interview preparation tips for other job seekers - to code fast

Top Zoho Software Developer Interview Questions and Answers

Q1. to find the divisors of a number and to add all the divisors to check whether it is greater than the given number
View answer (4)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (41)

Get interview-ready with Top Zoho Interview Questions

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via LinkedIn and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Aptitude questions C, Java

Top Zoho Software Developer Interview Questions and Answers

Q1. to find the divisors of a number and to add all the divisors to check whether it is greater than the given number
View answer (4)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (41)
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Coding Test 

No restrictions in platform or language

Round 2 - One-on-one 

(2 Questions)

  • Q1. Difference between function overloading and overrding
  • Ans. 

    Function overloading is having multiple functions with the same name but different parameters, while function overriding is redefining a function in a subclass with the same name and parameters as in the superclass.

    • Function overloading is done within the same class, while function overriding is done in a subclass.

    • Function overloading is resolved at compile time based on the number and type of arguments, while function ...

  • Answered by AI
  • Q2. Default access modifier for interfaces in c#
  • Ans. 

    The default access modifier for interfaces in C# is 'public'.

    • Interfaces in C# are by default public and cannot have any other access modifier.

    • Explicitly specifying 'public' for an interface is redundant.

    • Example: public interface IExampleInterface { }

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA well

Skills evaluated in this interview

Top Zoho Software Developer Interview Questions and Answers

Q1. to find the divisors of a number and to add all the divisors to check whether it is greater than the given number
View answer (4)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (41)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. So it was interview, It was direct online interview. where interviewer mainly focus on oops and little dsa. but unfortunataly I was unable to answer the question because of lack of practice of oops and dsa...
  • Q2. Normal oops fundamental. Opps pillar

Interview Preparation Tips

Interview preparation tips for other job seekers - Do practice before interview.

Backend Developer Interview Questions asked at other Companies

Q1. Print a Binary Tree in Vertical OrderGiven a binary tree, return the vertical order traversal of the values of the nodes of the given tree. For each node at position (X, Y), (X-1, Y-1) will be its left child position while (X+1, Y-1) will b... read more
View answer (3)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Hackerrank, html, javascript, css

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing ArrayYou have been given an integer array/list 'ARR' of size 'N'. Write a solution to check if it could become non-decreasing by modifying at most 1 element. We define an array as non-decreasing, if ARR[i] <= ARR[i + 1] ho... read more
View answer (6)

Software Engineer Interview Questions & Answers

user image Varshini Martin livingston

posted on 20 Sep 2024

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

Its a written test . 10 questions were based on aptitude and 10 were basd on pseudocode

Round 2 - Coding Test 

5 questions based on data structures ranging from easy to medium

Round 3 - LLD 

(1 Question)

  • Q1. Asked to develop a application

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

Zoho Interview FAQs

How many rounds are there in Zoho interview?
Zoho interview process usually has 2-3 rounds. The most common rounds in the Zoho interview process are Coding Test, Aptitude Test and Technical.
How to prepare for Zoho 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 Zoho. The most common topics and skills that interviewers at Zoho expect are Java, Account Management, CRM, Customer Service and Administration.
What are the top questions asked in Zoho interview?

Some of the top questions asked at the Zoho interview -

  1. Send an email to customer apologising the mistake made by the representat...read more
  2. to find the divisors of a number and to add all the divisors to check whether i...read more
  3. What is a class in js means? And explain its use c...read more
How long is the Zoho interview process?

The duration of Zoho interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Zoho Interview Process

based on 550 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Oracle Interview Questions
3.7
 • 902 Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
Freshworks Interview Questions
3.5
 • 155 Interviews
View all

Zoho Reviews and Ratings

based on 970 reviews

4.3/5

Rating in categories

4.0

Skill development

4.1

Work-life balance

4.1

Salary

4.5

Job security

4.4

Company culture

3.9

Promotions

4.1

Work satisfaction

Explore 970 Reviews and Ratings
Member Technical Staff
1.5k salaries
unlock blur

₹5.5 L/yr - ₹23 L/yr

Technical Support Engineer
536 salaries
unlock blur

₹2.2 L/yr - ₹11 L/yr

Software Developer
412 salaries
unlock blur

₹4.5 L/yr - ₹15.3 L/yr

Software Engineer
80 salaries
unlock blur

₹3.6 L/yr - ₹14 L/yr

Web Developer
80 salaries
unlock blur

₹3.5 L/yr - ₹12.5 L/yr

Explore more salaries
Compare Zoho with

Freshworks

3.5
Compare

Salesforce

4.0
Compare

SAP

4.2
Compare

TCS

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