Upload Button Icon Add office photos
Engaged Employer

i

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

Movate Verified Tick

Compare button icon Compare button icon Compare
3.3

based on 1.9k Reviews

Filter interviews by

Movate Software Testing Engineer Interview Questions and Answers

Updated 2 Jul 2021

Interview questions from similar companies

I applied via Job Fair and was interviewed in Sep 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. Software testing basic all questions will be answer
  • Q2. All questions I'll be answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Java.selenium,automation testing,and manual testing, cucumber, framework JavaScript

I was interviewed in Sep 2021.

Round 1 - Video Call 

(7 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

In this round, the interviewer first started asking me questions around basics of Software Testing. Then he switched to Agile Testing and at the end asked some more questions related to SQL.

  • Q1. Software Testing Question

    Explain STLC.

  • Ans. 

    STLC (Software Testing Life Cycle) is a fundamental part of SDLC which is used to test software and ensure that the quality standards are met. It generally involves both verification activities and validation activities. In this, different activities are executed in a specific order throughout the software testing process. There are basically six different phases in STLC. They are as follows : 

    1) Requirement Analy...

  • Answered by CodingNinjas
  • Q2. Software Testing Question

    Write the difference between Test Stub and Test Driver.

  • Ans. 

    Test driver and test stub, both are types of test harness that are used to provide a simulation environment for testing a module or component. They both are dummy modules specially created for test purposes. 

    Test stubs: Test stubs are used in a top-down testing approach and allow testing of the upper levels of the code when the lower levels of the code are not developed yet. It is used as ‘called programs’ when su...

  • Answered by CodingNinjas
  • Q3. Software Testing Question

    What is the importance of agile testing?

  • Ans. 

    Agile testing is basically a software testing process that uses agile methodologies i.e., follow test-first design paradigm. It evaluates the software from the customer's point of view. It does not require any development team to complete coding for starting QA, instead of testing and coding can go hand in hand. Features are tested as they are developed. Some of its advantages include : 

    1) Boosts the performance a...

  • Answered by CodingNinjas
  • Q4. Agile Question

    What is Spike and Zero Sprint in Agile?

  • Ans. 

    Spike: It generally refers to a too large and complex user story in software development that cannot be estimated until the development team runs a timeboxed investigation. These stories can be used for various activities like research, design, exploration, prototyping, etc. Spikes are usually created to resolve some technical issues and design problems in the project. 

    Zero Sprint: It generally refers to the first...

  • Answered by CodingNinjas
  • Q5. Agile Question

    What is the difference between Agile and Scrum?

  • Ans. 

    Agile : 
    1) It is a methodology that is used for software management and project management.
    2) It emphasizes the incremental and iterative model known as sprints. 
    3) It is best suited for projects that usually involve a small team of experts.
    4) It is a long-term process.
    5) It requires simple and straightforward design and execution.
    6) In this, all tasks are handled and managed by the project head. 


    Scrum :
    ...

  • Answered by CodingNinjas
  • Q6. SQL Question

    How many Aggregate functions are available in SQL?

  • Ans. 

    SQL Aggregate functions determine and calculate values from multiple columns in a table and return a single value.

    There are 7 aggregate functions in SQL :

    1) AVG(): Returns the average value from specified columns.
    2) COUNT(): Returns number of table rows.
    3) MAX(): Returns the largest value among the records.
    4) MIN(): Returns smallest value among the records.
    5) SUM(): Returns the sum of specified column values.
    6) FIRST()...

  • Answered by CodingNinjas
  • Q7. SQL Question

    What are triggers?

  • Ans. 

    Triggers in SQL is kind of stored procedures used to create a response to a specific action performed on the table such as INSERT, UPDATE or DELETE. You can invoke triggers explicitly on the table in the database.

    Action and Event are two main components of SQL triggers. When certain actions are performed, the event occurs in response to that action.

    Syntax :

    CREATE TRIGGER name {BEFORE|AFTER} (event [OR..]}
    ON table_name ...

  • Answered by CodingNinjas
Round 2 - Video Call 

(7 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had questions revolving around Automation Testing , Selenium and Cucumber.

  • Q1. Automation Testing Question

    How do you automate the testing of CAPTCHA?

  • Ans. 

    It’s not possible to automate the testing of CAPTCHA. That is the goal behind any good CAPTCHA strategy. By
    definition, a computer can’t automate it. If it could, then it’s not a good challenge that you can use in your application.

    However, if you need to test an application that uses CAPTCHA, you have to work with the development team to
    build a workaround or a back door that allows the automated test to bypass the CAPTC...

  • Answered by CodingNinjas
  • Q2. Automation Testing Question

    What is Protractor?

  • Ans. 

    Protractor is an open-source automated testing framework that allows you to perform end-to-end testing of your web
    applications. It’s built on top of WebDriverJS. Protractor is developed by Google and is especially used for testing
    Angular applications.


    Protractor runs the tests against the web application by running it in real web browsers. It also interacts with the
    application like an end-user would, e.g. clicking butto...

  • Answered by CodingNinjas
  • Q3. Selenium Question

    Why should Selenium be selected as a testing tool for web applications or systems?

  • Ans. 

    Selenium provides the following advantages, which make it an excellent automated testing framework :

    1) It is free and open-source software with a large user base and supports providing community.

    2) It has cross-browser compatibility and supports multiple browsers like Google Chrome, Mozilla Firefox, Internet Explorer, Edge, Opera, Safari, etc.

    3) It supports multiple operating systems such as Windows, Linux, macOS, etc.

    ...

  • Answered by CodingNinjas
  • Q4. Selenium Question

    Explain what are the JUnits annotation linked with Selenium?

  • Ans. 

    The JUnits annotation linked with Selenium are :

    1) @Before public void method() – It will perform the method () before each test, this method can prepare the test
    2) @Test public void method() – Annotations @Test identifies that this method is a test method environment
    3) @After public void method() - To execute a method before this annotation is used, test method must start with test@Before

  • Answered by CodingNinjas
  • Q5. Cucumber Question

    What are annotations in Cucumber?

  • Ans. 

    An annotation is a type of text that has been pre-defined and has a specified meaning. It tells the compiler/interpreter what to do when the program runs. The annotations on Cucumber are as follows:

    1) Given : It specifies the requirements for running the test.
    Example : Given I have an account on Interviewbit.

    2) When : It establishes the starting point for any test scenario.
    Example : When I log in to Interviewbit.

    3) The...

  • Answered by CodingNinjas
  • Q6. Technical Question

    Explain briefly how Behavioral Driven Development works?

  • Ans. 

    There are majorly three steps in the working of BDD. They are as follows:-

    1) Behaviour Description : We list down the features of our application first in the feature file.

    2) Making the Step Definition file : The mapping between each step of the scenario defined in the feature file and a code of the function to be executed is stored in the steps definition file.

    3) Testing and running : We run the test cases to check if...

  • Answered by CodingNinjas
  • Q7. Technical Question

    Difference between Selenium and Cucumber.

  • Ans. 

    Open-source testing tools, Selenium and Cucumber are both used for functional testing. However, there are some distinctions between them.

    Here are some key distinctions between Selenium and Cucumber :

    1) Cucumber is a behavior-driven development automation tool that may be used with Selenium. Selenium is a web browser automation tool for web projects (or Appium).

    2) Cucumber is used for acceptance testing, while Selenium ...

  • Answered by CodingNinjas
Round 3 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

This was a Technical Cum HR round where I was first asked some basic Java related concepts and then we discussed
about my expectations from the company , learnings and growth in the forthcomig years. I would suggest be honest and
try to communicate your thoughts properly in these type of rounds to maximise your chances of getting selected.

  • Q1. Basic HR Question

    Why should we hire you ?

  • Ans. 

    Tip 1 : The cross questioning can go intense some time, think before you speak.

    Tip 2 : Be open minded and answer whatever you are thinking, in these rounds I feel it is important to have opinion.

    Tip 3 : Context of questions can be switched, pay attention to the details. It is okay to ask questions in these round,
    like what are the projects currently the company is investing, which team you are mentoring. How all is the ...

  • Answered by CodingNinjas
  • Q2. Basic HR Question

    Why are you looking for a job change?

  • Ans. 

    Tip : For an experienced professional seeking a change, this is a common question. The easiest method to respond
    to this question is to state that you are leaving your current work in order to advance your career. Make sure you don't
    criticize or speak poorly about the company where you now work.

  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteriaAbove 2 years of experienceCGI Inc. interview preparation:Topics to prepare for the interview - Software Testing , Selenium , Cucumber , API Testing , Automation TestingTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

5 Questions

  • Q1. What is abstract
  • Ans. 

    Abstract is a concept in object-oriented programming that allows for the creation of classes that cannot be instantiated.

    • Abstract classes are used as blueprints for other classes to inherit from.

    • They contain abstract methods that must be implemented by the inheriting class.

    • An abstract class cannot be instantiated on its own.

    • The keyword 'abstract' is used to define an abstract class or method.

  • Answered by AI
  • Q2. Wait concept
  • Q3. Cucumber framework
  • Q4. About our project
  • Q5. Collection topics

Interview Preparation Tips

Interview preparation tips for other job seekers - Don’t attend for that company they are taken interviews form us and selected for 1st round another round is their but they are not taken interviews for us and wasted our time

I applied via Other and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1.self introduction 2.likes and dislikes. 3.hobbies 4.project. 5.my contribution in project. 6.strength. 7.how u overcome your weakness? That's it. Whether it is tr or hr

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics well.
It is very easy to crack.
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 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. Why are you looking for a change?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly follow up with the company
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Have you handled project alone?
  • Q2. API testing tools related questions.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

20 aptitude questions and 50 technical questions

Round 2 - One-on-one 

(10 Questions)

  • Q1. Tell me about your self
  • Q2. Explain automation framework
  • Ans. 

    Automation framework is a set of guidelines, rules, and tools that help in creating and executing automated tests.

    • Automation framework provides structure and guidelines for creating automated tests

    • It helps in organizing test scripts, data, and results

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

    • Examples of automation frameworks include Selenium WebDriver, TestNG, and Robot Framework

  • Answered by AI
  • Q3. Java code for sorting without using built in function
  • Ans. 

    Sorting array of strings in Java without using built-in functions

    • Create a custom sorting algorithm like bubble sort, selection sort, or insertion sort

    • Compare each pair of strings and swap them if necessary to sort in ascending order

    • Repeat the process until the array is fully sorted

  • Answered by AI
  • Q4. Explain testng annotations and how will we use annotation in our framework
  • Ans. 

    TestNG annotations are used to control the flow of test methods and provide additional information about the test methods.

    • TestNG annotations are used to mark methods as test methods, setup methods, teardown methods, etc.

    • Annotations like @Test, @BeforeMethod, @AfterMethod, @BeforeClass, @AfterClass, @BeforeSuite, @AfterSuite are commonly used in TestNG framework.

    • Annotations help in organizing and prioritizing test metho...

  • Answered by AI
  • Q5. What is testng listener
  • Ans. 

    TestNG listener is an interface that allows users to customize the test execution process.

    • TestNG listeners can be used to perform actions before or after a test method is run.

    • Listeners can be used to generate logs, take screenshots, or perform other custom actions during test execution.

    • Examples of TestNG listeners include ITestListener, ISuiteListener, and IInvokedMethodListener.

  • Answered by AI
  • Q6. What is overriding and where it is used in automation framework
  • Ans. 

    Overriding is a concept in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its superclass.

    • Overriding allows a subclass to provide a specific implementation of a method that is already provided by its superclass

    • It is used in automation frameworks to customize or extend the functionality of existing methods or classes

    • In automation testing, overriding...

  • Answered by AI
  • Q7. Explain bdd hooks and tags
  • Ans. 

    BDD hooks and tags are used in Behavior-Driven Development to set up preconditions and execute actions before or after scenarios, and to categorize and filter scenarios.

    • BDD hooks are used to set up preconditions and execute actions before or after scenarios

    • Tags are used to categorize and filter scenarios based on certain criteria

    • Hooks can be used to perform setup and teardown actions, such as initializing test data or ...

  • Answered by AI
  • Q8. Explain bdd background keyword
  • Ans. 

    BDD background keyword is used to define common preconditions for all scenarios in a feature file.

    • Used at the beginning of a feature file to define common preconditions

    • Helps in setting up the initial state for all scenarios in the feature file

    • Reduces duplication of steps in scenarios by defining them once in the background

  • Answered by AI
  • Q9. Explain ci/cd pipeline using jenkins
  • Ans. 

    CI/CD pipeline using Jenkins automates the process of integrating code changes and deploying them to production.

    • Jenkins is a popular automation server used for CI/CD

    • CI/CD stands for Continuous Integration/Continuous Deployment

    • In a CI/CD pipeline, code changes are automatically built, tested, and deployed

    • Jenkins pipelines can be defined using a Jenkinsfile which specifies the stages and steps of the pipeline

    • Example: Che...

  • Answered by AI
  • Q10. Explain rest assured and write a code for post and verify the response
  • Ans. 

    Rest Assured is a Java library for testing RESTful APIs. It simplifies API testing by providing a fluent interface to make HTTP requests and validate responses.

    • Rest Assured is commonly used in API automation testing to validate the functionality of RESTful APIs.

    • It allows testers to easily make HTTP requests, set headers, parameters, and body, and validate the response.

    • Here is an example code snippet for posting data an...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare all concepts in framwork

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Hashmap code logic
  • Q2. Propertiy file , xpath ,excel file code
Round 2 - Behavioral 

(2 Questions)

  • Q1. Resume based question
  • Q2. Ci cd jenkin question

Interview Preparation Tips

Interview preparation tips for other job seekers - Best of luck
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. Explain about yourself
  • Q2. What is exploratory testing and adhoc testing and how you used these in your project?
  • Ans. 

    Exploratory testing is a simultaneous learning, test design, and test execution approach. Adhoc testing is an informal testing approach without any predefined test cases.

    • Exploratory testing involves exploring the software, learning about it, and designing and executing tests on the fly.

    • Adhoc testing is unplanned and unstructured testing where testers randomly test the application without any specific test cases.

    • In my p...

  • Answered by AI
  • Q3. Roles and responsibilities in your previous projects
  • Q4. Difference between mobile and web testing?
  • Ans. 

    Mobile testing focuses on apps for smartphones and tablets, while web testing focuses on websites accessed through browsers.

    • Mobile testing involves testing apps on different devices and operating systems.

    • Web testing involves testing websites on different browsers and screen sizes.

    • Mobile testing includes testing for touch gestures and device-specific features.

    • Web testing includes testing for cross-browser compatibility ...

  • Answered by AI
  • Q5. Challenges faced in your last project?

Skills evaluated in this interview

Tell us how to improve this page.

Movate Software Testing Engineer Reviews and Ratings

based on 2 reviews

3.9/5

Rating in categories

4.2

Skill development

4.4

Work-Life balance

4.4

Salary & Benefits

4.4

Job Security

4.4

Company culture

4.4

Promotions/Appraisal

4.4

Work Satisfaction

Explore 2 Reviews and Ratings
Senior Engineer
1.5k salaries
unlock blur

₹2.2 L/yr - ₹12 L/yr

Technical Support Engineer
1.4k salaries
unlock blur

₹1 L/yr - ₹8 L/yr

Network Engineer
1.1k salaries
unlock blur

₹1.8 L/yr - ₹9 L/yr

Engineer
1.1k salaries
unlock blur

₹1.8 L/yr - ₹6.5 L/yr

Specialist
316 salaries
unlock blur

₹4.5 L/yr - ₹17.8 L/yr

Explore more salaries
Compare Movate 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