Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Jivox Senior Associate Developer Interview Questions and Answers

Updated 21 Jan 2022

Jivox Senior Associate Developer Interview Experiences

1 interview found

Round 1 - HR 

(4 Questions)

  • Q1. What are your strengths and weaknesses?
  • Q2. What is your family background?
  • Q3. Why should we hire you?
  • Q4. Tell me about yourself.
Round 2 - One-on-one 

(2 Questions)

  • Q1. One on one with India office head
  • Q2. About myself, strength, college project, about the company

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, be honest and share all the project details you have done before.

Interview questions from similar companies

Interview Questionnaire 

3 Questions

  • Q1. N a line where words are separated by spaces, , and capitalize first letter of the reversed word. Other letters of the word should be in small. Input : “how are you?” → Output: “Woh Era ?uoy”
  • Ans. 

    The program capitalizes the first letter of each reversed word in a sentence.

    • Split the sentence into an array of words using space as a delimiter.

    • Reverse each word in the array and capitalize the first letter.

    • Join the modified words back into a sentence.

  • Answered by AI
  • Q2. He second question reduced to finding maximum weight matching in a bipartite graph. Not many people would have done this (maybe none)
  • Q3. There are 2 sets of countries. One set will donate clothes (something of this sort) and anotherset will accept clothes. A country can be in only 1 of the sets. The amount of clothes donated is also given. ...

Interview Preparation Tips

Round: Test
Experience: There were about 20 MCQs (30 minutes) to be done after the coding section. MCQs were totally nonsense. Can be done in 10 mins.For coding section 60 mins.  It was hosted on Hackerrank.
Duration: 90 minutes
Total Questions: 2

Round: Technical Interview
Experience: After this, selected candidates were interviewed that consists of 4 rounds and discussion was mostly on your CV and data structure problems.

General Tips: Be honest with your interviewer. If you are not comfortable in 1 topic, tell your interviewer honestly. Do well in other areas. Look for hints from the interviewer if you get stuck. They want to see how you approach a problem.
Skills: Algortihm, Data structure
College Name: IIT DELHI

I applied via Naukri.com and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Resume, achievements, market dynamics
  • Q2. Case studies on Market operations , targets achievements

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, Answer politely and clearly...Dont beat on the bush
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Feb 2024.

Round 1 - Aptitude Test 

English and reasoning

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Aptitude questions with 2-3 coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Input-wwwrrrrttttuu Output - w3r4t4u2
  • Q2. Interpreter vs compiler
  • Ans. 

    Interpreter executes code line by line, compiler translates code into machine code before execution.

    • Interpreter translates code into machine code line by line during runtime

    • Compiler translates code into machine code before execution

    • Interpreted languages include Python, JavaScript

    • Compiled languages include C, C++

  • Answered by AI

I applied via Campus Placement and was interviewed in Sep 2021. There was 1 interview round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with DSA and low level design. Also have a good idea about Computer science fundamentals .
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Question related to tree and graph

Round 2 - Coding Test 

Question related to array and tree

Round 3 - Behavioral 

(1 Question)

  • Q1. Question related to projects, puzzles, one dsa as well
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Questions were related to tree
Round 2 - One-on-one 

(1 Question)

  • Q1. Designing of chess
  • Ans. 

    Designing a chess game involves creating a board with 64 squares, defining the movement rules for each piece, implementing game logic, and designing a user interface.

    • Create a 8x8 board with alternating colors for squares

    • Define movement rules for each type of chess piece (pawn, rook, knight, bishop, queen, king)

    • Implement game logic for capturing pieces, checkmate, stalemate

    • Design a user interface for players to interact

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Write a code in c c++ or any other language to validate all use cases for an ip address given as input string. Output will be yes or no.
  • Ans. 

    Code to validate all use cases for an IP address input string and output yes or no.

    • Use regular expressions to match the input string against the valid IP address pattern.

    • Check for valid ranges of each octet (0-255) and proper formatting (4 octets separated by periods).

    • Handle edge cases like leading zeros, extra spaces, and invalid characters.

    • Return 'yes' if the input string is a valid IP address, otherwise return 'no'.

  • Answered by AI
  • Q2. Given 2 sorted integer array print the common value between them. 2 to 3 optimized ways.
  • Ans. 

    Find common values in two sorted integer arrays efficiently.

    • Use two pointers approach to iterate through both arrays simultaneously.

    • If the current values are equal, add it to the result and move both pointers forward.

    • If the current values are not equal, move the pointer of the array with the smaller value forward.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Reverse link list
  • Q2. Count number of digits
  • Ans. 

    Count the number of digits in a given string

    • Iterate through each character in the string

    • Check if the character is a digit using isdigit() function

    • Increment a counter if the character is a digit

    • Return the final count of digits

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is Apache Kafka?
  • Ans. 

    Apache Kafka is a distributed streaming platform used for building real-time data pipelines and streaming applications.

    • Apache Kafka is designed to handle high-throughput, fault-tolerant, and scalable real-time data streams.

    • It allows for the publishing and subscribing to streams of records, similar to a message queue.

    • Kafka is often used for log aggregation, stream processing, event sourcing, and real-time analytics.

    • It p...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. How do you manage stress?

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Jivox Interview FAQs

How many rounds are there in Jivox Senior Associate Developer interview?
Jivox interview process usually has 2 rounds. The most common rounds in the Jivox interview process are HR and One-on-one Round.

Recently Viewed

INTERVIEWS

Z1 Tech

No Interviews

SALARIES

Wood Group

SALARIES

Wood Group

INTERVIEWS

Amitoje India

No Interviews

INTERVIEWS

Amitoje India

No Interviews

INTERVIEWS

Z1 Tech

No Interviews

INTERVIEWS

Liqvd Asia

No Interviews

INTERVIEWS

Xapads Media

No Interviews

INTERVIEWS

Liqvd Asia

No Interviews

DESIGNATION

Tell us how to improve this page.

Interview Questions from Similar Companies

3 Minds Digital Interview Questions
4.4
 • 65 Interviews
InMobi Interview Questions
3.5
 • 35 Interviews
PubMatic Interview Questions
3.9
 • 30 Interviews
Moris Media Interview Questions
4.3
 • 24 Interviews
Cheil India Interview Questions
3.1
 • 17 Interviews
CleverTap Interview Questions
3.6
 • 15 Interviews
Z1 Tech Interview Questions
4.0
 • 11 Interviews
Bikayi Interview Questions
2.9
 • 10 Interviews
View all
Software Engineer
26 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Developer Associate
21 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Accounts Manager
18 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Jivox with

InMobi

3.5
Compare

Komli Media

4.0
Compare

Affle

3.1
Compare

Amagi Media Labs

3.3
Compare
Did you find this page helpful?
Yes No
write
Share an Interview