Zarantech Software Private Limited interview experience Real time questions & tips from candidates to crack your interview

Software Developer

Zarantech Software Private Limited
upvote
share-icon
3 rounds | 5 Coding problems

Interview preparation journey

expand-icon
Journey
I was not exceptionally good at coding at the start, but I solved more than 400+ questions on Code Studio. Now, I can crack most of the interviews.
Application story
I got a referral from LinkedIn from someone currently working in this company. He is a very good person. He gave me a chance to prove myself.
Why selected/rejected for the role?
I was rejected because I needed better projects in my resume and good knowledge of the Data structure and Algorithm.
Preparation
Duration: 4 months
Topics: Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming
Tip
Tip

Tip 1: Must do Previously asked Interviews and Online Test Questions.
Tip 2: Review all the previous interview experiences from Codestudio.
Tip 3: Do at least two good projects; you must know every bit of them.

Application process
Where: Referral
Eligibility: Above 7 CGPA
Resume Tip
Resume tip

Tip 1: Have at least two good projects explained in short with all critical points covered.
Tip 2: Every skill must be mentioned.
Tip 3: Focus on skills, projects, and experiences more.

Interview rounds

01
Round
Easy
Video Call
Duration60 minutes
Interview date14 May 2023
Coding problem2

1. Triple Sum

Easy
15m average time
85% success
0/40
Asked in companies
HSBCRakuten IndiaJio Platforms Limited

It was Todd’s Birthday, So Bojack decided to give Todd a Binary tree with ‘N’ nodes. But the binary tree was too big to keep in his house, so Bojack decided to give exactly three nodes from that tree such that the sum of these three numbers equals ‘X’. Can you help Bojack determine if it is possible to make a sum equal to ‘X’?

For Example :
X = 11

The sum of nodes 7, 3, 1 is 11. So we will return True.
Problem approach

Step 1 : Implemented brute force solution first.
Step 2 : Then saw as order of elements does not mattered so thought of sorting it and to use 2 pointer 
Step 3 :  Implemented it.

Try solving now

2. Inorder Traversal

Easy
32m average time
0/40
Asked in companies
Wells FargoAmazonShareChat

You have been given a Binary Tree of 'n' nodes, where the nodes have integer values. Your task is to return the In-Order traversal of the given binary tree.


For example :
For the given binary tree:

The Inorder traversal will be [5, 3, 2, 1, 7, 4, 6].
Try solving now
02
Round
Easy
Video Call
Duration60 minutes
Interview date14 May 2023
Coding problem2

1. Check Whether Binary tree Is Complete

Moderate
25m average time
70% success
0/80
Asked in companies
WalmartMakeMyTripDunzo

You are given a binary tree. Your task is to check whether the given binary tree is a Complete Binary tree or not.

A Complete Binary tree is a binary tree whose every level, except possibly the last, is completely filled, and all nodes in the last level are placed at the left end.

Example of a complete binary tree :

Example

Problem approach

Step1 : First I provided the solution , that just do the inorder traversal and check whether the output is sorted or not 
Step2 : Interviewer asked to do without inorder traversal. So implemented with recursion too

Try solving now

2. Rat in a maze

Easy
15m average time
85% success
0/40
Asked in companies
OlaIBMGoldman Sachs

You are given a starting position for a rat which is stuck in a maze at an initial point (0, 0) (the maze can be thought of as a 2-dimensional plane). The maze would be given in the form of a square matrix of order 'N' * 'N' where the cells with value 0 represent the maze’s blocked locations while value 1 is the open/available path that the rat can take to reach its destination. The rat's destination is at ('N' - 1, 'N' - 1). Your task is to find all the possible paths that the rat can take to reach from source to destination in the maze. The possible directions that it can take to move in the maze are 'U'(up) i.e. (x, y - 1) , 'D'(down) i.e. (x, y + 1) , 'L' (left) i.e. (x - 1, y), 'R' (right) i.e. (x + 1, y).

Note:
Here, sorted paths mean that the expected output should be in alphabetical order.
For Example:
Given a square matrix of size 4*4 (i.e. here 'N' = 4):
1 0 0 0
1 1 0 0
1 1 0 0
0 1 1 1 
Expected Output:
DDRDRR DRDDRR 
i.e. Path-1: DDRDRR and Path-2: DRDDRR

The rat can reach the destination at (3, 3) from (0, 0) by two paths, i.e. DRDDRR and DDRDRR when printed in sorted order, we get DDRDRR DRDDRR.
Try solving now
03
Round
Easy
HR Round
Duration30 minutes
Interview date14 May 2023
Coding problem1

1. Basic HR Questions

How much salary do you expect?
Where do you see yourself five years from now?
On a scale of one to ten, rate me as an interviewer.
Do you have any questions for me?

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by OYO
4657 views
0 comments
0 upvotes
SDE - 1
3 rounds | 5 problems
Interviewed by Zarantech Software Private Limited
471 views
0 comments
0 upvotes
SDE - 1
2 rounds | 4 problems
Interviewed by Zarantech Software Private Limited
457 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 9 problems
Interviewed by Salesforce
3451 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Software Developer
5 rounds | 14 problems
Interviewed by Microsoft
3931 views
1 comments
0 upvotes
company logo
Software Developer
6 rounds | 12 problems
Interviewed by SAP Labs
2806 views
0 comments
0 upvotes
company logo
Software Developer
3 rounds | 3 problems
Interviewed by Amazon
1133 views
0 comments
0 upvotes