Upload Button Icon Add office photos

Filter interviews by

INCREFF Software Developer Intern Interview Questions and Answers

Updated 31 Jul 2024

INCREFF Software Developer Intern Interview Experiences

1 interview found

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

I applied via campus placement at National Institute of Technology (NIT), Jamshedpur 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)
Round 4 - Technical 

(1 Question)

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

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via campus placement at Galgotias College of Engineering and Technology, Greater Noida and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on DSA were asked by the interviewer at first.
  • Q2. Some theoretical questions from DBMS and oops and also asked to write some SQL queries.
Round 2 - Technical 

(2 Questions)

  • Q1. This round was also similar to the first technical round at first given a DSA question.
  • Q2. After that I was asked to write some SQL queries and also questions from resume were asked.
Round 3 - One-on-one 

(2 Questions)

  • Q1. This was managerial round which was was offline in person interview. At first he asked sone basic DBMS and oops questions.
  • Q2. Then gave me a question and asked me to write a complex SQL query.

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up DSA and work on SQL queries.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at KIIT University, Bhuvaneshwar and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Medium level coding questions on hackerrank ,1:30hr, topic- Array , DP , Matrix , Binary Search

Round 2 - Technical 

(1 Question)

  • Q1. Was Asked to Implement Hashmap and Question on OOPS and Dbms , SQL and Indexing
Round 3 - Technical 

(2 Questions)

  • Q1. Brief Introduction
  • Q2. Rotten Oranges and basics of bfs and DFS

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(4 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing was 10AM. The platform was quite good.

  • Q1. 

    Maximum Size Rectangle Sub-matrix with All 1's Problem Statement

    You are provided with an N * M sized binary matrix 'MAT' where 'N' denotes the number of rows and 'M' denotes the number of columns. Your t...

  • Q2. 

    Binary Tree Maximum Path Sum Problem Statement

    Determine the maximum path sum for any path in a given binary tree with 'N' nodes.

    Note:

    • A 'path' is defined as any sequence of adjacent nodes connected...
  • Q3. 

    Minimum Number of Swaps to Sort an Array

    Find the minimum number of swaps required to sort a given array of distinct elements in ascending order.

    Input:

    T (number of test cases)
    For each test case:
    N (siz...
  • Q4. 

    Infix to Postfix Conversion

    Convert a given infix expression, represented as a string EXP, into its equivalent postfix expression.

    Explanation:

    An infix expression is formatted as a op b where the opera...

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in DelhiEligibility criteriaAbove 7 CGPAHike interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Do at least 1 project.
Tip 2 : Practice data structure questions.
Tip 3 : Dynamic programming is must.

Application resume tips for other job seekers

Tip 1 : Do not put false things.
Tip 2 : Keep it short and direct.

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 70 Minutes
Round difficulty - Medium

Timing was 9:15AM. Platform was not very good. Questions were not well explained.

  • Q1. 

    Merge Overlapping Intervals Problem Statement

    Given a specified number of intervals, where each interval is represented by two integers denoting its boundaries, the task is to merge all overlapping interv...

  • Ans. Brute Force
    1. We are given the function MERGEINTERVALS(), which takes a 2D vector representing the vector of intervals and returns another 2D vector which is the vector of merged intervals.
    2. We create another function ISOVERLAP() to check if the current interval overlaps with the other interval.
    3. Now we create an empty 2D vector “RES” to store finally merged intervals and another boolean vector “VIS” to mark if the current in...
  • Answered Anonymously
  • Q2. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

  • Ans. Bactracking

    Approach: We can start the traversal of the paths from the rat’s starting position, i.e. (0,0) keeping track of the visited cells during the traversal. We will recursively go through all the paths possible until the last index of the grid (destination) is reached, and add the path information using which the rat successfully reached the end.

     

    Algorithm is as follows:

     

    1. Take the starting position of th...
  • Answered Anonymously
  • Q3. 

    Problem: Permutations of a String

    Given a string STR consisting of lowercase English letters, your task is to return all permutations of the given string in lexicographically increasing order.

    Explanatio...

  • Ans. Backtracking

    The idea is to fix a character at a position and then find the permutations for rest of the characters.

    Make a list ‘ans’ which will contain the permutations of the given string.

     

    Algorithm:

    Let’s define a function generatePermutaionsHelper(Str, l, r). This function generates the permutations of the substring which starts from index  ‘l’ and ends at index  ‘r’.

    • Call the function: generatePermutai...
  • Answered Anonymously

Interview Preparation Tips

Eligibility criteria8 CGPALido Learning interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Core Java, Algorithms, PointersTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Prepare maximum algorithms.
Tip 2 : Deep knowledge of data structure. 
Tip 3 : OOPS is must.

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Mention only your own projects.

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed before Jun 2016.

Interview Questionnaire 

5 Questions

  • Q1. Knowledge of Java
  • Q2. Knowledge of Python
  • Q3. Knowledge of PHP
  • Q4. My team working skills
  • Q5. Ability to handle pressure
  • Ans. 

    I have the ability to handle pressure effectively.

    • I remain calm and focused in high-pressure situations.

    • I prioritize tasks and manage my time efficiently.

    • I seek support and guidance from team members when needed.

    • I maintain a positive attitude and adapt to changing circumstances.

    • I have successfully completed projects under tight deadlines.

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: The interview was interactive and the interviewers seemed interested for every answer I gave even if it was a wrong one. They corrected me at every step.

Round: Technical + HR Interview
Experience: This was basically for testing my moral towards working and how i cope up with other colleagues.

College Name: Ramaiah Institute Of Technology
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Technical round
  • Q2. Append element into Array question
Round 2 - One-on-one 

(1 Question)

  • Q1. Vector question on array
Round 3 - One-on-one 

(1 Question)

  • Q1. Vector based question less time complexity

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(4 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing was 10AM. The platform was quite good.

  • Q1. 

    Maximum Size Rectangle Sub-Matrix with All 1's

    Given an N x M binary matrix 'MAT', where N is the number of rows and M is the number of columns, determine the maximum area of a submatrix consisting entire...

  • Ans. 

    If the height of bars of the histogram is given then the largest area of the histogram can be found. This way in each row, the largest area of bars of the histogram can be found. To get the largest rectangle full of 1’s, update the next row with the previous row and find the largest area under the histogram, i.e. consider each 1’s as filled squares and 0’s with an empty square and consider each row as the base.

  • Answered Anonymously
  • Q2. 

    Maximum Sum Path in a Binary Tree

    Your task is to determine the maximum possible sum of a simple path between any two nodes (possibly the same) in a given binary tree of 'N' nodes with integer values.

    Ex...

  • Ans. 

    For each node there can be four ways that the max path goes through the node:
    1. Node only
    2. Max path through Left Child + Node
    3. Max path through Right Child + Node
    4. Max path through Left Child + Node + Max path through Right Child

  • Answered Anonymously
  • Q3. 

    Minimum Number of Swaps to Sort an Array

    Find the minimum number of swaps required to sort a given array of distinct elements in ascending order.

    Input:

    T (number of test cases)
    For each test case:
    N (siz...
  • Ans. 

    This can be easily done by visualizing the problem as a graph. We will have n nodes and an edge directed from node i to node j if the element at i’th index must be present at j’th index in the sorted array.

  • Answered Anonymously
  • Q4. 

    Prefix to Infix Conversion

    Transform a string representing a valid Prefix expression, which may contain operators '+', '-', '*', '/', and uppercase letters, into its corresponding Infix expression.

    Examp...

  • Ans. 

    Algorithm for Prefix to Infix:

    Read the Prefix expression in reverse order (from right to left)
    If the symbol is an operand, then push it onto the Stack
    If the symbol is an operator, then pop two operands from the Stack
    Create a string by concatenating the two operands and the operator between them.
    string = (operand1 + operator + operand2)
    And push the resultant string back to Stack
    Repeat the above steps until end of Prefix

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. I applied for the job as SDE - Intern in New DelhiEligibility criteriaAbove 8 CGPAHike interview preparation:Topics to prepare for the interview - Data Structure,OOPS, Java, Graphs, PointersTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do at least 1 project.
Tip 2 : Practice data structure questions.
Tip 3 : Dynamic programming is must.

Application resume tips for other job seekers

Tip 1 : Do not put false things.
Tip 2 : Keep it short and direct.

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 70 minutes
Round difficulty - Medium

Timing was 9:15AM. Platform was not very good. Questions were not well explained.

  • Q1. 

    Merge Overlapping Intervals Problem Statement

    Given a specified number of intervals, where each interval is represented by two integers denoting its boundaries, the task is to merge all overlapping interv...

  • Q2. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

Interview Preparation Tips

Eligibility criteria8 CGPALido Learning interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Core Java, Algorithms, PointersTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare maximum algorithms.
Tip 2 : Deep knowledge of data structure.
Tip 3 : OOPS is must.

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Mention only your own projects.

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(4 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing was 10AM. The platform was user-friendly.

  • Q1. 

    Maximum Size Rectangle Sub-matrix with All 1's Problem Statement

    You are provided with an N * M sized binary matrix 'MAT' where 'N' denotes the number of rows and 'M' denotes the number of columns. Your t...

  • Q2. 

    Binary Tree Maximum Path Sum Problem Statement

    Determine the maximum path sum for any path in a given binary tree with 'N' nodes.

    Note:

    • A 'path' is defined as any sequence of adjacent nodes connected...
  • Q3. 

    Minimum Number of Swaps to Sort an Array

    Find the minimum number of swaps required to sort a given array of distinct elements in ascending order.

    Input:

    T (number of test cases)
    For each test case:
    N (siz...
  • Q4. 

    Prefix to Infix Conversion

    Transform a string representing a valid Prefix expression, which may contain operators '+', '-', '*', '/', and uppercase letters, into its corresponding Infix expression.

    Examp...

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in New DelhiEligibility criteriaAbove 8 cgpaHike interview preparation:Topics to prepare for the interview - Data stucture , pointer , tree ,Core java ,OopsTime required to prepare for the interview - 15 daysInterview preparation tips for other job seekers

Tip 1 : Atleast 1 project
Tip 2 : Practice data structures
 

Application resume tips for other job seekers

Tip 1 : Keep it short
Tip 2 : Don't put false information

Final outcome of the interviewRejected

Skills evaluated in this interview

INCREFF Interview FAQs

How many rounds are there in INCREFF Software Developer Intern interview?
INCREFF interview process usually has 4 rounds. The most common rounds in the INCREFF interview process are Technical, Aptitude Test and Coding Test.
What are the top questions asked in INCREFF Software Developer Intern interview?

Some of the top questions asked at the INCREFF Software Developer Intern interview -

  1. Print Factorial of large numbers(like 1...read more
  2. Design Ludo game and code with basics functionailty(test cas...read more
  3. Group Anagrams(leetcode medi...read more

Tell us how to improve this page.

INCREFF Software Developer Intern Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

INCREFF Software Developer Intern Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

2.0

Skill development

5.0

Work-life balance

3.0

Salary

1.0

Job security

3.0

Company culture

1.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Business Analyst
36 salaries
unlock blur

₹6.6 L/yr - ₹10.7 L/yr

Software Engineer
25 salaries
unlock blur

₹9 L/yr - ₹22.8 L/yr

Software Developer
25 salaries
unlock blur

₹10.5 L/yr - ₹23 L/yr

Software Development Engineer
25 salaries
unlock blur

₹12 L/yr - ₹22.8 L/yr

Sde1
16 salaries
unlock blur

₹12 L/yr - ₹18 L/yr

Explore more salaries
Compare INCREFF with

Myntra

4.0
Compare

Flipkart

4.0
Compare

Snapdeal

3.8
Compare

Shopclues

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