Upload Button Icon Add office photos

Zoho

Compare button icon Compare button icon Compare
4.3

based on 955 Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Zoho fresher Interview Questions and Answers

Updated 6 Sep 2023

Zoho fresher Interview Experiences

1 interview found

fresher Interview Questions & Answers

user image DHINAKARAN P

posted on 6 Sep 2023

Interview experience
4
Good
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 - Aptitude Test 

Percentage , ratio , logical , probability

Round 3 - Coding Test 

Basic logical programming

Round 4 - Coding Test 

Advance coding round

Round 5 - Technical 

(1 Question)

  • Q1. Technical HR round
Round 6 - HR 

(1 Question)

  • Q1. General HR round

Interview Preparation Tips

Interview preparation tips for other job seekers - Study basic aptitudes and c programming for the first round

Interview questions from similar companies

fresher Interview Questions & Answers

SAP user image Anonymous

posted on 7 Jan 2025

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

Hackerrank platform 2 coding qs

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

I applied via Company Website and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Basic Python, SQL, and Bash questions

Round 2 - One-on-one 

(4 Questions)

  • Q1. SQL questions with operations that include changing from string to array. Tip: stick to RDBMS-specific dialects only (like Postgres), I used Spark SQL
  • Q2. Simple Python questions with a follow-up to optimise it
  • Q3. Bash script-based questions, are pretty basic.
  • Q4. Data pipeline design and best practices.
  • Ans. 

    Data pipeline design involves creating a system to efficiently collect, process, and analyze data.

    • Understand the data sources and requirements before designing the pipeline.

    • Use tools like Apache Kafka, Apache NiFi, or AWS Glue for data ingestion and processing.

    • Implement data validation and error handling mechanisms to ensure data quality.

    • Consider scalability and performance optimization while designing the pipeline.

    • Doc...

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

(3 Questions)

  • Q1. Easy to medium Leetcode-based question. With moderate difficulty.
  • Q2. Simple Python-based question with optimisation.
  • Q3. Design specific questions based on Data pipelines.
Round 4 - Behavioral 

(3 Questions)

  • Q1. SQL-based question with moderate difficulty.
  • Q2. Python-based questions, follow questions with some optimisations.
  • Q3. Bash-script based round.

Skills evaluated in this interview

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

(3 Questions)

  • Q1. What is bigadata
  • Ans. 

    Big data refers to large and complex data sets that are difficult to process using traditional data processing applications.

    • Big data involves large volumes of data

    • It includes data from various sources such as social media, sensors, and business transactions

    • Big data requires specialized tools and technologies for processing and analysis

  • Answered by AI
  • Q2. How spark works
  • Ans. 

    Spark is a distributed computing framework that processes big data in memory and is known for its speed and ease of use.

    • Spark is a distributed computing framework that can process data in memory for faster processing.

    • It uses Resilient Distributed Datasets (RDDs) for fault-tolerant distributed data processing.

    • Spark provides high-level APIs in Java, Scala, Python, and R for ease of use.

    • It supports various data sources li...

  • Answered by AI
  • Q3. Explain your application
  • Ans. 

    Our application is a data engineering platform that processes and analyzes large volumes of data to provide valuable insights.

    • Our application uses various data processing techniques such as ETL (Extract, Transform, Load) to clean and transform raw data into usable formats.

    • We utilize big data technologies like Hadoop, Spark, and Kafka to handle large datasets efficiently.

    • The application also includes machine learning al...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on basic. And have clear understanding of concepts , accept what you dont know and show attitude to learn and work on require skill
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What are different data structures?
  • Ans. 

    Data structures are ways to organize and store data in a computer system.

    • Arrays: a collection of elements stored in contiguous memory locations

    • Linked Lists: a sequence of elements where each element points to the next one

    • Stacks: a Last In First Out (LIFO) data structure

    • Queues: a First In First Out (FIFO) data structure

    • Trees: hierarchical data structures with a root node and child nodes

    • Graphs: a collection of nodes conn

  • Answered by AI
  • Q2. What are different types of databases
  • Ans. 

    Different types of databases include relational, NoSQL, graph, and time-series databases.

    • Relational databases: store data in tables with rows and columns (e.g. MySQL, PostgreSQL)

    • NoSQL databases: flexible, schema-less databases (e.g. MongoDB, Cassandra)

    • Graph databases: store data in nodes and edges to represent relationships (e.g. Neo4j)

    • Time-series databases: optimized for storing and querying time-stamped data (e.g. In

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up your basics?

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. About the project and technical aspect
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Hackerearth problem on reversing the string & one more array question

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse the string
  • Ans. 

    Reverse a given string

    • Use built-in functions like reverse() in Python

    • Iterate through the string in reverse order and append characters to a new string

    • Use stack data structure to reverse the string

  • Answered by AI
  • Q2. SQL based windowing function

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. What are cyclic linked lists
  • Ans. 

    Cyclic linked lists are linked lists where the last node points back to the first node, creating a loop.

    • Cyclic linked lists have no NULL pointers, making it difficult to determine the end of the list.

    • They can be used to efficiently represent circular data structures like a round-robin scheduling algorithm.

    • Detecting cycles in a linked list can be done using Floyd's cycle-finding algorithm.

  • Answered by AI
  • Q2. Coding question from BST
Round 2 - Technical 

(2 Questions)

  • Q1. About data modelling and Architecture
  • Q2. Real world problem and solution
  • Ans. 

    Real world problem: Predicting customer churn in a subscription-based service

    • Collect and analyze customer data such as usage patterns, demographics, and interactions

    • Use machine learning algorithms to identify factors leading to churn

    • Implement targeted retention strategies based on the analysis

    • Monitor and evaluate the effectiveness of the strategies over time

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Sql technical round
  • Q2. About various azure services
Round 4 - Technical 

(2 Questions)

  • Q1. About my work area
  • Q2. Managerial and company fit

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn DSA and in depth knowledge of your work and field

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Project discussion
  • Q2. SQL
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain surrogate key
  • Ans. 

    Surrogate key is a unique identifier used in databases to uniquely identify each record in a table.

    • Surrogate keys are typically generated by the system and have no business meaning.

    • They are used to simplify database operations and improve performance.

    • Example: Using an auto-incrementing integer column as a surrogate key in a table.

  • Answered by AI

Zoho Interview FAQs

How many rounds are there in Zoho fresher interview?
Zoho interview process usually has 6 rounds. The most common rounds in the Zoho interview process are Coding Test, Resume Shortlist and Aptitude Test.
What are the top questions asked in Zoho fresher interview?

Some of the top questions asked at the Zoho fresher interview -

  1. technical HR ro...read more
  2. general HR ro...read more

Tell us how to improve this page.

Zoho fresher Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Zoho fresher Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 2 Reviews and Ratings
Member Technical Staff
1.4k salaries
unlock blur

₹5.6 L/yr - ₹23 L/yr

Technical Support Engineer
521 salaries
unlock blur

₹2.5 L/yr - ₹11 L/yr

Software Developer
404 salaries
unlock blur

₹4.5 L/yr - ₹19 L/yr

Software Engineer
83 salaries
unlock blur

₹4.7 L/yr - ₹15.7 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.0
Compare

SAP

4.2
Compare

TCS

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