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 Associate Interview Questions and Answers

Updated 22 May 2024

Zoho Associate Interview Experiences

3 interviews found

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

It's like very easy properly prepare for aptitude round

Round 2 - One-on-one 

(1 Question)

  • Q1. Tell about yourself

Associate Interview Questions & Answers

user image Anonymous

posted on 10 Apr 2024

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 Oct 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Good place to interview in the campus

Round 2 - Technical 

(1 Question)

  • Q1. What is binary search
  • Ans. 

    Binary search is a search algorithm that finds the position of a target value within a sorted array.

    • Binary search works by repeatedly dividing the search interval in half.

    • It is more efficient than linear search for large arrays.

    • Example: Searching for the number 7 in the array [1, 3, 5, 7, 9, 11] using binary search.

  • Answered by AI

Skills evaluated in this interview

Associate Interview Questions Asked at Other Companies

asked in UNO Minda
Q1. What is mean of TTR & why required for powder coating process ... read more
Q2. A rat has 3000 gm of rice, he has to travel a distance of 3000m, ... read more
asked in Amazon
Q3. Difference between online and offline shopping.
asked in PwC
Q4. Create a table with specified columns Alter the table and add new ... read more
asked in Wipro
Q5. What's IP address and why is it required?

Associate Interview Questions & Answers

user image Anonymous

posted on 7 Oct 2022

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

Logical thinking and coding mcq which was moderate in difficulty

Round 3 - Coding Test 

Hard with data structure concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Gain more knowledge on data structure mostly practical knowledge would be helpful to you

Interview questions from similar companies

I applied via Referral and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About aptitude , logical reasoning, vocabulary etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Though time is less , but can be answered with determined concentration.

I applied via Approached by Company and was interviewed before Nov 2021. There were 8 interview rounds.

Round 1 - Aptitude Test 

I dont know when it happened i think i missed it

Round 2 - Coding Test 

I wrote hello world in machine language and they were surprised, one was willing to marry her daughter with me

Round 3 - Group Discussion 

Ahh the fun round it was a great experience obviously i won the GD as i was the only 1 in the room

Round 4 - Assignment 

I can barely solve my bro's 8th test paper but at least i put my roll number correct

Round 5 - Case Study 

Nah , never heard of this one before

Round 6 - HR 

(3 Questions)

  • Q1. Tf, am i the only one who got a male HR ?
  • Q2. What are your salary expectations
  • Q3. Where do you see yourself in 5 years
Round 7 - Technical 

(2 Questions)

  • Q1. What is a for loop
  • Ans. 

    A for loop is a control flow statement that repeatedly executes a block of code.

    • It has three parts: initialization, condition, and increment/decrement

    • It is used to iterate over a range of values or elements in an array

    • Example: for (let i = 0; i < 10; i++) { console.log(i); }

  • Answered by AI
  • Q2. How to create a html file
  • Ans. 

    To create a HTML file, you can use a text editor to write the code and save it with a .html extension.

    • Open a text editor like Notepad, Sublime Text, or Visual Studio Code

    • Write your HTML code including tags like <html>, <head>, <title>, <body>

    • Save the file with a .html extension, for example index.html

    • Open the file in a web browser to view the HTML content

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

(1 Question)

  • Q1. Never heard of this one

Interview Preparation Tips

Interview preparation tips for other job seekers - Never herd of ambition box before bu rating this because i was getting bored

Skills evaluated in this interview

I applied via Referral and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Why do you want to join salesforce?
  • Ans. 

    I want to join Salesforce because of its reputation as a leading CRM platform and its commitment to innovation.

    • Salesforce is a recognized leader in the CRM industry

    • Salesforce offers a wide range of career opportunities and growth potential

    • Salesforce is known for its commitment to innovation and cutting-edge technology

    • Salesforce has a strong company culture and values that align with my own

    • Salesforce has a diverse and i

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always try to be comfortable in the interview room, not too comfortable though. The interviewer is there to have a conversation with you to get to know you. There is no point in being nervous about the interview.

Developer Interview Questions & Answers

SAP user image Anonymous

posted on 30 May 2022

I applied via Referral and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Easy leetcode problem, hashmap

Round 2 - Technical 

(1 Question)

  • Q1. Design a system. system design question

Interview Preparation Tips

Interview preparation tips for other job seekers - not hard. basic easy leetcode question

Interview Questionnaire 

8 Questions

  • Q1. Given a binary tree (not necessarily complete), connect a node to the node to its right (at the same level). Assume you have an extra pointer in the node to perform the connection
  • Ans. 

    Connect nodes to their right in a binary tree using an extra pointer.

    • Traverse the tree using level order traversal

    • For each node, connect its right child to the next node in the level

    • If there is no next node, set the right child to null

  • Answered by AI
  • Q2. Given a sentence, write a function, which when called, would return the first word in the string and modify the string to contain from second to the last word
  • Q3. Design an elevator system, where there are 5 elevators and 50 floors. What would be the design considerations on which elevator should come when a button is pressed on a given floor?
  • Ans. 

    Design considerations for an elevator system with 5 elevators and 50 floors.

    • Traffic patterns and peak hours should be analyzed to determine the optimal number of elevators to be in operation at any given time.

    • Elevators should be programmed to prioritize stops based on the direction of travel and the proximity of the requested floor to the elevator's current location.

    • The system should be designed to minimize wait times ...

  • Answered by AI
  • Q4. Differences between threads, processes and many such questions
  • Q5. Given two linked lists, find if they have a common node
  • Ans. 

    Given two linked lists, check if they have a common node.

    • Traverse both lists and compare each node's memory address

    • Use a hash table to store memory addresses of nodes in one list and check for matches in the other list

    • If one list is shorter, traverse it first and then start traversing the longer list from the difference in length

  • Answered by AI
  • Q6. Given an array, find if it contains a majority element. An element is a majority element if it occurs more than 50% of times. Do it in O(n)
  • Ans. 

    Find if an array has a majority element in O(n)

    • Iterate through the array and keep track of the count of each element

    • If the count of any element is greater than half the length of the array, return true

    • Otherwise, return false

  • Answered by AI
  • Q7. Given a 2 dim array, find an element which is the maximum in its column and minimum in its row. You are assured that atleast one such element exists. You may return any one if multiple such elements exist....
  • Ans. 

    Find element in 2D array which is max in column and min in row with minimum comparisons

    • Iterate over rows and columns to find max and min elements respectively

    • Compare the max element of a column with the min element of its row

    • Return the element if it satisfies the condition

    • Consider edge cases like multiple elements satisfying the condition

  • Answered by AI
  • Q8. Given an array of numbers, return the same array containing only unique elements in the array
  • Ans. 

    Return an array with only unique elements

    • Use a Set to store unique elements

    • Loop through the array and add each element to the Set

    • Convert the Set back to an array and return it

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: 1 written test + 3 rounds of technical interviews
For final offer: 3 rounds of technical interview

College Name: Veermata Jijabai Technological Institute, Mumbai [ VJTI ]

Skills evaluated in this interview

Associate Interview Questions & Answers

Oracle user image amboxavatar

posted on 10 Jun 2021

I applied via Referral and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Asked me to create a PowerPoint on how would I help the sales team with the selling pitch
  • Q2. Asked me to write an email summarizing my findings from the selling pitch deck
  • Q3. Guesstimate - how many flights are handled by Bangalore airport on a daily basis
  • Ans. 

    Around 600 flights are handled by Bangalore airport on a daily basis.

    • Bangalore airport is one of the busiest airports in India

    • It handles both domestic and international flights

    • On average, there are around 25-30 flights per hour

    • The number of flights may vary depending on the day of the week and time of the year

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Communication skills are very important

I applied via Referral and was interviewed before Jun 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Tell about yourself?

Interview Preparation Tips

Interview preparation tips for other job seekers - try to be cool

Zoho Interview FAQs

How many rounds are there in Zoho Associate interview?
Zoho interview process usually has 2-3 rounds. The most common rounds in the Zoho interview process are Aptitude Test, Coding Test and Resume Shortlist.

Tell us how to improve this page.

Zoho Associate Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more
Zoho Associate Salary
based on 4 salaries
₹7 L/yr - ₹8.4 L/yr
At par with the average Associate Salary in India
View more details
Member Technical Staff
1.5k salaries
unlock blur

₹5.6 L/yr - ₹23 L/yr

Technical Support Engineer
573 salaries
unlock blur

₹3 L/yr - ₹10.5 L/yr

Software Developer
431 salaries
unlock blur

₹5 L/yr - ₹20 L/yr

Software Engineer
127 salaries
unlock blur

₹4.2 L/yr - ₹16 L/yr

Web Developer
78 salaries
unlock blur

₹3.5 L/yr - ₹12 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