Upload Button Icon Add office photos
Engaged Employer

i

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

ValueLabs Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 1.6k Reviews

Filter interviews by

ValueLabs Manual Test Engineer Interview Questions and Answers

Updated 7 Nov 2024

ValueLabs Manual Test Engineer Interview Experiences

1 interview found

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

(1 Question)

  • Q1. Explain the Release Process
  • Ans. 

    The release process involves planning, testing, and deploying software updates to users.

    • Planning: Define scope, set deadlines, assign tasks

    • Testing: Conduct regression testing, performance testing, etc.

    • Deployment: Roll out updates to users in stages

    • Feedback: Gather feedback from users for further improvements

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is SDLC and STLC
  • Ans. 

    SDLC stands for Software Development Life Cycle, which is a process used by software development teams to design, develop, and test high-quality software products. STLC stands for Software Testing Life Cycle, which is a subset of SDLC focused on testing activities.

    • SDLC involves phases like planning, analysis, design, implementation, and maintenance.

    • STLC involves phases like test planning, test design, test execution, a...

  • Answered by AI
  • Q2. Smoke vs Sanity
  • Ans. 

    Smoke testing is a quick test to check if the build is stable for further testing, while sanity testing is a subset of regression testing to ensure core functionalities are working.

    • Smoke testing is done to check if the critical functionalities of the application are working fine after a new build.

    • Sanity testing is done to check if the specific functionalities are working fine after a bug fix or minor changes.

    • Smoke test...

  • Answered by AI
  • Q3. Exploratory vs Adhoc
  • Ans. 

    Exploratory testing is a structured approach to testing where testers explore the application without predefined test cases, while adhoc testing is unplanned and unstructured.

    • Exploratory testing involves learning the application while testing, creating and executing test cases simultaneously.

    • Adhoc testing is performed without any specific plan or documentation, often based on tester's intuition or experience.

    • Explorator...

  • Answered by AI
  • Q4. Bug life cycle in details
  • Ans. 

    Bug life cycle involves identification, reporting, fixing, retesting, and closing of a software bug.

    • Bug identification by testers

    • Bug reporting with detailed steps to reproduce

    • Bug fixing by developers

    • Bug retesting by testers to verify the fix

    • Bug closing after confirmation of resolution

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for basic to advance.

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Mar 2022. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. Tell me something about yourseld
  • Q2. Why you left your prevous job

Interview Preparation Tips

Interview preparation tips for other job seekers - nothing is to share
dont join exlerx they dont have proper projects

I applied via Walk-in and was interviewed in Feb 2022. There were 2 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 - Aptitude Test 

About software skill,Regression Testing,smoke Testing,Usability Testing,GUI Testing,sanity testing

Interview Preparation Tips

Topics to prepare for L&T Technology Services Manual Test Engineer interview:
  • Retesting
  • Regression Testing
  • Bug Reporting
  • Ajail
  • Sanity Testing
  • Smoke Testing
Interview preparation tips for other job seekers - Ajail methodology,jira,Validation and verification,Black Box Testing,white box Testing,Waterfall model,monkey or gorilla Testing

I applied via Company Website and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Web application sdlc bug reporting

Interview Preparation Tips

Interview preparation tips for other job seekers - Sdlc bug reporting web application testing
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(7 Questions)

  • Q1. What is a constructor and it's purpose?
  • Ans. 

    A constructor is a special type of method in a class that is automatically called when an object of that class is created.

    • Constructors have the same name as the class they belong to

    • They are used to initialize the object's state or perform any necessary setup

    • Constructors can have parameters to customize the initialization process

    • Example: public class Car { public Car(String color) { this.color = color; } }

  • Answered by AI
  • Q2. Can you override a Static Method?
  • Ans. 

    Yes, a static method can be overridden in Java using the concept of method hiding.

    • In Java, static methods cannot be overridden in the traditional sense like instance methods.

    • When a subclass defines a static method with the same signature as a static method in the superclass, it is called method hiding.

    • Method hiding does not follow polymorphism and is resolved at compile time based on the reference type.

    • Example: class...

  • Answered by AI
  • Q3. Can you create a Static local variable inside a Static method
  • Ans. 

    Yes, a static local variable can be created inside a static method.

    • Yes, a static local variable can be declared inside a static method in programming languages like C++.

    • Static local variables retain their values between function calls.

    • Example: static void myStaticMethod() { static int count = 0; count++; }

  • Answered by AI
  • Q4. What is the memory allocation for a String?
  • Ans. 

    String memory allocation is dynamic and depends on the length of the string.

    • String memory allocation is dynamic and can change based on the length of the string.

    • In Java, a String object is stored in the heap memory.

    • Each character in a String typically takes up 2 bytes of memory.

    • String objects in Java are immutable, meaning once a String object is created, it cannot be changed.

  • Answered by AI
  • Q5. Can you create a Static method inside an Abstract class or Interface?
  • Ans. 

    Yes, you can create a static method inside an abstract class or interface.

    • Static methods can be defined in interfaces since Java 8.

    • Static methods in interfaces are used for providing utility methods that are not tied to any specific instance of the interface.

    • Static methods in abstract classes can be used for common functionality that does not require an instance of the class.

  • Answered by AI
  • Q6. What is the Parent class of Java?
  • Ans. 

    The parent class of Java is the Object class.

    • All classes in Java are directly or indirectly derived from the Object class.

    • The Object class is the root class in Java's class hierarchy.

    • It provides methods that are common to all objects in Java, such as toString(), equals(), and hashCode().

  • Answered by AI
  • Q7. What is Window Handles in Selenium?
  • Ans. 

    Window Handles in Selenium are unique identifiers used to handle multiple browser windows in a Selenium test script.

    • Window Handles are unique alphanumeric strings assigned to each browser window opened by Selenium.

    • They are used to switch between different browser windows during a test script execution.

    • Window Handles can be obtained using getWindowHandles() method in Selenium.

    • Example: Set handles = driver.getWindowHandl

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Mphasis Automation Test Engineer interview:
  • Selenium
  • Java
  • OOPS
  • Manual Testing
Interview preparation tips for other job seekers - Nowadays, the interviewers expect the same Java language of a Developer as a Tester. But, how will that be possible? If a Tester has the same knowledge as a Developer, then why would he/she become a Tester instead of a Developer? Please open up your thoughts to the Interviewer, so that they can think before confusing with the deep logical knowledge.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic selenium and Basic Java
Round 2 - Technical 

(1 Question)

  • Q1. Java Program - Reverse a string Selenium - stale element
  • Ans. 

    Reverse a string using Java program and handle stale element in Selenium

    • Create a Java program to reverse a string using StringBuilder or char array

    • In Selenium, handle stale element exception by refreshing the element or using WebDriverWait

    • Example: Java program - input: 'hello', output: 'olleh'; Selenium - handle stale element by refreshing the element before interacting with it

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. What is your expected salary
  • Ans. 

    My expected salary is based on my experience, skills, and the market rate for Automation Test Engineers.

    • I have researched the average salary range for Automation Test Engineers in this location.

    • I am looking for a competitive salary that reflects my expertise in automation testing.

    • I am open to negotiation based on the overall compensation package offered.

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Mixed questions from aptitude, reasoning and english questions.

Round 2 - Technical 

(1 Question)

  • Q1. Basic questions from Manual Testing and SQL
Round 3 - HR 

(1 Question)

  • Q1. Basic interview and salary discussion
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic SDET related Manual and Automation Codes
  • Q2. Manager Round is about your work nature attentiveness in work
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Explain about project
  • Ans. 

    The project is a software application for managing inventory in a retail store.

    • Developed using Java programming language

    • Utilized Selenium for automated testing

    • Implemented test cases for various functionalities such as adding products, updating quantities, and generating reports

  • Answered by AI
  • Q2. Explain about Framework
  • Ans. 

    A framework is a set of guidelines, libraries, and tools that help in developing and organizing code for software testing.

    • Framework provides a structure for test automation

    • It includes reusable components, libraries, and utilities

    • Frameworks can be data-driven, keyword-driven, or hybrid

    • Examples: Selenium WebDriver for web testing, Appium for mobile testing

  • Answered by AI
  • Q3. String coding questions
Round 2 - HR 

(3 Questions)

  • Q1. Brief explanation about myself
  • Ans. 

    I am a dedicated and detail-oriented Test Engineer with a strong background in software testing and quality assurance.

    • Experienced in creating test plans, test cases, and executing tests

    • Proficient in using testing tools such as Selenium and Jira

    • Skilled in identifying and documenting software defects

    • Strong analytical and problem-solving skills

    • Excellent communication and teamwork abilities

  • Answered by AI
  • Q2. Current compensation
  • Q3. Why looking for change
  • Ans. 

    Seeking new challenges and opportunities for growth

    • Desire to learn new technologies and methodologies

    • Looking for a more dynamic and fast-paced work environment

    • Seeking opportunities for career advancement and skill development

  • Answered by AI

Skills evaluated in this interview

ValueLabs Interview FAQs

How many rounds are there in ValueLabs Manual Test Engineer interview?
ValueLabs interview process usually has 1 rounds. The most common rounds in the ValueLabs interview process are Technical.
How to prepare for ValueLabs Manual Test Engineer interview?
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 ValueLabs. The most common topics and skills that interviewers at ValueLabs expect are Manual Testing, Test Engineering, API Testing, Database Testing and JIRA.

Tell us how to improve this page.

ValueLabs Manual Test Engineer Salary
based on 12 salaries
₹2.1 L/yr - ₹6 L/yr
11% less than the average Manual Test Engineer Salary in India
View more details
Senior Software Engineer
2.2k salaries
unlock blur

₹4.7 L/yr - ₹25 L/yr

Software Engineer
944 salaries
unlock blur

₹6.2 L/yr - ₹14 L/yr

Analyst
539 salaries
unlock blur

₹8.5 L/yr - ₹30 L/yr

Technical Lead
398 salaries
unlock blur

₹11.8 L/yr - ₹40 L/yr

Senior Analyst
382 salaries
unlock blur

₹11.2 L/yr - ₹35.4 L/yr

Explore more salaries
Compare ValueLabs with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview