Upload Button Icon Add office photos

Enthralltech

Compare button icon Compare button icon Compare

Filter interviews by

Enthralltech Manual Test Engineer Interview Questions and Answers

Updated 29 May 2022

Enthralltech Manual Test Engineer Interview Experiences

1 interview found

Manual Test Engineer Interview Questions & Answers

user image Shruti Purushottam Prabhune

posted on 29 May 2022

I appeared for an interview before May 2021.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is Regression Testing
  • Ans. 

    Regression testing is the process of testing changes made to a software application to ensure that existing functionality still works as expected.

    • It is performed after making changes to the software application

    • It ensures that existing functionality is not affected by the changes

    • It helps to identify any new defects introduced by the changes

    • It can be automated or manual

    • Examples include testing after bug fixes, new featur...

  • Answered by AI
  • Q2. What is Defect Life Cycle
  • Ans. 

    Defect Life Cycle is the process of identifying, reporting, prioritizing, and resolving defects in software development.

    • Defect is identified by testers during testing

    • Defect is reported to development team

    • Development team prioritizes and resolves the defect

    • Defect is retested by testers

    • If defect is fixed, it is closed, else it goes through the cycle again

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

(2 Questions)

  • Q1. Difference between the smoke testing and sanity testing
  • Ans. 

    Smoke testing is a shallow and wide approach to testing while sanity testing is a narrow and deep approach to testing.

    • Smoke testing is done to ensure that the critical functionalities of the application are working fine after a build.

    • Sanity testing is done to ensure that the bugs reported in the previous build are fixed and the new functionalities added are working fine.

    • Smoke testing is done before the actual testing b...

  • Answered by AI
  • Q2. What is STLC, what are the different phases of STLC
  • Ans. 

    STLC stands for Software Testing Life Cycle. It is a process followed to ensure software quality.

    • The different phases of STLC are planning, preparation, execution, and closure.

    • In the planning phase, the scope of testing is defined and test strategy is created.

    • In the preparation phase, test cases are designed and test data is prepared.

    • In the execution phase, the actual testing is performed and defects are logged.

    • In the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - please make yourself confident while interview. Don't take pressure and tell the whatever you know about the technologies. All the best !

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
4d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Enthralltech?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview before Jun 2016.

Interview Questionnaire 

1 Question

  • Q1. Java related questions on Oops concept and Multithreading

Interview Preparation Tips

Round: Test
Experience: Simple aptitude and reasoning questions little java based programming
Tips: Basic programming knowledge and good aptitude
Duration: 1 hour
Total Questions: 60

Round: Technical Interview
Experience: Normal questions on Java, basic programming questions like reverse no. , String related and logical coding
Tips: What u mentioned on your resume go through that only, they will not ask apart from your resume

Skills: How Well You Are Able To Communicate What You Wanted To Tell, Programming
College Name: SRCEM

Manual Test Engineer Interview Questions Asked at Other Companies

Q1. Why choose testing field What is manual testing What is tradition ... read more
Q2. 2)what is testing?diff between manual and automation testing
Q3. What is the Software Testing Why Testing is Important Smoke and S ... read more
Q4. Why are you switching to the IT field from Mechanical Engineering ... read more
Q5. 1. What is Black Box & White Box testin 4.what is Sanity test ... read more

I applied via Referral and was interviewed before Jan 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Which technology are you using, is this latest?
  • Ans. 

    We are using a variety of technologies, including some of the latest ones.

    • We are using React for our front-end development.

    • We are also using Node.js for our back-end development.

    • We are using Docker for containerization.

    • We are using Kubernetes for orchestration.

    • We are using AWS for cloud hosting.

    • We are constantly evaluating new technologies to see if they can improve our development process.

  • Answered by AI
  • Q2. If not then which technology can we use instead of this?
  • Ans. 

    It depends on the specific requirements and constraints of the project.

    • Consider the project's goals and objectives

    • Evaluate the available technologies and their capabilities

    • Assess the project's budget and timeline

    • Consult with stakeholders and experts in the field

    • Examples: React vs Angular, MySQL vs MongoDB, Java vs Python

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi,
Listen carefully and speak fluently.

I applied via Company Website and was interviewed before Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Regarding OOPS, wordpress and laravel.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good and I am still working here.

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

Interview Questionnaire 

5 Questions

  • Q1. Which collection class is used to represent key-value pairs?
  • Ans. 

    The HashMap class is used to represent key-value pairs in Java.

    • HashMap is a part of the Java Collections Framework.

    • It allows null values and only one null key.

    • It provides constant-time performance for basic operations like get and put.

    • Example: HashMap<String, Integer> map = new HashMap<>();

  • Answered by AI
  • Q2. What is abstraction?
  • Ans. 

    Abstraction is the process of simplifying complex systems by focusing on essential details and hiding unnecessary complexities.

    • Abstraction allows us to create models or representations of real-world objects or systems in software.

    • It helps in managing complexity by breaking down a system into smaller, more manageable parts.

    • Abstraction provides a level of indirection, allowing changes to be made in one part of the system...

  • Answered by AI
  • Q3. Why is try-catch used in JAVA?
  • Ans. 

    try-catch is used in Java to handle exceptions and prevent program crashes.

    • try-catch blocks are used to catch and handle exceptions that may occur during program execution.

    • It allows the program to gracefully handle errors and prevent the program from crashing.

    • The try block contains the code that may throw an exception, and the catch block handles the exception.

    • Multiple catch blocks can be used to handle different types...

  • Answered by AI
  • Q4. Which statement will we use if we want to select a statement based on integer inputs?
  • Ans. 

    The statement to use for selecting based on integer inputs is the 'switch' statement.

    • The 'switch' statement allows for multiple cases to be evaluated based on the value of an integer input.

    • Each case represents a possible value of the input, and the corresponding code block is executed if the value matches.

    • The 'switch' statement also provides a 'default' case which is executed if none of the cases match the input value.

    • ...

  • Answered by AI
  • Q5. Explain your project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to basic concepts
Prepare a good project

Skills evaluated in this interview

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. String related questions
  • Q2. ARRAY related questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Coding Test 

Concentrate on identifying patterns and understanding time complexity.

Round 2 - Coding Test 

Concentrate on identifying patterns and understanding time complexity.

Round 3 - Coding Test 

Concentrate on addressing problems through various approaches and consider their time complexity.

Round 4 - HR 

(1 Question)

  • Q1. Regular HR questions
Are these interview questions helpful?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about projects you have worked upon
  • Q2. PEP-8 standards
Round 2 - Technical 

(2 Questions)

  • Q1. Architecture of project on which you were working
  • Q2. Pandas and Numpy
Round 3 - HR 

(2 Questions)

  • Q1. Tell me your Current CTC
  • Q2. Tell me your Expected CTC

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

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself
  • Ans. 

    I'm a passionate software engineer with a strong background in full-stack development and a love for solving complex problems.

    • Graduated with a degree in Computer Science from XYZ University.

    • Worked at ABC Corp, where I developed a web application that improved user engagement by 30%.

    • Proficient in languages like JavaScript, Python, and Java, with experience in frameworks like React and Django.

    • Enjoy collaborating in agile...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. 1 Project Explanation 2 SDLC & STLC. 3 Differentiate Smoke vs Sanity 4 What is Regression testing? 5 Bug life cycle. 6 Scenarios on real time example. 7 Questions on agile
  • Ans. 

    Interview questions for Software Engineer position

    • Project explanation should include details on the project's purpose, scope, and technologies used

    • SDLC (Software Development Life Cycle) and STLC (Software Testing Life Cycle) are methodologies used in software development and testing respectively

    • Smoke testing is a type of testing that checks if the basic functionalities of the software are working fine, while Sanity tes...

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

(1 Question)

  • Q1. All basic HR questions and salary discussion.

I applied via Recruitment Consulltant and was interviewed in Oct 2021. 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. Completely on java
Round 3 - Technical 

(1 Question)

  • Q1. Asked java questiona

Enthralltech Interview FAQs

How many rounds are there in Enthralltech Manual Test Engineer interview?
Enthralltech interview process usually has 2 rounds. The most common rounds in the Enthralltech interview process are One-on-one Round.
What are the top questions asked in Enthralltech Manual Test Engineer interview?

Some of the top questions asked at the Enthralltech Manual Test Engineer interview -

  1. What is STLC, what are the different phases of S...read more
  2. Difference between the smoke testing and sanity test...read more
  3. What is Defect Life Cy...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 144 Interviews
Webdew Interview Questions
4.5
 • 108 Interviews
HyScaler Interview Questions
4.5
 • 104 Interviews
Snovasys Interview Questions
4.0
 • 38 Interviews
Quantsapp Interview Questions
2.9
 • 36 Interviews
View all
Software Developer
30 salaries
unlock blur

₹3.2 L/yr - ₹7.5 L/yr

Implementation Engineer
30 salaries
unlock blur

₹1 L/yr - ₹4.2 L/yr

Instructional Designer
16 salaries
unlock blur

₹2.4 L/yr - ₹7.5 L/yr

Project Manager
13 salaries
unlock blur

₹3.6 L/yr - ₹9 L/yr

E Learning Developer
10 salaries
unlock blur

₹2.6 L/yr - ₹4.4 L/yr

Explore more salaries
Compare Enthralltech with

Northcorp Software

4.5
Compare

HCL Infosystems

3.9
Compare

HyScaler

4.5
Compare

Zidio Development

4.5
Compare
write
Share an Interview