Jivox interview experience Real time questions & tips from candidates to crack your interview

Senior Test Engineer

Jivox
upvote
share-icon
3 rounds | 4 Coding problems

Interview preparation journey

expand-icon
Journey
I had started my coding journey from 2nd year and still going on. I have solved 300questions in gfg, 400 in leetcode. 3 projects on web development. I have cracked total 5 companies throughout my journey.Companies- Infosys,InTimeTec,Byjus,Sony,Jivox. Got rejected from SAPLabs,Samsung(2 times), Amazon.
Application story
I applied this job thorough a linkedin. A guy referred me directly to his hiring manager. after one day i got a call from hiring manage and my interview got scheduled in the same week. all the process takes around only 5 days.
Why selected/rejected for the role?
I have total of 5 months experience in my last company on same role. so this is the main reason because i answered all the question related to my previous experience and i solved almost all the dsa questions in my interview.
Preparation
Duration: 1 month
Topics: JAVA, C++, OOPs, DSA, OS, CN, DBMS, Standard Algorithms
Tip
Tip

Tip 1 : Practice standard questions of Data Structure.
Tip 2 : you should have atleast 2 or 3 projects if you are a fresher.

Application process
Where: Campus
Eligibility: Need to have some experience in testing
Resume Tip
Resume tip

Tip 1 : Don't put false things in resume.
Tip 2 : good to have some projects and you should have some idea about the company and the job description. so that interviewer can relate with you.

Interview rounds

01
Round
Medium
Video Call
Duration60 minutes
Interview date3 Nov 2022
Coding problem2

It was in afternoon. Interviewer was very friendly. This round was based manly on coding area.They directly asked 2 standard coding question one by one.

1. Binary Linked List To Integer

Easy
0/40
Asked in companies
MicrosoftFacebookMcKinsey & Company

You are given a singly linked list containing ‘n’ nodes, where every node in the linked list contains a pointer “next” which points to the next node in the list and having values either 0 or 1. Your task is to return the decimal representation of the given number in the linked list.

For Example:
n = 4, list: 1 -> 0 -> 1 -> 0.

Now in this example, the value in the linked list is 1010, which is 10 in Decimal.
Hence the answer is 10.
Problem approach

eg :
1101 = 13
so first
in ans = head.val ( first value of linked list )
then travel the linked list
using for loop
and in for loop
do the sum of ans like
ans = ans2 + head.next.val;
we get
ans = 12 + 1 = 3 ----------------- in first loop
ans = 32 + 0 = 6 ------------------in seond loop
ans = 62 + 1 =13 ------------------in 3rd loop
so we got ans
Here is my code:
int ans =head.val;
while(head->next!=NULL){
ans = ans*2 + head.next.val;
head = head.next;
}
return ans;

Try solving now

2. Minimum Degree

Moderate
15m average time
85% success
0/80
Asked in companies
eBayVFISLK Global Services

You have an undirected graph with N nodes and M edges. The degree of the connected trio in the graph is the number of edges connected to the nodes of the trio where one node belongs to the node in the trio, while the other node doesn’t belong to the trio. Your task is to print the minimum degree of the connected trio.

Note:

A connected trio means a set of three nodes, where all three are interconnected.
Try solving now
02
Round
Easy
Video Call
Duration60 minutes
Interview date7 Nov 2022
Coding problem1

It was in evening. Interviewer was very friendly. This round was based manly on coding area.They directly asked 1 standard coding question.

1. Integer To Roman Numeral

Easy
10m average time
90% success
0/40
Asked in companies
AdobeFacebookPayPal

Given an integer ‘N’, the task is to find its corresponding Roman numeral.

Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M.

Symbol      Value
  I           1
  V           5
  X           10
  L           50
  C           100
  D           500
  M           1000

Example :

2 is written as II in the roman numeral, just two one’s added together. 
12 is written as XII, which is simply X(ten) + II(one+one). 
The number 27 is written as XXVII, which is XX + V + II.

Roman numerals are usually written largest to smallest from left to right. 
However, the numeral for four is not IIII. Instead, the number four is written as IV. Because the one is before the five we subtract it making four.
The same principle applies to the number nine, which is written as IX.

There are six instances where subtraction is used:

I can be placed before V (5) and X (10) to make 4 and 9.
X can be placed before L (50) and C (100) to make 40 and 90.
C can be placed before D (500) and M (1000) to make 400 and 900.
Problem approach

Stored values along with its roman number into 2 different list into decreasing order.
shrink the given integer till it becomes zero.

int[] values = { 1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4, 1 };
String[] romanLetters = { "M", "CM", "D", "CD", "C", "XC", "L", "XL", "X", "IX", "V", "IV", "I" };
StringBuilder sb = new StringBuilder();
for (int i = 0; i < values.length; i++) {
while (num >= values[i]) {
sb.append(romanLetters[i]);
num = num - values[i];
}
}
return sb.toString();

Try solving now
03
Round
Easy
HR Round
Duration30 minutes
Interview date8 Nov 2022
Coding problem1

It was in afternoon. this was my last round with the team manager. it was based on my previous experience and 1 puzzle.

1. Basic HR Questions

He asked me about myself.
Asked about previous experience.
Gave on puzzle.(25 horses in a race puzzle).

Problem approach

Tip 1 : Don't try to fake in managerial round.
Tip 2 : Be prepared on your projects and last experience.

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
4 rounds | 8 problems
Interviewed by Amazon
8518 views
0 comments
0 upvotes
Analytics Consultant
3 rounds | 10 problems
Interviewed by ZS
907 views
0 comments
0 upvotes
company logo
SDE - Intern
1 rounds | 3 problems
Interviewed by Amazon
3320 views
0 comments
0 upvotes
company logo
SDE - 2
4 rounds | 6 problems
Interviewed by Expedia Group
2581 views
0 comments
0 upvotes