Upload Button Icon Add office photos

INCREFF

Compare button icon Compare button icon Compare

Filter interviews by

INCREFF Interview Questions and Answers

Updated 2 Nov 2024
Popular Designations

6 Interview questions

A Software Developer was asked 10mo ago
Q. Given a grid with multiple products, starting from the top left, how do you reach the bottom right collecting the maximum number of products, moving only right or down?
Ans. 

Maximize product collection in a grid by moving right or down from top left to bottom right.

  • Use dynamic programming to store maximum products collected at each cell.

  • Initialize a 2D array 'dp' where dp[i][j] represents max products at cell (i, j).

  • Base case: dp[0][0] = grid[0][0].

  • For each cell, calculate dp[i][j] = grid[i][j] + max(dp[i-1][j], dp[i][j-1]).

  • Return dp[m-1][n-1] where m and n are grid dimensions.

View all Software Developer interview questions
A Software Developer Intern was asked 11mo ago
Q. How do you print the factorial of large numbers (e.g., 100)?
Ans. 

Use a big integer library to calculate factorial of large numbers like 100.

  • Use a big integer library like BigInteger in Java or BigInt in Python.

  • Implement a function to calculate factorial recursively or iteratively.

  • Handle large numbers by storing them in arrays or strings.

View all Software Developer Intern interview questions
A Software Developer Intern was asked 11mo ago
Q. Design the Ludo game and code its basic functionality, including test cases.
Ans. 

Design a Ludo game with basic functionalities like player movement, dice rolling, and win condition checks.

  • Players: 2-4 players can participate in the game.

  • Board: A square board with a cross-shaped path for each player.

  • Dice: A single die to determine the number of spaces a player moves.

  • Movement: Players move their tokens based on the dice roll, starting from the base.

  • Winning: The first player to get all their toke...

View all Software Developer Intern interview questions
A Software Developer Intern was asked 11mo ago
Q. Given an array of strings strs, group the anagrams together. You can return the answer in any order.
Ans. 

Group anagrams from a list of strings by sorting or using a frequency count.

  • Anagrams are words that can be rearranged to form each other, e.g., 'eat' and 'tea'.

  • Use a hashmap to group words by their sorted character string.

  • Example: Input: ['eat', 'tea', 'tan', 'ate', 'nat', 'bat'] Output: [['eat', 'tea', 'ate'], ['tan', 'nat'], ['bat']].

  • Alternatively, use a frequency count of characters to identify anagrams.

View all Software Developer Intern interview questions
A Software Developer was asked 10mo ago
Q. Differences between RAM, HDD and SSD.
Ans. 

RAM is volatile memory for temporary storage, HDD is non-volatile storage for long-term data, and SSD is a faster non-volatile storage.

  • RAM is volatile memory that stores data temporarily while the computer is on.

  • HDD is a non-volatile storage device that uses spinning disks to store data long-term.

  • SSD is a faster non-volatile storage device that uses flash memory for quicker access to data.

  • RAM is faster but more ex...

View all Software Developer interview questions
A Software Developer was asked 11mo ago
Q. Design in memory database
Ans. 

In-memory databases store data in main memory for faster access and retrieval.

  • Use data structures like hash tables or B-trees for efficient storage and retrieval of data

  • Implement caching mechanisms to reduce latency and improve performance

  • Consider data persistence strategies like periodic snapshots or write-ahead logging

  • Optimize memory usage by compressing data or using columnar storage formats

View all Software Developer interview questions

INCREFF Interview Experiences

26 interviews found

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

I applied via Campus Placement and was interviewed before Jul 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

45 questions time - 30min

Round 2 - Coding Test 

2 Medium Leetcode questions

Round 3 - Technical 

(2 Questions)

  • Q1. Print Factorial of large numbers(like 100)
  • Ans. 

    Use a big integer library to calculate factorial of large numbers like 100.

    • Use a big integer library like BigInteger in Java or BigInt in Python.

    • Implement a function to calculate factorial recursively or iteratively.

    • Handle large numbers by storing them in arrays or strings.

  • Answered by AI
  • Q2. Group Anagrams(leetcode medium)
  • Ans. 

    Group anagrams from a list of strings by sorting or using a frequency count.

    • Anagrams are words that can be rearranged to form each other, e.g., 'eat' and 'tea'.

    • Use a hashmap to group words by their sorted character string.

    • Example: Input: ['eat', 'tea', 'tan', 'ate', 'nat', 'bat'] Output: [['eat', 'tea', 'ate'], ['tan', 'nat'], ['bat']].

    • Alternatively, use a frequency count of characters to identify anagrams.

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Design Ludo game and code with basics functionailty(test cases)
  • Ans. 

    Design a Ludo game with basic functionalities like player movement, dice rolling, and win condition checks.

    • Players: 2-4 players can participate in the game.

    • Board: A square board with a cross-shaped path for each player.

    • Dice: A single die to determine the number of spaces a player moves.

    • Movement: Players move their tokens based on the dice roll, starting from the base.

    • Winning: The first player to get all their tokens to...

  • Answered by AI

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 17 Sep 2024

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

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

Round 1 - Assignment 

There were mcq related to Html, css ,js and data structures. along with 3 questions out of which 2 were data structures problems and 1 related to call api.

Round 2 - Technical 

(2 Questions)

  • Q1. Event loop, Javascript output based, closures, diff btw var let const, indexDb, and many more basic javascript concepts
  • Q2. 2 Dsa problems - 1 was related to stack , maximum product subarray
Round 3 - Technical 

(1 Question)

  • Q1. Generic js coding questions. checking the thought process

Interview Preparation Tips

Topics to prepare for INCREFF interview:
  • Javascript
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was a computer based aptitude test

Round 2 - Technical 

(2 Questions)

  • Q1. Guesstimates were asked in this round
  • Q2. Puzzles were asked in this round as well
Round 3 - One-on-one 

(2 Questions)

  • Q1. Case study was given
  • Q2. Daily sales of a top retail brand
  • Ans. 

    Analyzing daily sales data of a top retail brand to identify trends and patterns.

    • Collect daily sales data from the top retail brand

    • Analyze the data to identify trends and patterns in sales

    • Use data visualization tools to present findings to stakeholders

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Included questions on mathematical reasoning, OS, DBMS and two coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Differences between RAM, HDD and SSD.
  • Ans. 

    RAM is volatile memory for temporary storage, HDD is non-volatile storage for long-term data, and SSD is a faster non-volatile storage.

    • RAM is volatile memory that stores data temporarily while the computer is on.

    • HDD is a non-volatile storage device that uses spinning disks to store data long-term.

    • SSD is a faster non-volatile storage device that uses flash memory for quicker access to data.

    • RAM is faster but more expensi...

  • Answered by AI
  • Q2. Given a grid with multiple products and starting from top left, how to reach bottom right collecting max number of products, and moving only right or down.

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 11 Jun 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

2 rounds of aptitude tests focussing on your logical reasoning and EQ

Round 2 - HR 

(2 Questions)

  • Q1. Tell us something about yourself.
  • Q2. What do you know about us?
Round 3 - One-on-one 

(3 Questions)

  • Q1. Tell us something about yourself.
  • Q2. What do you know about us?
  • Q3. Why do you want to work with Increff?
Round 4 - One-on-one 

(2 Questions)

  • Q1. Aptitude related questions asked.
  • Q2. Situation based interview asked.
Round 5 - One-on-one 

(4 Questions)

  • Q1. Tell us something about yourself?
  • Q2. Why do you want to work in this dept and industry
  • Q3. What is your vision 5 years down the line.
  • Q4. Some aptitude and reasoning questions.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was a great round with medium - hard level leetcode questions from graph and binary search.

Round 2 - Technical 

(2 Questions)

  • Q1. N Queens problem standard
  • Q2. Some probability related question

Interview Preparation Tips

Interview preparation tips for other job seekers - Tip 1: Try thinking out loud
Tip 2: Look over the previous questions asked

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. DSA Questions on ant topic
Round 2 - Coding Test 

Graph, DP questions of hard level

SDE Interview Questions & Answers

user image Anonymous

posted on 2 Nov 2024

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

I applied via Referral and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

The test is moderate

Round 2 - Case Study 

Case study of vending machine

Interview Preparation Tips

Interview preparation tips for other job seekers - its good
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Contained aptitude questions followed by two coding questions.

Round 2 - Coding Test 

Contained Two coding questions

Round 3 - Group Discussion 

Contained project to find bugs

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Live Negotiation Question
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Aptitude test on theory topics and general aptitude

Round 3 - One-on-one 

(1 Question)

  • Q1. Binary search question
Round 4 - One-on-one 

(1 Question)

  • Q1. Design in memory database
  • Ans. 

    In-memory databases store data in main memory for faster access and retrieval.

    • Use data structures like hash tables or B-trees for efficient storage and retrieval of data

    • Implement caching mechanisms to reduce latency and improve performance

    • Consider data persistence strategies like periodic snapshots or write-ahead logging

    • Optimize memory usage by compressing data or using columnar storage formats

  • Answered by AI

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about INCREFF?
Ask anonymously on communities.

INCREFF Interview FAQs

How many rounds are there in INCREFF interview?
INCREFF interview process usually has 3-4 rounds. The most common rounds in the INCREFF interview process are Technical, One-on-one Round and Aptitude Test.
How to prepare for INCREFF interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at INCREFF. The most common topics and skills that interviewers at INCREFF expect are Merchandising, Inventory Management, Java, Python and SQL.
What are the top questions asked in INCREFF interview?

Some of the top questions asked at the INCREFF interview -

  1. Given a grid with multiple products and starting from top left, how to reach bo...read more
  2. Design Ludo game and code with basics functionailty(test cas...read more
  3. Print Factorial of large numbers(like 1...read more
How long is the INCREFF interview process?

The duration of INCREFF interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 20 interview experiences

Difficulty level

Easy 25%
Moderate 75%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

DotPe Interview Questions
3.1
 • 42 Interviews
Junglee Games Interview Questions
3.1
 • 34 Interviews
Hike Interview Questions
3.6
 • 32 Interviews
Ganit Inc Interview Questions
3.8
 • 26 Interviews
MindTickle Interview Questions
2.9
 • 25 Interviews
View all

INCREFF Reviews and Ratings

based on 75 reviews

2.6/5

Rating in categories

3.0

Skill development

2.7

Work-life balance

2.6

Salary

2.2

Job security

2.8

Company culture

2.1

Promotions

2.6

Work satisfaction

Explore 75 Reviews and Ratings
Business Analyst - Retail Merchandising

Bangalore / Bengaluru

0-2 Yrs

₹ 9.4-10 LPA

Sales - Key Account Manager

Bangalore / Bengaluru

4-9 Yrs

Not Disclosed

Intern - SDE 1 - Professional Services Team

Bangalore / Bengaluru

3-8 Yrs

Not Disclosed

Explore more jobs
Business Analyst
42 salaries
unlock blur

₹6 L/yr - ₹11.5 L/yr

Software Development Engineer
26 salaries
unlock blur

₹12 L/yr - ₹22.8 L/yr

Software Developer
25 salaries
unlock blur

₹10.5 L/yr - ₹23 L/yr

Software Engineer
23 salaries
unlock blur

₹12 L/yr - ₹22.5 L/yr

Sde1
19 salaries
unlock blur

₹13 L/yr - ₹18 L/yr

Explore more salaries
Compare INCREFF with

JoulestoWatts Business Solutions

3.0
Compare

DotPe

3.1
Compare

Thoughtsol Infotech

4.6
Compare

11:11 Systems

3.7
Compare
write
Share an Interview