Open In App

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

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 2: Basic Coding.

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.

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 :

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

Article Tags :