Upload Button Icon Add office photos

Filter interviews by

INCREFF Quality Assurance Interview Questions and Answers

Updated 3 Oct 2022

INCREFF Quality Assurance Interview Experiences

1 interview found

Round 1 - Aptitude Test 

12 mins 50 questions consisting of quant, lrdi, varc.

Round 2 - Coding Test 

2 coding questions, 3 SQL and 15 MCQs.

Round 3 - Technical 

(1 Question)

  • Q1. Discussion on projects. 3 questions on SQL and 1 coding question.
Round 4 - Technical 

(1 Question)

  • Q1. A question on Python (read CSV files) and form a table.

Interview Preparation Tips

Interview preparation tips for other job seekers - Leetcode Medium Questions. Good grasp on SQL,DBMS and Python.

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Jan 2022. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Basics on profile,work experience etc
  • Q2. Skills discussion based on role and resume
Round 2 - Coding Test 

DSA in preferred language, Java coding testt

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice coding online, brush up the basics, be confident

I applied via LinkedIn

Round 1 - One-on-one 

(1 Question)

  • Q1. About work background
Round 2 - Case Study 

Case study for understanding your analytical accumen

Round 3 - One-on-one 

(1 Question)

  • Q1. Why do you want to join?

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Case Study Presentation
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude test such as profit and loss , blood relations

Round 2 - Coding Test 

Questions on string and map

Round 3 - HR 

(1 Question)

  • Q1. Questions like will you be able to work after your assigned time

I applied via Recruitment Consulltant and was interviewed in Oct 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

The aptitude test was in online mode. There were 20 mcq questions and 5 coding questions ranging from easy to hard

Round 2 - Group Discussion 

After the Aptitude test, the gd was kept in offline mode ( at office ), the topic was "the pros and cons of online classes

Round 3 - Technical 

(1 Question)

  • Q1. In the 1st technical round, basic questions regarding the languages which i have mentioned in resume was asked. I mentioned python and C in my resume and a coding problem was asked to solve and to further ...
Round 4 - Technical 

(1 Question)

  • Q1. In the second technical OOPS concepts and DSA questions were asked

Interview Preparation Tips

Topics to prepare for Zopsmart Technology Software Developer interview:
  • DSA
  • Algorithms
  • Coding
  • resume
Interview preparation tips for other job seekers - If you pass the last technical round then you will be selected in HR round for the same.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How dis you tackle the one incident where you disagree with the team lead approach?
  • Q2. How do you make sure to deliver on time when there are uncertainty?
  • Ans. 

    To deliver on time despite uncertainty, I prioritize tasks, communicate effectively, set realistic deadlines, and have contingency plans.

    • Prioritize tasks based on importance and impact on project timeline

    • Communicate effectively with team members and stakeholders to address any uncertainties or roadblocks

    • Set realistic deadlines taking into account potential delays or uncertainties

    • Have contingency plans in place to mitig...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Find duplicates in an array
  • Ans. 

    Use a hash set to find duplicates in an array of strings.

    • Create a hash set to store unique elements.

    • Iterate through the array and check if the element is already in the hash set.

    • If it is, then it is a duplicate. If not, add it to the hash set.

  • Answered by AI
  • Q2. Find single duplicate element in an array where contents of the array are length of array - 1
  • Ans. 

    Find the single duplicate element in an array of strings with length n-1.

    • Iterate through the array and use a HashSet to keep track of elements seen so far.

    • If an element is already in the HashSet, that is the duplicate element.

    • Return the duplicate element once found.

  • Answered by AI
Round 2 - Assignment 

Create a student support system

Round 3 - One-on-one 

(1 Question)

  • Q1. Design an order and payments system for an EdTech company
  • Ans. 

    Design an order and payments system for an EdTech company

    • Allow users to browse and select courses

    • Implement a shopping cart for users to add courses

    • Integrate payment gateways for secure transactions

    • Provide order confirmation and receipt to users

    • Allow users to track their order status

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. About Myself in details
  • Q2. Past internships and work experiences
Round 2 - Technical 

(2 Questions)

  • Q1. Primary keys, Unique key
  • Q2. Usage advantages and disadvantages of Indexing
Round 3 - Coding Test 

SQL- 1 departments with no users
2 dept_id and their respective no. of users

DSA1: Most frequent no. in an array
DSA2: Zero Sum subarray exists

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basis DSA well
Interview experience
5
Excellent
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 

Computer Fundamentals

Round 2 - Technical 

(1 Question)

  • Q1. Flatten a binary tree
  • Ans. 

    Flatten a binary tree by converting it into a linked list in-place.

    • Use a recursive approach to flatten the binary tree.

    • Traverse the tree in a pre-order manner and keep track of the previous node.

    • Set the left child of each node to null and the right child to the next node in the linked list.

    • Example: Input: 1 -> 2 -> 5 -> 3 -> 4 -> null, Output: 1 -> null -> 2 -> null -> 3 -> null -> 4 -> null -> 5 -> null

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Basic questions of dbms ,os

Round 2 - One-on-one 

(2 Questions)

  • Q1. Delete middle node of linked list
  • Ans. 

    To delete the middle node of a linked list, we can iterate through the list to find the middle node and then remove it by adjusting the pointers.

    • Iterate through the linked list to find the middle node by using two pointers - one moving one node at a time and the other moving two nodes at a time.

    • Once the middle node is found, adjust the pointers to skip over the middle node and connect the nodes before and after it.

    • Hand...

  • Answered by AI
  • Q2. N queen problem

Interview Preparation Tips

Interview preparation tips for other job seekers - Be self-confident

Skills evaluated in this interview

INCREFF Interview FAQs

How many rounds are there in INCREFF Quality Assurance interview?
INCREFF interview process usually has 5 rounds. The most common rounds in the INCREFF interview process are Technical, Resume Shortlist and Aptitude Test.
What are the top questions asked in INCREFF Quality Assurance interview?

Some of the top questions asked at the INCREFF Quality Assurance interview -

  1. A question on Python (read CSV files) and form a tab...read more
  2. Discussion on projects. 3 questions on SQL and 1 coding questi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Flipkart Interview Questions
3.9
 • 1.3k Interviews
Paytm Interview Questions
3.3
 • 752 Interviews
Myntra Interview Questions
4.0
 • 215 Interviews
Nykaa Interview Questions
3.5
 • 114 Interviews
Snapdeal Interview Questions
3.8
 • 75 Interviews
Lido Learning Interview Questions
2.3
 • 55 Interviews
Pocket FM Interview Questions
2.8
 • 53 Interviews
View all

INCREFF Quality Assurance Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

4.0

Skill development

3.0

Work-life balance

3.0

Salary

3.0

Job security

3.0

Company culture

2.0

Promotions

4.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

Kissht Finance

3.9
Compare

Samunnati Financial Intermediation and Services

4.3
Compare

JoulestoWatts Business Solutions

2.9
Compare

MagicPin

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