Open In App

Zoho Interview Experience For A Software Developer (Off- Campus) 2024

Last Updated : 08 Apr, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

Hello Everyone! I applied to Zoho off-campus drive for a software developer role. There are 5 rounds in this interview process.

Round 1: Aptitude & Technical.

  • Round 1 covers quantitative aptitude 10 questions and technical questions – code is given and asks for output – 10 Questions in java.
  • Round 1 is not MCQ type, they provide us with a question paper, answer sheet (20 boxes in table format) and rough sheets.
  • Topics covered in question paper – Aptitude (Percentage, ratio, profit loss, speed time and distance, average, work wages, etc…) and Technical (Recursion, loops, conditions and some logic).
  • Duration – 1 hour and 30 minutes.
  • Mode – written (offline).

Round 2: Basic Coding.

  • Round 2 covers five basic programming questions.
  • Questions paper and a Laptop are given to write code.
  • Questions from all difficulty levels easy, medium and hard.
  • Duration – 1 hour 30 minutes.
  • Mode – offline (code in laptop).

Question asked in round 2:

1. Sort an array of 0s, 1s and 2s | Dutch National Flag problem.

2. Find the Excel column name from a given column number.

3. Goal Parser Interpretation.

You own a Goal Parser that can interpret a string command. The command consists of an alphabet of “G”, “()” and/or “(al)” in some order. The Goal Parser will interpret “G” as the string “G”, “()” as the string “o”, and “(al)” as the string “al”. The interpreted strings are then concatenated in the original order.

Given the string command, return the Goal Parser’s interpretation of command.

Example 1:

Input: command = “G()(al)”

Output: “Goal”

Explanation: The Goal Parser interprets the command as follows:

G -> G

() -> o

(al) -> al

The final concatenated result is “Goal”.

Example 2:

Input: command = “G()()()()(al)”

Output: “Gooooal”

4. Longest Repeating Character Replacement.

5. Number of Good Pairs.

Given an array of integers nums, return the number of good pairs. A pair (i, j) is called good if nums[i] == nums[j] and i < j.

Example 1:

Input: nums = [1,2,3,1,1,3]

Output: 4

Explanation: There are 4 good pairs (0,3), (0,4), (3,4), (2,5) 0-indexed.

Example 2:

Input: nums = [1,1,1,1]

Output: 6

Explanation: Each pair in the array are good.

Round 3: Advanced Coding.

  • In Round 3, we are asked to code the e-commerce application with four functionality.
  • Question paper and a Laptop is given to code.
  • It covers the OOPs concept and DSA.
  • Duration – 2 to 3 hours.
  • Mode – Offline (code in laptop).

Question asked in round 3:

Super Store

Build an online shopping interface where buyers and sellers can buy and sell inventory and engage in efficient transactions across a wide range of products.

Modules :

  1. Profile service.
  2. Inventory service.
  3. Order service.
  4. Payment service.

Requirements :

  • Allow buyers and sellers to register and log in.
  • Allow sellers to manage their inventory of products. (Operations : addItem(), updateItem())
  • Allow buyers to add items to the cart, place the order, and make payment (Operations: listInventory(), butItem(), addToCart(), makePayment ()).
  • Orders should be validated against inventory.
  • Password validation and encryption.

Round 4: Technical Interview.

In 4th round(Face to Face), they asked questions about DSA, the Operating system and the project I did.

Round 5: General HR.

In 5th round, they ask

  • Tell me about yourself.
  • Family background.
  • Why did you come to Zoho?
  • Why should we hire you?
  • Salary expectations.

Similar Reads

Zoho Interview Experience Software developer (Off-Campus) 2024
Zoho is a very popular product-based company in Tamil Nadu. It hires freshers for the Software Developer roles and the total hiring is off-campus i.e., you need to come to Chennai at their Zoho office physically to attend the drive. 1. Application:When you apply for the Software developer role at Zoho, you will get an email that you are shortlisted
5 min read
Zoho Interview Experience | Off-campus for Java Software Developer
I was interviewed for the Software Developer role in Zoho Estancia campus, Chennai on November 9th, 2019. The entire process ended up on the same day. The process is as follows: Round 1: First-round consists of 2 sections Logical Aptitude and Programming sections. The programming section consisted of 10 questions based on loops, recursions, and mac
6 min read
Zoho Interview Experience | Off Campus for Software Developer Role
Hi all, I'm here to share my Zoho interview experience. Firstly, it was a pool drive and I applied through my college(Sathyabama University) and the first round was on october 5, 2019. First Round (Pen and Paper test on Aptitude and C programming) : The test was an offline test. They gave us a question paper which consisted of 10 aptitude questions
4 min read
Zoho Interview Experience for Software Developer | Off-Campus 2021
There were 6 rounds: Round 1(Online Assessment): There were 20 questions 10 for general aptitude and 10 for C output. The test was for 4 hours.In some sets, flowchart questions were also included (not in my case). Round 2(Programming Round): I got the mail to attend the online programming round after a week(be patient some times they may delay more
3 min read
Zoho Interview Experience for Software Developer FTE (Off-Campus) July 2022
I applied for the Zoho Off-Campus Drive for the Software Developer role in July 2022. A week later I got the mail for the first screening round. Round 1: Aptitude and Technical (Online Assessment) Around 40 questions covering C output questions, a few puzzles, and some general aptitude questions were asked in this round. For output questions, the a
3 min read
Zoho Interview Experience For Software Developer (Off-Campus)
The four rounds were conducted for the Zoho interview for the software developer role. Round 1 (DSA) - 6 Problems :After consideration, however, I was permitted to skip the aptitude basic rounds because I performed the best of all. Round 1: 6 DSA problems, Easy to Easy-Medium level, Just doing 100 LC problems is enough, I've done all 5 with the mos
2 min read
Zoho Interview Experience | Set 27 (Off-Campus for Software Developer)
Round 1: Written test The first round comprised of 25 one mark questions (without options) from C output questions and puzzle &amp; general aptitude questions (Test Duration: 2 hour) C output questions part covered questions from iterations, pointers, array and data structures. Tips :- Solve the technical apt questions first and don’t stress yourse
4 min read
Zoho Interview Experience | Set 29 (Off-Campus for Software Developer)
Round 1: First round was technical aptitude with 40 questions - 20 programs and 20 flow charts (Time : 2hrs). I was shortlisted for the second round and got a mail. Round 2: Second round was programming round . It was an offline programming round for the entire day. We get the next program only if we finish one. They had their own test cases. We ca
3 min read
Zoho Interview Experience | Set 30 (Off-Campus for Software developer)
Round 1: Pen and paper round having 40 technical questions including flowcharts and output prediction for C Programs with no choices. No negative marking and I've attended only around 30 questions. Round 2: I was called for round 2 after some days. It's a full day coding round. I was given a paper having the problem,test cases and i need to impleme
2 min read
Zoho Interview Experience | Set 33 (Off-Campus for Software developer)
Round 1: C apps 10 one mark questions and 5 two mark questions General apps 10 one mark questions . (puzzles from gfg and other aptitude questions ) Round 2: 1.Given two dimensional matrix of integer and print the rectangle can be formed using given indices and also find the sum of the elements in the rectangle Input: mat[M][N] = {{1, 2, 3, 4, 6},
2 min read
Practice Tags :