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

Updated 2 Sep 2024

Zoho Trainee Interview Experiences

2 interviews found

Trainee Interview Questions & Answers

user image Anonymous

posted on 2 Sep 2024

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

They asking general aptitude for 1st round based on your performance they selected you to next round

Round 2 - Coding Test 

In this round they asking core coding problems

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare for placement before attending the rounds .

Trainee Interview Questions & Answers

user image Anonymous

posted on 11 Nov 2023

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

I applied via Campus Placement

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 

Basic,topics 1hr duration

Round 3 - Coding Test 

Basic cprograming all absic codes

Interview Preparation Tips

Interview preparation tips for other job seekers - basic throughly prepare

Trainee Interview Questions Asked at Other Companies

Q1. Ques1: There is a big file of words which is dynamically changing ... read more
Q2. Ques 1: An array of n integers is there in which the range of ele ... read more
Q3. Ques 1: You are given pairs of numbers. In a pair the first numbe ... read more
Q4. 1) What was the College project ? 2) Subjects ? 3) Types of cooli ... read more
Q5. During cruise, Thrust equals drag, then how does plane move forwa ... read more

Interview questions from similar companies

I was interviewed in Jul 2017.

Interview Questionnaire 

6 Questions

  • Q1. What is autoboxing and unboxing
  • Ans. 

    Autoboxing is the automatic conversion of primitive data types to their corresponding object wrapper classes.

    • Autoboxing is useful when working with collections that require objects instead of primitives.

    • Example: int i = 5; Integer j = i; //autoboxing

    • Unboxing is the opposite of autoboxing, where an object of a wrapper class is converted back to its corresponding primitive type.

    • Example: Integer j = 5; int i = j; //unboxi

  • Answered by AI
  • Q2. What is typecasting UP AND DOWN
  • Ans. 

    Typecasting up and down refers to converting a variable of one data type to another data type of higher or lower precision.

    • Typecasting up involves converting a variable of lower precision to a variable of higher precision, such as converting an int to a double.

    • Typecasting down involves converting a variable of higher precision to a variable of lower precision, such as converting a double to an int.

    • Typecasting can resul...

  • Answered by AI
  • Q3. How do you iterate map
  • Ans. 

    To iterate a map in Java, use a for-each loop or an iterator.

    • Use the entrySet() method to get a set of key-value pairs

    • For-each loop: for(Map.Entry entry : map.entrySet())

    • Iterator: Iterator> iterator = map.entrySet().iterator();

    • Use hasNext() and next() methods to iterate through the map

  • Answered by AI
  • Q4. Types of synchronisation in java
  • Ans. 

    Types of synchronization in Java

    • Synchronized methods

    • Synchronized statements

    • ReentrantLock

    • Semaphore

    • CountDownLatch

  • Answered by AI
  • Q5. Access modifiers in method overriding
  • Ans. 

    Access modifiers in method overriding

    • Access modifiers in the overriding method cannot be more restrictive than the overridden method

    • The access modifier can be less restrictive or the same as the overridden method

    • Private methods cannot be overridden

    • Examples: public method can be overridden by public or protected method, but not by private method

  • Answered by AI
  • Q6. Covarient return type

Skills evaluated in this interview

Developer Interview Questions & Answers

Tech Mahindra user image siddharth pandit

posted on 29 Nov 2015

Interview Preparation Tips

Round: Test
Experience: The test started with the verbal ability - reading and comprehension. Especially for Tech M you will have to improve your verbal skills as they strongly emphasize on them.
Logical reasoning section is a little bit easy or you can say that as for me I found it rather easy to handle. Mainly questions were on data interpretation and cubes and relations and ages.
Moving on to the third and last section that comprises of quant is simple. Most of the questions were direct and had 2-3 line solutions. Just improve your basic fundamentals.
Tips: Refer India bix and at least start reading something to improve your vocabulary. Even practicing each section from this site is quite enough.
Duration: 180 min minutes
Total Questions: 130

Round: Problem Statement
Experience: The window given was of only 10 minutes and I was hardly able to write 10-12 lines.
Tips: Guys main aim is to check your sentence making ability and how well you have understood the topic. Whatever you write make sure its well read, grammatically correct and in context with the topic given.

Round: Technical Interview
Experience: Technical interview was a little bit tough. Mainly, the interviewer asked me to explain my project and questions on my field of interest.
Tips: Whatever programming language you know, be ready to at least explain the logic for basic questions asked about that language. Don't try to go round and round over the topic. Just be clear and to the point

Round: HR Interview
Experience: My HR round lasted a mere 3 minutes
Tips: Just don't tremble in front of him and try to answer in a positive way.

General Tips: Be confident in giving your answers.
Also, it is important to crack the Aptitude at the first place or you wont get a chance to showcase your technical knowledge, no matter how strong are you.
So do not ignore that part. Know what company gives importance to what section (as TechM gives for verbal).
Practice with whatever material you get.
Skill Tips: Know the fundamentals.
Master one programming language, its syntax and logic.
Skills:
College Name: JNEC Aurangabad

I was interviewed in Jun 2017.

Interview Preparation Tips

Round: Technical Interview
Experience: They asked java basics,
what we wrote in resume will ask
about project
Tips: please prepare basics things

Interview Questionnaire 

1 Question

  • Q1. Abstraction

I applied via Campus Placement and was interviewed in Jul 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Tell me something about you?
  • Q2. What are your hobbies?

Interview Preparation Tips

Interview preparation tips for other job seekers - Please ask me a simple questions because I'm a Fresher.Thanks

I applied via Naukri.com and was interviewed in Aug 2018. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. 1.Core java 2.Spring 3. Hibernate 4. Spring Boot 5. SQL 6. AngularJS
  • Ans. 

    The question is asking about the candidate's knowledge in Core Java, Spring, Hibernate, Spring Boot, SQL, and AngularJS.

    • Core Java is the foundation of Java programming language.

    • Spring is a popular framework for building Java applications.

    • Hibernate is an ORM tool used for mapping Java objects to database tables.

    • Spring Boot is a framework for building microservices.

    • SQL is a language used for managing relational databases...

  • Answered by AI
  • Q2. 1. How to connect 2 DBs from spring boot application
  • Ans. 

    To connect 2 DBs from a Spring Boot application, configure multiple data sources and use JdbcTemplate or EntityManager for each DB.

    • Configure multiple data sources in the application.properties file

    • Create separate configuration classes for each data source

    • Use JdbcTemplate or EntityManager to interact with each DB

    • Specify the appropriate data source in the repository or service classes

  • Answered by AI
  • Q3. 2. Difference between abstract method implementation and default method
  • Ans. 

    Abstract method implementation is mandatory while default method is optional.

    • Abstract method has no implementation in the abstract class and must be implemented by the subclass.

    • Default method has a default implementation in the interface and can be overridden by the implementing class.

    • Abstract method is used to enforce a contract while default method is used to provide a default behavior.

    • Example: abstract method - publ...

  • Answered by AI
  • Q4. 1. About salary and expectation

Interview Preparation Tips

Round: Test
Experience: Technical written test

General Tips: Terrible interview. HR told to give 11% hike with 6% variable and 5% fixed. I kicked off the company.
Skills: Web Technologies, Java Application Development
Duration: 1-4 weeks

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: I almost sove 130 question
Duration: 2 hours
Total Questions: 150

Round: Group Discussion
Experience: Problem Solving Algorithms
Duration: 3 hours

Developer Interview Questions & Answers

TCS user image Anonymous

posted on 13 Sep 2017

Interview Questionnaire 

1 Question

  • Q1. How setup network in lab anf what equipment u required?
  • Ans. 

    To setup a network in a lab, you need equipment and a plan.

    • Determine the network topology and design

    • Choose appropriate networking equipment such as routers, switches, and cables

    • Configure network settings such as IP addresses and subnet masks

    • Test the network to ensure connectivity and functionality

    • Consider security measures such as firewalls and access control

    • Examples of equipment: Cisco routers, Juniper switches, Cat6

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: They asked about all questions based computer networks and what type of practical u did. And network logarithms how packet works.
Tips: If you are from ece background then computer network one of the option for interview preparation.

College Name: Echelon institute of technology

Skills evaluated in this interview

Zoho Interview FAQs

How many rounds are there in Zoho Trainee 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 Trainee Interview Process

based on 3 interviews

Interview experience

4
  
Good
View more

Trainee Interview Questions from Similar Companies

TCS Trainee Interview Questions
3.7
 • 59 Interviews
Wipro Trainee Interview Questions
3.7
 • 38 Interviews
Infosys Trainee Interview Questions
3.6
 • 15 Interviews
Google Trainee Interview Questions
4.4
 • 2 Interviews
View all
Zoho Trainee Salary
based on 6 salaries
₹1 L/yr - ₹5 L/yr
33% more than the average Trainee Salary in India
View more details

Zoho Trainee Reviews and Ratings

based on 5 reviews

3.6/5

Rating in categories

4.2

Skill development

3.1

Work-life balance

4.1

Salary

3.6

Job security

3.7

Company culture

3.6

Promotions

3.7

Work satisfaction

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

₹0 L/yr - ₹0 L/yr

Technical Support Engineer
546 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
405 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
81 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Web Developer
80 salaries
unlock blur

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