Upload Button Icon Add office photos

Filter interviews by

Infinity Roadlines Assistant QA Engineer Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Senior Quality Analyst Interview Questions & Answers

Genpact user image Priyadharshini Sivarajan

posted on 13 Jan 2025

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

(3 Questions)

  • Q1. Collections,List set diff,basic coding
  • Q2. Cucumber basics
  • Q3. Java interface Framework explanation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. What is smoke testing
  • Ans. 

    Smoke testing is a preliminary testing to check if the basic functionalities of a software application are working fine.

    • Smoke testing is a subset of regression testing.

    • It is performed to ensure that critical functionalities are working before proceeding with further testing.

    • Smoke tests are usually quick and do not involve detailed testing.

    • Example: Checking if the login functionality of a website is working after a new

  • Answered by AI
  • Q2. How to convert integer to string
  • Ans. 

    Use the toString() method to convert an integer to a string in JavaScript.

    • Use the toString() method on the integer variable

    • Pass the base as an argument to toString() if needed (e.g. 10 for decimal)

    • Store the converted string in a variable for further use

  • Answered by AI
  • Q3. What are git command you have used
  • Ans. 

    I have used git commands for version control and collaboration in software development.

    • git clone: to clone a repository from a remote server

    • git add: to stage changes for commit

    • git commit: to save changes to the local repository

    • git push: to push changes to a remote repository

    • git pull: to fetch and merge changes from a remote repository

    • git branch: to create, list, delete, or switch branches

    • git merge: to merge changes fro...

  • Answered by AI
  • Q4. How to select key in selenium
  • Ans. 

    Keys in Selenium can be selected using the Keys class provided by Selenium WebDriver.

    • Use the Keys class to send special keys like Enter, Tab, Arrow keys, etc.

    • Keys can be used for keyboard actions like pressing Enter after entering text in a field.

    • Keys can also be used for keyboard shortcuts like Ctrl+A for selecting all text in a field.

  • Answered by AI
  • Q5. What is difference between XSSFand HSSF for read data from Xcel.
  • Ans. 

    XSSF is for reading data from Excel files in XML format, while HSSF is for reading data from Excel files in binary format.

    • XSSF is part of Apache POI library and is used for reading data from Excel files in XML format

    • HSSF is also part of Apache POI library and is used for reading data from Excel files in binary format

    • XSSF is preferred for reading newer Excel file formats like .xlsx, while HSSF is used for older formats

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. Basic of java and problems
  • Q2. Questions on selenium and framework
  • Q3. Coding questions
Round 2 - HR 

(1 Question)

  • Q1. General questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. Tell something about your self?
  • Q2. You have recevied a survey which refers customer dissatisfaction what are the action will you take being a QA?
  • Ans. 

    As a Senior Quality Analyst, I would take the following actions to address customer dissatisfaction:

    • Analyze the survey data to identify the specific areas of customer dissatisfaction

    • Conduct root cause analysis to determine the underlying reasons for the dissatisfaction

    • Collaborate with cross-functional teams to develop and implement corrective actions

    • Monitor the effectiveness of the implemented actions through further c...

  • Answered by AI
  • Q3. What is fishbone analysis?
  • Ans. 

    Fishbone analysis, also known as Ishikawa diagram, is a visual tool used to identify and analyze the potential causes of a problem or an effect.

    • Fishbone analysis is a problem-solving technique that helps identify the root causes of an issue.

    • It is represented by a diagram resembling the skeleton of a fish, hence the name fishbone analysis or Ishikawa diagram.

    • The main categories in a fishbone diagram include people, proc...

  • Answered by AI
  • Q4. Please define pareto analysis.
  • Ans. 

    Pareto analysis is a technique used to prioritize problems or causes based on their frequency or impact.

    • Pareto analysis is also known as the 80/20 rule.

    • It helps identify the vital few factors that contribute to the majority of problems.

    • The analysis is based on the principle that a small number of causes are responsible for a large percentage of the effects.

    • It involves creating a Pareto chart to visually represent the d...

  • Answered by AI
  • Q5. Please define the reason of doing RCA.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just watch videos and prepare well

QA Engineer Interview Questions & Answers

Amazon user image Navdeep Singh

posted on 31 Jan 2024

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

Technical assessment
Work style assessment
programming knowledge (DSA, JAVA)

Round 2 - Technical 

(3 Questions)

  • Q1. Test cases, test plan and test data for QR code
  • Q2. Questions on selenium and java basics
  • Q3. Questions on xpath

QA Engineer Interview Questions & Answers

IBM user image Rishik Bhimavarapu

posted on 11 Oct 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-
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 

2 coding ques in 1 hr

Round 3 - Technical 

(5 Questions)

  • Q1. Core java and oops
  • Q2. Use of this keyword in java
  • Ans. 

    The 'this' keyword in Java refers to the current instance of the class.

    • Used to refer to instance variables or methods of the current object

    • Can be used to differentiate between instance variables and local variables with the same name

    • Can be passed as an argument to other methods

  • Answered by AI
  • Q3. Difference between final and finally
  • Ans. 

    final is a keyword used in Java to declare constants, while finally is a block of code used in exception handling to ensure a piece of code is always executed.

    • final is used to declare constants in Java, its value cannot be changed once assigned

    • finally is a block of code used in exception handling to ensure a piece of code is always executed, regardless of whether an exception is thrown or not

    • Example: final int MAX_VALU...

  • Answered by AI
  • Q4. Basic principles of oops
  • Ans. 

    Basic principles of OOP include encapsulation, inheritance, and polymorphism.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Ability of a class to inherit properties and behavior from another class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Example: A 'Car' class may have properties like 'color' and 'model', and methods like 'st

  • Answered by AI
  • Q5. Method over riding and method overloading

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How to performa cross browsing testing
  • Ans. 

    Cross browsing testing is performed to ensure the compatibility of a website or application across different browsers and platforms.

    • Identify the target browsers and platforms to be tested

    • Create a test plan and test cases for each browser and platform

    • Execute the test cases on different browsers and platforms

    • Verify the functionality, layout, and performance of the website or application

    • Report and track any issues or inco...

  • Answered by AI
  • Q2. How to test an APi when you dont have real entity to answer that api
  • Ans. 

    To test an API without a real entity, use mock data or create dummy data for testing purposes.

    • Create mock data that simulates the expected behavior of the real entity

    • Use tools like Postman or cURL to send requests to the API using the mock data

    • Verify that the API responds correctly to the requests and returns the expected results

    • Test different scenarios and edge cases to ensure the API handles them properly

    • Monitor the ...

  • Answered by AI

Skills evaluated in this interview

QA Engineer Interview Questions & Answers

Capgemini user image praveen gopalsamy

posted on 2 Aug 2023

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. JAVA AND SELENIUM AND CUCUCMBER
  • Q2. API AUTOMATION TESTING WITHREST ASSURED
Round 2 - Technical 

(1 Question)

  • Q1. JAVA, SELENIUM AND CUCUMBER
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jan 2023. 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 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself and experience
  • Ans. 

    I am an experienced QA Engineer with a strong background in software testing and quality assurance.

    • I have 5 years of experience in testing web and mobile applications.

    • I am proficient in test planning, test case design, and test execution.

    • I have expertise in both manual and automated testing.

    • I have worked with various testing tools and frameworks such as Selenium, JUnit, and TestNG.

    • I have experience in Agile development...

  • Answered by AI
  • Q2. Explain agile and sfdc experience
  • Ans. 

    Agile is a software development methodology that emphasizes flexibility and collaboration. SFDC refers to Salesforce.com experience.

    • Agile is a iterative and incremental approach to software development.

    • It promotes adaptive planning, evolutionary development, and continuous improvement.

    • SFDC experience refers to experience with Salesforce.com, a cloud-based CRM platform.

    • SFDC experience may include knowledge of Salesforce...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and explain your day to day work activities

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Sep 2022. There were 2 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 - HR 

(5 Questions)

  • Q1. Tell me introduce yourself
  • Ans. Hi, My name is Deep Naskar, I belong to Howrah, West Bengal. I am a quality assurance professional with 2years Experience  in BPO industry, I completed my Secondary Examination in 2015 then completed higher secondary examination in 2018 post that I took admission in ITI and completed in 2018. Coming to my skills, I am well versed with MS excel, MS WORD and Google sheets, MS PowerPoint and outlook functions. My strength...
  • Answered Anonymously
  • Q2. What is the job rool of a QA
  • Ans. The job rool of a qa is to evaluate the process transactions which is being done by the advisors. sharing feedback with the advisors best on the evaluation of those transactions if there is any error. Sharing process lavel insights for improvement of the process and rich client experience These are basic QA job roles.
  • Answered Anonymously
  • Q3. What are the steps you took to improve the CSAT of your previous process?
  • Ans. 

    I implemented several steps to improve the CSAT of my previous process.

    • Conducted thorough analysis of customer feedback

    • Identified common pain points and areas of improvement

    • Collaborated with cross-functional teams to implement necessary changes

    • Implemented regular training sessions for support agents

    • Introduced automated testing to ensure product quality

    • Established a proactive approach to customer support

  • Answered by AI
  • Q4. How are you used to DAST analysis?
  • Ans. 

    DAST analysis involves using dynamic testing techniques to identify vulnerabilities in a software application.

    • DAST stands for Dynamic Application Security Testing.

    • It involves analyzing an application while it is running to identify security vulnerabilities.

    • DAST tools simulate attacks on the application to identify weaknesses.

    • Common DAST techniques include fuzz testing, penetration testing, and vulnerability scanning.

    • DA...

  • Answered by AI
  • Q5. How do you provide your feedback?
  • Ans. I used to share the feedback by following the sandwich method. ‌Firstly I told them what good things they have done in the call, then I share them the observation of what they have done wrong in the call and how that can be rectified.
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - I will suggest my friends and relatives for doing this job

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
Compare Infinity Roadlines with

TCS

3.7
Compare

Accenture

3.9
Compare

Cognizant

3.8
Compare

Infosys

3.7
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