Upload Button Icon Add office photos

Filter interviews by

Testhouse Interview Questions and Answers for Freshers

Updated 28 Nov 2024

Testhouse Interview Experiences for Freshers

Popular Designations

2 interviews found

Interview Questions & Answers

user image DEATH KNELL

posted on 22 May 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Setset se tse set set se tse set se sets
  • Q2. Et est est se se se se s
  • Q3. Se sets et t

Consultant Interview Questions & Answers

user image Anonymous

posted on 26 Nov 2022

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 - One-on-one 

(2 Questions)

  • Q1. Tell Me something about yourself.
  • Ans. 

    I am a highly experienced consultant with a strong background in problem-solving and strategic planning.

    • Over 10 years of experience in consulting for various industries

    • Expertise in analyzing complex business problems and providing effective solutions

    • Proven track record of successfully leading teams and managing projects

    • Strong communication and presentation skills

    • Ability to build and maintain strong client relationships

    • ...

  • Answered by AI
  • Q2. Why do you want to join this company?
  • Ans. 

    I want to join this company because of its strong reputation, diverse client base, and opportunities for professional growth.

    • Strong reputation: The company has a proven track record of success and is highly regarded in the industry.

    • Diverse client base: Working with a wide range of clients will provide me with valuable experience and the opportunity to learn from different industries and challenges.

    • Professional growth: ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Give your best! Things will fall in place automatically

Consultant Interview Questions asked at other Companies

Q1. How would you pass an entry for travel expenses incurred and paid by employee and was reimbursed? How would the end to end flow happens
View answer (8)

Jobs at Testhouse

View all

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

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.

I applied via Naukri.com and was interviewed in Aug 2019. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java memory management, Kotlin language specific questions, Data structures, Algorithms, Array manipulation, time complexities of algorithms

Interview Preparation Tips

Interview preparation tips for other job seekers - Just crack the test interview is not that hard for freshee, for experienced guys you'll have to deal with a tough technical guy so be prepared

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Mainly about framework and protractor details.

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 3 rounds of technical interview. One HR interview. Processing was very nice and fast. I got the offer within a week. Client interview round was very nice. If you have indepth knowledge and understanding then you definitely crack the interview.

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 70 Minutes
Round difficulty - Hard

  • Q1. 

    Candies Distribution Problem Statement

    Prateek is a kindergarten teacher with a mission to distribute candies to students based on their performance. Each student must get at least one candy, and if two s...

  • Ans. 

    The task is to distribute candies to students based on their performance while minimizing the total candies distributed.

    • Create an array to store the minimum candies required for each student.

    • Iterate through the students' ratings array to determine the minimum candies needed based on the adjacent ratings.

    • Consider both left-to-right and right-to-left passes to ensure fair distribution.

    • Keep track of the total candies dist

  • Answered by AI
  • Q2. 

    Merge Sort Problem Statement

    You are given a sequence of numbers, ARR. Your task is to return a sorted sequence of ARR in non-descending order using the Merge Sort algorithm.

    Explanation:

    The Merge Sort...

  • Ans. 

    Implement Merge Sort algorithm to sort a sequence of numbers in non-descending order.

    • Use Divide and Conquer approach to recursively divide the input array into two halves.

    • Merge the sorted halves to produce a completely sorted array.

    • Ensure the implementation handles the constraints specified in the problem statement.

    • Example: For input [3, 1, 4, 1, 5], the output should be [1, 1, 3, 4, 5].

  • Answered by AI

Interview Preparation Tips

Eligibility criteria8CGPAThink Future Technologies interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming, apti , programming language , SETime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do atleast 2 projects

Application resume tips for other job seekers

Tip 1 : Do not put false things on resume.
Tip 2 : Have some projects on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Round 1 - Group Discussion 

Nothing

Round 2 - Technical 

(1 Question)

  • Q1. Python Sql Linux CLI
Round 3 - One-on-one 

(1 Question)

  • Q1. General discussions on learning

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and answerything you will clear
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 - One-on-one 

(2 Questions)

  • Q1. Golang basics related questions
  • Q2. Concurrency related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Take offer from them but join them. Interviewer was too cocky to see that there can be other ways also.

Testhouse Interview FAQs

How many rounds are there in Testhouse interview for freshers?
Testhouse interview process for freshers usually has 1-2 rounds. The most common rounds in the Testhouse interview process for freshers are Technical, Resume Shortlist and One-on-one Round.
How to prepare for Testhouse interview for freshers?
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 Testhouse. The most common topics and skills that interviewers at Testhouse expect are Software Testing, Automation Testing, C#, Cold Calling and Email Marketing.
What are the top questions asked in Testhouse interview for freshers?

Some of the top questions asked at the Testhouse interview for freshers -

  1. Banking and payments related questions like different types of payments flow wi...read more
  2. setset se tse set set se tse set se s...read more
  3. What is csv of pha...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Indium Software Interview Questions
4.0
 • 161 Interviews
HyScaler Interview Questions
4.5
 • 90 Interviews
Qualitest Interview Questions
3.6
 • 79 Interviews
Qapitol Qa Interview Questions
3.5
 • 18 Interviews
ZenQ Interview Questions
4.2
 • 18 Interviews
ImpactQA Interview Questions
3.1
 • 7 Interviews
View all

Testhouse Reviews and Ratings

based on 65 reviews

3.4/5

Rating in categories

3.5

Skill development

3.5

Work-life balance

3.1

Salary

3.5

Job security

3.5

Company culture

3.2

Promotions

3.3

Work satisfaction

Explore 65 Reviews and Ratings
Sales Director - US/Australia Market

Delhi/Ncr,

Thiruvananthapuram

+1

10-17 Yrs

₹ 20-30 LPA

Test Automation Lead

Thiruvananthapuram,

Bangalore / Bengaluru

6-10 Yrs

Not Disclosed

Explore more jobs
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