Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Chillar Payment Solutions Pvt Ltd Team. If you also belong to the team, you can get access from here

Chillar Payment Solutions Pvt Ltd Verified Tick

Compare button icon Compare button icon Compare
3.0

based on 8 Reviews

Filter interviews by

Chillar Payment Solutions Pvt Ltd QA Engineer Interview Questions, Process, and Tips

Updated 16 Jan 2023

Chillar Payment Solutions Pvt Ltd QA Engineer Interview Experiences

1 interview found

QA Engineer Interview Questions & Answers

user image Jihad Ali hashim

posted on 16 Jan 2023

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

I applied via Approached by Company and was interviewed before Jan 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 - Technical 

(5 Questions)

  • Q1. What are SDLC and STLC?
  • Ans. 

    SDLC stands for Software Development Life Cycle and STLC stands for Software Testing Life Cycle.

    • SDLC is a process followed by software development teams to design, develop, test, and deploy software.

    • STLC is a process followed by software testing teams to plan, design, execute, and report on software testing.

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

    • STLC includes phases like t...

  • Answered by AI
  • Q2. How do you click/interact with an element, if the basic click does not work?
  • Ans. 

    Use alternative methods like JavaScript executor or actions class to interact with the element.

    • Try using JavaScript executor to click the element

    • Use actions class to perform a click action on the element

    • Check if there are any alternative ways to interact with the element, like triggering a hover event before clicking

    • Inspect the element and verify if it has any other clickable areas or child elements that can be clicked

  • Answered by AI
  • Q3. How would you test a login page?
  • Ans. 

    To test a login page, I would verify the functionality of the login form and the security of the login process.

    • Verify that the login form accepts valid credentials and rejects invalid ones

    • Check for proper error messages when incorrect credentials are entered

    • Test the 'forgot password' functionality

    • Ensure that the login process is secure by checking for HTTPS protocol and proper encryption

    • Test for session management and

  • Answered by AI
  • Q4. What is a bug life cycle?
  • Ans. 

    Bug life cycle is the process of identifying, reporting, fixing, and verifying software defects.

    • Bug is identified by testers during testing

    • Bug is reported to developers

    • Developers fix the bug and mark it as resolved

    • Testers verify the fix and mark the bug as closed

    • Bug may be reopened if the issue reoccurs

    • Bug data is tracked in a bug tracking system

  • Answered by AI
  • Q5. What is an error, bug, defect, and failure?
  • Ans. 

    Error, bug, defect, and failure are all related to software quality issues.

    • An error is a human mistake that produces an incorrect result.

    • A bug is a coding mistake that causes unexpected behavior.

    • A defect is a flaw in the software that prevents it from functioning as intended.

    • A failure is when the software does not meet its requirements or crashes.

    • All of these issues can impact the quality of the software and should be ...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about Yourself
  • Ans. Let them know your career and educational path which doesn't cover in your CV, connect the missing gaps and irregularities in your CV and make sense of it. do not repeat your entire CV back to them.
  • Answered by Jihad Ali hashim
  • Q2. Questions on your last company and missings in your CV

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and confident. only answer the questions confidently about what you really know, or else you have the right to say that you don't know the answer. answering nonsense if you really don't know the answer is a great No-No. for HR round , be pleasant and confident. they will ask you more about your career and life than your qualifications. so answer accordingly

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 Naukri.com and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. What is Regression testing.
  • Ans. 

    Regression testing is the process of retesting a software application to ensure that new code changes have not adversely affected existing functionality.

    • Performed after code changes to verify that existing features still work correctly

    • Helps prevent the introduction of new bugs or issues

    • Can be automated to save time and effort

    • Examples: running test cases after a software update, checking for bugs after adding new featur

  • Answered by AI
  • Q2. Difference between list and tuple
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • List can be modified after creation, tuple cannot.

    • List uses square brackets [], tuple uses parentheses ().

    • List is used for collections of items that may change, tuple for fixed collections.

    • Example: list_example = [1, 2, 3], tuple_example = (4, 5, 6)

  • Answered by AI
  • Q3. Program to check if the no. is prime
  • Ans. 

    A program to check if a number is prime or not

    • Iterate from 2 to square root of the number and check if it divides the number evenly

    • If any number divides the given number, it is not prime

    • If no number divides the given number, it is prime

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Program to find pallindrome.
  • Ans. 

    Program to find palindrome in an array of strings.

    • Iterate through each string in the array

    • Reverse each string and compare with original string

    • If they are equal, it is a palindrome

  • Answered by AI
  • Q2. How to find element using css selector.
  • Ans. 

    To find an element using CSS selector, you can use the document.querySelector() method.

    • Use document.querySelector() method with the CSS selector as the argument.

    • Make sure the CSS selector is unique to the element you want to find.

    • You can also use document.querySelectorAll() to find multiple elements.

  • Answered by AI
Round 3 - Case Study 

Scenario based questions

Skills evaluated in this interview

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

(5 Questions)

  • Q1. API testing related questions were asked
  • Q2. What is api testing
  • Ans. 

    API testing is a type of software testing that involves testing APIs directly to ensure they meet functionality, reliability, performance, and security requirements.

    • API testing involves testing the functionality, reliability, performance, and security of APIs.

    • It focuses on verifying that the API meets its specifications and works as expected.

    • API testing can be done manually or using automated tools like Postman or Soap...

  • Answered by AI
  • Q3. How do you log bugs
  • Ans. 

    I log bugs by documenting detailed steps to reproduce, including screenshots and logs.

    • Document detailed steps to reproduce the bug

    • Include screenshots or videos if applicable

    • Attach relevant logs or error messages

    • Assign severity and priority levels to the bug

    • Track bug status and resolution in a bug tracking tool

  • Answered by AI
  • Q4. What is agilemethodology
  • Ans. 

    Agile methodology is a software development approach that emphasizes flexibility, collaboration, and iterative development.

    • Focus on delivering working software in short iterations

    • Emphasizes collaboration between cross-functional teams

    • Allows for changes and adjustments throughout the development process

    • Common practices include daily stand-up meetings, sprint planning, and retrospectives

  • Answered by AI
  • Q5. What is selenium framework
  • Ans. 

    Selenium framework is a set of tools, libraries, and best practices used for automated testing of web applications.

    • Selenium framework allows for writing and executing automated tests for web applications.

    • It provides features like test case management, reporting, and integration with CI/CD tools.

    • Popular frameworks built on top of Selenium include TestNG, JUnit, and Cucumber.

    • Selenium WebDriver is a key component of the f...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Write a program to reverse a string
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy very simple questions sked in test

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Explain SDLC
  • Ans. 

    SDLC stands for Software Development Life Cycle, a process used to design, develop, and test software.

    • SDLC is a systematic process for building software applications.

    • It includes phases like planning, analysis, design, implementation, testing, and maintenance.

    • Each phase has specific goals and deliverables to ensure the quality and success of the software.

    • Examples of SDLC models include Waterfall, Agile, and DevOps.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Hackerank platform with multiple questions.

Round 2 - Technical 

(1 Question)

  • Q1. Oops, Java, Java collection, String
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude was hosted by Amazon themselves comprising of 3 sections:
1. Coding
2. MCQ regarding QA methodologies
3. Behavioural questions (where does your alignment lies)

Round 2 - Technical 

(2 Questions)

  • Q1. Simple string manipulation (e.g. anagram string)
  • Ans. 

    Check if two strings are anagrams of each other

    • Create a function that takes in two strings as input

    • Remove all spaces and special characters from both strings

    • Sort the characters in both strings and compare them to check if they are equal

  • Answered by AI
  • Q2. Optimise approach for each question
Round 3 - Technical 

(1 Question)

  • Q1. Technical questions around automation suite
Round 4 - Technical 

(1 Question)

  • Q1. More questions on the projects I have worked, questions around them
Round 5 - One-on-one 

(2 Questions)

  • Q1. Alignment on where you are likely going to be in the org
  • Q2. Preferred work location

Interview Preparation Tips

Interview preparation tips for other job seekers - Apply for the job position only if you can work from the location given in JD

Skills evaluated in this interview

QA Engineer Interview Questions & Answers

Wipro user image Vinay Devendra

posted on 10 Oct 2024

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. WAP to run same test case 100 times
  • Ans. 

    Write a program to run the same test case 100 times

    • Use a loop to iterate 100 times

    • Call the test case function inside the loop

    • Track the results of each iteration if needed

  • Answered by AI
  • Q2. WAP to get duplicate char count
  • Ans. 

    A program to count the number of duplicate characters in an array of strings.

    • Iterate through each string in the array

    • For each string, iterate through each character and count the occurrences

    • Store the count of each character in a map or dictionary

    • Return the characters with count greater than 1

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Questions on object oriented programming concepts in java
  • Q2. How to handle multiple windowns in selenium
  • Ans. 

    Handling multiple windows in Selenium involves switching between windows and performing actions on each window.

    • Use getWindowHandles() to get all window handles

    • Switch to a specific window using switchTo().window(handle)

    • Perform actions on the window

    • Switch back to the original window if needed

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Bubble sort algo, String manipulation

Round 2 - Technical 

(2 Questions)

  • Q1. API testing using restAssured
  • Ans. 

    restAssured is a Java library for API testing, commonly used for testing RESTful APIs.

    • restAssured is a Java library that simplifies API testing by providing a fluent interface for making HTTP requests and validating responses.

    • It can be used to test RESTful APIs by sending requests (GET, POST, PUT, DELETE) and verifying the responses.

    • Assertions can be made on response status codes, headers, body content, and more.

    • Exampl...

  • Answered by AI
  • Q2. STLC bug life cuycle

Interview Preparation Tips

Interview preparation tips for other job seekers - preapare interview on CV

Skills evaluated in this interview

Chillar Payment Solutions Pvt Ltd Interview FAQs

How many rounds are there in Chillar Payment Solutions Pvt Ltd QA Engineer interview?
Chillar Payment Solutions Pvt Ltd interview process usually has 3 rounds. The most common rounds in the Chillar Payment Solutions Pvt Ltd interview process are Resume Shortlist, Technical and HR.
What are the top questions asked in Chillar Payment Solutions Pvt Ltd QA Engineer interview?

Some of the top questions asked at the Chillar Payment Solutions Pvt Ltd QA Engineer interview -

  1. How do you click/interact with an element, if the basic click does not wo...read more
  2. what is an error, bug, defect, and failu...read more
  3. how would you test a login pa...read more

Tell us how to improve this page.

QA Engineer Interview Questions from Similar Companies

TCS QA Engineer Interview Questions
3.7
 • 43 Interviews
View all
Chillar Payment Solutions Pvt Ltd QA Engineer Salary
based on 4 salaries
₹6 L/yr - ₹9.5 L/yr
36% more than the average QA Engineer Salary in India
View more details

Chillar Payment Solutions Pvt Ltd QA Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

4.0

Work-Life balance

3.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

3.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 1 Review and Rating
IOS Developer
6 salaries
unlock blur

₹3.7 L/yr - ₹7.8 L/yr

Operations Executive
4 salaries
unlock blur

₹2 L/yr - ₹2.7 L/yr

Android App Developer
4 salaries
unlock blur

₹3.2 L/yr - ₹8.5 L/yr

QA Engineer
4 salaries
unlock blur

₹6 L/yr - ₹9.5 L/yr

Python Developer
4 salaries
unlock blur

₹3 L/yr - ₹3.5 L/yr

Explore more salaries
Compare Chillar Payment Solutions Pvt Ltd with

Paytm

3.3
Compare

PhonePe

4.0
Compare

Mobikwik

4.0
Compare

Freecharge

4.0
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