Upload Button Icon Add office photos

Filter interviews by

Testhouse Associate Consultant Interview Questions and Answers

Updated 28 Nov 2024

Testhouse Associate Consultant Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Explain details about the projects that you have worked?
  • Q2. Banking and payments related questions like different types of payments flow within India or international.
  • Q3. Roles and responsibilities in your previous project.
Round 2 - HR 

(2 Questions)

  • Q1. Your working process in previous company.
  • Q2. How you collaborate in the team and basic question about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and have a good knowledge about the products that you have worked.

Interview questions from similar companies

I applied via Other and was interviewed in Mar 2018. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. How many members are there in your family.
  • Ans. 

    I have 4 members in my family including my parents, my younger sister, and myself.

    • My family consists of 4 members

    • Includes my parents, my younger sister, and myself

    • We are a close-knit family

  • Answered by AI

Interview Preparation Tips

General Tips: It can be a good start if you want to work as third party resource and wanted to be deployed at client side and the best part of Innominds that they train you before deploying at client side.
Skills: Communication, Problem Solving, Analytical Skills
Duration: 1-3 Months
Round 1 - Technical 

(1 Question)

  • Q1. He asked me to fined n prime number

Interview Preparation Tips

Interview preparation tips for other job seekers - Lean basic array string type questions.some SQL query please
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Normal aptitude questions

Round 2 - Coding Test 

Python basic and some basic coding questions

Round 3 - Coding Test 

Advance level coding question

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

I applied via Indeed and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basics of Python
  • Q2. Basics of Django
Round 2 - Technical 

(2 Questions)

  • Q1. Python concepts knowledge check
  • Q2. Django architecture and projects discussion
Round 3 - Behavioral 

(1 Question)

  • Q1. General communication about the role and previous experience
Round 4 - HR 

(1 Question)

  • Q1. Package negotiation and culture check
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Data structures algorithms
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Jan 2024.

Round 1 - Aptitude Test 

Logical reasoning questions (1-1.5 hours)

Round 2 - Coding Test 

DSA Questions(2 hours)

Round 3 - HR 

(2 Questions)

  • Q1. How soon I can start?
  • Q2. I am flexible with work timings?

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Medium

It was in the morning around 9:00Am-9:30AM. Platform used for this round was hacerrank. Questions were of moderate to difficult level.

  • Q1. 

    Count Subarrays with Given XOR Problem Statement

    You are given an array of integers ARR and an integer X. Your task is to determine the number of subarrays of ARR whose bitwise XOR is equal to X.

    Example...

  • Ans. 

    Count the number of subarrays in an array whose XOR is equal to a given value.

    • Iterate through the array and keep track of XOR values and their frequencies using a hashmap.

    • For each element in the array, calculate the XOR value with all previous elements and check if it equals the given XOR value.

    • Use the concept of XOR to efficiently solve the problem.

    • Handle edge cases like XOR value being 0 separately.

    • Time complexity ca...

  • Answered by AI
  • Q2. 

    Distinct Characters Problem Statement

    Given a string STR, return all possible non-empty subsequences with distinct characters. The order of the strings returned is not important.

    Example:

    Input:
    STR = ...
  • Ans. 

    Return all possible non-empty subsequences with distinct characters from a given string.

    • Iterate through all possible subsequences of the input string

    • Check for distinct characters in each subsequence

    • Return the distinct character subsequences as an array of strings

  • Answered by AI
Round 2 - HR 

Round duration - 15 minutes
Round difficulty - Easy

It was in the night around 8:00PM-8:20PM. Interviewer was very calm in questioning. Platform used for this round was Skype and the questions focused more on personality rather than total.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Developer in DelhiEligibility criteriaAbove 7 CGPAThink Future Technologies interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Algorithms, Dynamic Programming, AptitudeTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice aptitude questions a lot.
Tip 2 : Do some projects
Tip 3 : Research about company thoroughly

Application resume tips for other job seekers

Tip 1 : It should be in proper format.
Tip 2 : Each skills should be mentioned properly.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Sep 2020.

Round 1 - Coding Test 

Round duration - 50 minutes
Round difficulty - Medium

Round 2 - Face to Face 

(1 Question)

Round duration - 20 minutes
Round difficulty - Medium

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Given an array and a target sum, find pairs of elements that add up to the target sum.

    • Iterate through the array and for each element, check if the complement (target sum - current element) exists in a hash set.

    • If the complement exists, add the pair to the result list. Otherwise, add the current element to the hash set.

    • Sort the pairs based on the first element and then the second element to meet the required output form

  • Answered by AI
Round 3 - Face to Face 

Round duration - 20 minutes
Round difficulty - Easy

Round 4 - Face to Face 

(1 Question)

Round duration - 40 minutes
Round difficulty - Hard

  • Q1. Can you provide an example of how to use pointers in C/C++ and discuss different concepts related to them?
  • Ans. 

    Pointers in C/C++ are variables that store memory addresses. They are used to manipulate memory directly and improve performance.

    • Pointers are declared using an asterisk (*) before the variable name.

    • Pointers can be used to dynamically allocate memory using functions like malloc() and free().

    • Pointers can be used to pass variables by reference to functions.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Development in GurgaonEligibility criteriaAbove 7 CGPA, No backlogsThink Future Technologies interview preparation:Topics to prepare for the interview - Data Structures,OOPS, SQL Queries, Normalization,Software Development Life Cycles, PointersTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do atleast 1 project
Tip 2 : Practice Data structure programming questions
Tip 3 : Prepare concepts with examples (Coding/Numericals)

Application resume tips for other job seekers

Tip 1 : Mention Projects
Tip 2 : Mention only those technologies which you are confident enough.
Tip 3 : Mention extra curricular activities if have.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. It is very professional and discussion.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is good, got email from hr on selection. Took all documents and held the offer.

Testhouse Interview FAQs

How many rounds are there in Testhouse Associate Consultant interview?
Testhouse interview process usually has 2 rounds. The most common rounds in the Testhouse interview process are Technical and HR.

Tell us how to improve this page.

Testhouse Associate Consultant Interview Process

based on 3 interviews

Interview experience

4.7
  
Excellent
View more

Interview Questions from Similar Companies

Indium Software Interview Questions
4.0
 • 162 Interviews
HyScaler Interview Questions
4.5
 • 91 Interviews
Qualitest Interview Questions
3.6
 • 79 Interviews
Monotype Interview Questions
3.9
 • 23 Interviews
MulticoreWare Interview Questions
4.3
 • 23 Interviews
View all
Testhouse Associate Consultant Salary
based on 32 salaries
₹4 L/yr - ₹10 L/yr
21% less than the average Associate Consultant Salary in India
View more details

Testhouse Associate Consultant Reviews and Ratings

based on 3 reviews

4.6/5

Rating in categories

4.5

Skill development

4.5

Work-life balance

4.3

Salary

4.6

Job security

4.5

Company culture

4.6

Promotions

4.6

Work satisfaction

Explore 3 Reviews and Ratings
Senior Analyst
47 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Analyst
45 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
34 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Consultant
32 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Junior Analyst
31 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Testhouse with

Cigniti Technologies

3.7
Compare

Think Future Technologies

4.0
Compare

Indium Software

4.0
Compare

Qapitol Qa

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