Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by TechStar Group Team. If you also belong to the team, you can get access from here

TechStar Group Verified Tick

Compare button icon Compare button icon Compare
4.0

based on 121 Reviews

Filter interviews by

TechStar Group Specialist Testing Interview Questions and Answers

Updated 20 Apr 2023

TechStar Group Specialist Testing Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed before Apr 2022. There were 3 interview rounds.

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 - Coding Test 

Coding and technical discussion

Round 3 - Technical 

(1 Question)

  • Q1. Basic networking and programming

Interview questions from similar companies

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

I applied via campus placement at Karmaveer Bhaurao Patil College of Engineering, Satara

Round 1 - Aptitude Test 

The assessment consists of a one-hour aptitude test that includes questions on data structures and algorithms (DSA) as well as SQL query questions, where I am required to write SQL queries, followed by two coding questions.

Round 2 - Group Discussion 

Our group discussion topic is whether AI can replace human intelligence.

Round 3 - Technical 

(3 Questions)

  • Q1. Oops concept in java
  • Ans. 

    Oops concept in Java refers to Object-Oriented Programming principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation refers to bundling data and methods that operate on the data into a single unit.

    • Polymorphism allows objects to be treated as instances of their parent class.

    • Abstraction hides the implementation ...

  • Answered by AI
  • Q2. What is compile time polymorphism
  • Ans. 

    Compile time polymorphism is the ability of a programming language to select which method to execute at compile time based on the method signature.

    • Compile time polymorphism is achieved through method overloading and operator overloading.

    • Method overloading allows multiple methods in the same class with the same name but different parameters.

    • The compiler determines which method to call based on the number and type of arg...

  • Answered by AI
  • Q3. What is the SQL query to select and display the name of person who have highest salary among employees?
  • Ans. 

    SQL query to select and display the name of person with highest salary among employees.

    • Use the MAX() function to find the highest salary

    • Join the employee table with the salary table using a common key like employee_id

    • Select the name of the person with the highest salary

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Tell me about yourself. then about final year project.
  • Ans. 

    I am a dedicated QA Automation Testing Engineer with experience in creating and executing test cases. My final year project involved developing a test automation framework using Selenium.

    • Experienced QA Automation Testing Engineer

    • Skilled in creating and executing test cases

    • Developed test automation framework using Selenium for final year project

  • Answered by AI
  • Q2. What is your family background, and are you prepared to relocate?
  • Ans. 

    I come from a close-knit family with a diverse background. I am open to relocating for the right opportunity.

    • Family background is close-knit and diverse

    • Open to relocating for the right opportunity

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

Hacker rank test given

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 2023. There were 3 interview rounds.

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 - Technical 

(1 Question)

  • Q1. What is inheritance. What is Java
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a class acquires the properties of another class.

    • Inheritance allows for code reusability and promotes a hierarchical organization of code.

    • The class that is being inherited from is called the superclass or parent class, while the class that inherits is called the subclass or child class.

    • The subclass can access all the public and protected methods and variab...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. What is testing. What is git.
  • Ans. 

    Testing is the process of evaluating a system or its component(s) with the intent to find whether it satisfies the specified requirements or not.

    • Testing is done to identify defects or errors in software

    • It involves executing a system or application with the intent of finding bugs

    • Testing can be done manually or through automated tools

    • Types of testing include functional, performance, security, and usability testing

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I think coding is must for interview

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Dec 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Group Discussion 

Topic was about of 5g technology
First of all over 500 of candidates are there after that in GD a topic was given and everyone started fighting over each other 20people speaking at a time sounds like a fish market. I don't know what kind of company takes this type of GD where no one gets a proper chance to speak

Round 3 - Group Discussion 

Na na na na na na na na na na na na

Round 4 - Case Study 

Na na na na na na na na na na na

Interview Preparation Tips

Interview preparation tips for other job seekers - Just don't be kind and patient that they will give you the opportunity and some will Stop and you will start speaking just cut anyone of them and start speaking. It's not a GD it's a fish market.

I applied via LinkedIn and was interviewed in Sep 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Program to find repeating characters in a string
  • Ans. 

    The program finds repeating characters in a given string.

    • Iterate through each character in the string

    • Store each character in a data structure

    • If a character is already present in the data structure, it is a repeating character

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Program to find whether a number is prime or not
  • Ans. 

    Program to check if a number is prime or not

    • A prime number is only divisible by 1 and itself

    • Loop through numbers from 2 to n-1 and check if n is divisible by any of them

    • If n is divisible by any number, it is not prime

    • If n is not divisible by any number, it is prime

  • Answered by AI
  • Q2. Explain Automation framework that u suggest to automate amazon application
  • Ans. 

    I suggest using a hybrid automation framework for testing Amazon application.

    • Use Selenium WebDriver for web automation

    • Use Appium for mobile automation

    • Use TestNG for test management and reporting

    • Use Page Object Model for better code maintenance

    • Use data-driven approach for test data management

    • Use Jenkins for continuous integration and deployment

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and do your job, do worry about rejections. Not all company thinks in same manner.

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Regression and Smoke and Sanity difference, SQL queries for joins, waits in selenium, core java concepts, real time STLC questions, defect management etc
Round 2 - Behavioral 

(1 Question)

  • Q1. SQL query for joins with where clause, general management questions like why to change job, agile management, some real time scenarios questions which we face in project in terms of STLC etc.

Interview Preparation Tips

Topics to prepare for CitiusTech Senior Software Engineer Testing interview:
  • Core Java
  • C#
  • Manual Testing
  • SQL
  • Selenium
Interview preparation tips for other job seekers - Prepare manual and automation concepts in terms of real time scenarios, prepare more n more language concepts and sql queries.

I applied via Naukri.com and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Testing Methodology ,bug life cycle,STLC,API TESTING
  • Q2. Senario based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was technical I have given all ans and timeing for interview will 24 min ...
No Response From There Side ...

I applied via Naukri.com and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is in Testing Life Cycle and Bug Life Cycle?
  • Ans. 

    Testing Life Cycle includes planning, designing, executing and reporting. Bug Life Cycle includes reporting, assigning, fixing and verifying.

    • Testing Life Cycle involves planning, designing, executing and reporting of tests.

    • Bug Life Cycle involves reporting, assigning, fixing and verifying bugs.

    • Testing Life Cycle starts with requirement analysis and ends with test closure.

    • Bug Life Cycle starts with bug reporting and end...

  • Answered by AI
  • Q2. What is the difference between severity and priority of a bug?
  • Ans. 

    Severity is the impact of a bug on the system while priority is the urgency of fixing it.

    • Severity is the measure of how much a bug affects the system's functionality or performance.

    • Priority is the measure of how urgently a bug needs to be fixed.

    • A high severity bug may not have a high priority if it does not affect critical functionality.

    • A low severity bug may have a high priority if it affects critical functionality.

    • Bo...

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. What are challenges that you faced during Testing phase?
  • Ans. 

    Challenges faced during testing phase

    • Lack of clear requirements

    • Limited access to test environment

    • Time constraints

    • Difficulty in reproducing bugs

    • Integration issues with third-party systems

    • Lack of proper documentation

    • Testing on multiple platforms and devices

    • Dealing with unexpected errors

  • Answered by AI
  • Q2. What are your biggest achievements and contributions?

Interview Preparation Tips

Interview preparation tips for other job seekers - Tell your answers confidently and keeping it brief unless asked for explanation

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Modules of CTS application
  • Ans. 

    The CTS application consists of multiple modules.

    • Some of the modules include: user management, content management, reporting, and analytics.

    • Each module has its own set of features and functionalities.

    • The modules are designed to work together seamlessly to provide a comprehensive testing solution.

  • Answered by AI
  • Q2. Difference between sanity and smoke testing
  • Ans. 

    Sanity testing is a narrow regression test while smoke testing is a broader test to check if the system is stable enough for further testing.

    • Sanity testing is a quick test to check if the critical functionalities of the system are working fine after a small change.

    • Smoke testing is a broader test to check if the system is stable enough for further testing.

    • Sanity testing is usually done after a build is received while sm...

  • Answered by AI
  • Q3. Explain bug life cycle and STLC?
  • Ans. 

    Bug life cycle is the process of identifying, reporting, tracking, and resolving bugs. STLC is the process of testing software from planning to deployment.

    • Bug life cycle includes stages like identification, reporting, reproduction, prioritization, resolution, and verification.

    • STLC includes stages like requirement analysis, test planning, test case development, test execution, and test closure.

    • Bug life cycle and STLC ar...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - keep your answers short and answer to the point

Skills evaluated in this interview

TechStar Group Interview FAQs

How many rounds are there in TechStar Group Specialist Testing interview?
TechStar Group interview process usually has 3 rounds. The most common rounds in the TechStar Group interview process are Resume Shortlist, Coding Test and Technical.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 792 Interviews
CitiusTech Interview Questions
3.4
 • 266 Interviews
View all
Senior Software Engineer
77 salaries
unlock blur

₹7 L/yr - ₹29 L/yr

Information Technology Recruiter
50 salaries
unlock blur

₹1.8 L/yr - ₹4.4 L/yr

Software Engineer
32 salaries
unlock blur

₹5.7 L/yr - ₹15 L/yr

Senior IT Recruiter
19 salaries
unlock blur

₹3.4 L/yr - ₹6.5 L/yr

Software Developer
17 salaries
unlock blur

₹5 L/yr - ₹16 L/yr

Explore more salaries
Compare TechStar Group with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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