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

Product Intern

Innovaccer
upvote
share-icon
2 rounds | 7 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 3 months
Topics: Data Structures(Arrays, Linked lists, maps), Pointers, OOPS, Backend Basics
Tip
Tip

Tip 1 : Basic of DSA should be clear
Tip 2 : Dry the code
Tip 3 : Cover all test cases

Application process
Where: Linkedin
Eligibility: 7 CGPA, 3rd year student
Resume Tip
Resume tip

Tip 1: Mention at least one project
Tip 2: Do add too many extracurricular activities

Interview rounds

01
Round
Easy
Online Coding Interview
Duration60 mins
Interview date10 Feb 2021
Coding problem2

The round was at 2 pm and a proctored exam.

1. 0 1 Knapsack

Moderate
0/80
Asked in companies
AmazonTwitterInnovaccer

A thief is robbing a store and can carry a maximum weight of ‘W’ into his knapsack. There are 'N' items available in the store and the weight and value of each item is known to the thief. Considering the constraints of the maximum weight that a knapsack can carry, you have to find the maximum profit that a thief can generate by stealing items.

Note: The thief is not allowed to break the items.

For example, N = 4, W = 10 and the weights and values of items are weights = [6, 1, 5, 3] and values = [3, 6, 1, 4]. Then the best way to fill the knapsack is to choose items with weight 6, 1 and 3. The total value of knapsack = 3 + 6 + 4 = 13.

Try solving now

2. Maximum Product Subarray

Moderate
25m average time
75% success
0/80
Asked in companies
InnovaccerAmazonMicrosoft

You are given an array “arr'' of integers. Your task is to find the contiguous subarray within the array which has the largest product of its elements. You have to report this maximum product.

An array c is a subarray of array d if c can be obtained from d by deletion of several elements from the beginning and several elements from the end.

For e.g.- The non-empty subarrays of an array [1,2,3] will be- [1],[2],[3],[1,2],[2,3],[1,2,3]. 
For Example:
If arr = {-3,4,5}.
All the possible non-empty contiguous subarrays of “arr” are {-3}, {4}, {5}, {-3,4}, {4,5} and {-3,4,5}.
The product of these subarrays are -3, 4, 5, -12, 20 and -60 respectively.
The maximum product is 20. Hence, the answer is 20.
Follow Up:
Can you solve this in linear time and constant space complexity?
Try solving now
02
Round
Easy
Video Call
Duration60 mins
Interview date4 Mar 2021
Coding problem5

It was at 3:30 pm
Fast paced with video on

1. Puzzle

Puzzle similar to: A couple invites n – 1 other couples to dinner. Once everyone arrives, each person shakes hands with everyone he doesn’t know. Then, the host asks everyone how many hands they shook and each person replies with a different number. Assuming that everyone knows his or her own spouse, how many hands did the hostess shake?

2. Reverse Linked List

Moderate
15m average time
85% success
0/80
Asked in companies
DelhiveryOracleCIS - Cyber Infrastructure

Given a singly linked list of integers. Your task is to return the head of the reversed linked list.

For example:
The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -> 2 -> 1 -> NULL and the head of the reversed linked list will be 4.
Follow Up :
Can you solve this problem in O(N) time and O(1) space complexity?
Try solving now

3. Sort linked list of 0s 1s 2s

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

Given a linked list of 'N' nodes, where each node has an integer value that can be 0, 1, or 2. You need to sort the linked list in non-decreasing order and the return the head of the sorted list.


Example:
Given linked list is 1 -> 0 -> 2 -> 1 -> 2. 
The sorted list for the given linked list will be 0 -> 1 -> 1 -> 2 -> 2.


Try solving now

4. DBMS

Joins, ACID properties, Normalization

5. Technical Questions

Basic of backend technologies like
http vs https
all about node js, APIs

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 the purpose of the return keyword?

Choose another skill to practice
Similar interview experiences
company logo
Associate Software Engineer
2 rounds | 3 problems
Interviewed by Innovaccer
1770 views
0 comments
0 upvotes
company logo
SDE - Intern
2 rounds | 3 problems
Interviewed by Innovaccer
1002 views
0 comments
0 upvotes
company logo
SRE
3 rounds | 6 problems
Interviewed by Innovaccer
1028 views
0 comments
0 upvotes
company logo
SDE - 2
2 rounds | 3 problems
Interviewed by Innovaccer
1306 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Product Intern
2 rounds | 8 problems
Interviewed by Adobe
2086 views
0 comments
0 upvotes
company logo
Product Intern
2 rounds | 4 problems
Interviewed by Adobe
1819 views
0 comments
0 upvotes
company logo
Product Intern
2 rounds | 3 problems
Interviewed by Adobe
1610 views
0 comments
0 upvotes