Upload Button Icon Add office photos

Filter interviews by

Corecard Software QA Engineer Interview Questions and Answers

Updated 12 Mar 2024

Corecard Software QA Engineer Interview Experiences

1 interview found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 12 Mar 2024

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

(1 Question)

  • Q1. They will not ask you hard question 'coz managers don't have knowledge. They are dumb they will ask you very basics relatable to testing. And jump on the credit card service question. They only know about ...
Round 2 - One-on-one 

(1 Question)

  • Q1. In second round they asked SQL basic, and fundamental of testing only. And credit card service.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't join this organization there is no job security, for experience and fresher as well. They'll give you training and terminate you. And the only reason they gave performance issue.
Such a pathetic organization.

Interview questions from similar companies

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

I applied via Referral and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic MCQ questions which were easy

Round 2 - Technical 

(1 Question)

  • Q1. Basic python coding
Round 3 - Behavioral 

(1 Question)

  • Q1. Regex related coding (mainly to access the mode of thinking)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is defect life cycle?
  • Ans. 

    Defect life cycle is the process of identifying, reporting, fixing, and verifying defects in software development.

    • Defect is identified by testers during testing

    • Defect is reported to the development team

    • Development team fixes the defect

    • Fixed defect is verified by testers

    • Defect is closed if it passes verification

    • If defect fails verification, it is reopened and the cycle continues

  • Answered by AI
  • Q2. What ECP & BVA?
  • Ans. 

    ECP stands for Equivalence Class Partitioning and BVA stands for Boundary Value Analysis.

    • ECP is a testing technique that divides input data into groups that are expected to exhibit similar behavior.

    • BVA is a testing technique that focuses on testing values at the boundaries of input domains.

    • ECP and BVA are used to identify defects in software and improve the quality of testing.

    • For example, if a program accepts input val...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Test scenarios for ATM
  • Ans. 

    Test scenarios for ATM

    • Verify if the ATM is dispensing the correct amount of cash

    • Check if the ATM is accepting valid cards and rejecting invalid ones

    • Test if the ATM is able to handle multiple transactions at the same time

    • Ensure that the ATM is providing proper instructions to the user

    • Validate if the ATM is able to handle network connectivity issues

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please make sure all the testing concepts are clear

Skills evaluated in this interview

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

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

(1 Question)

  • Q1. Find connected components in a graph
  • Ans. 

    Use Depth First Search (DFS) to find connected components in a graph

    • Start by initializing all vertices as unvisited

    • Iterate through each vertex and perform DFS to find connected components

    • Keep track of visited vertices to avoid revisiting

    • Example: For a graph with vertices {A, B, C} and edges {(A, B), (B, C)}, the connected components are {A, B, C}

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

(1 Question)

  • Q1. Design chess game
  • Ans. 

    Design a chess game with proper board setup, piece movements, and win conditions.

    • Create a 8x8 grid to represent the chess board

    • Assign initial positions to each type of chess piece (pawn, rook, knight, bishop, queen, king)

    • Implement rules for each piece's movement (e.g. pawn moves forward, rook moves horizontally/vertically)

    • Check for valid moves and capture opponent's pieces

    • Implement win conditions (checkmate, stalemate)

    • ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - HR 

(2 Questions)

  • Q1. Introduce about yourself
  • Q2. About my qualification

Interview Questionnaire 

1 Question

  • Q1. Online Test: First was the online test for 1hr you have to solve 2 coding questions.(Street light coverage & Candy distribution) After clearing the coding round, HR called me scheduling for technical in...
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Coding Test 

Coding question on string manipulation like tell the type of card based on the string constraints of the given card number.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on string handling.

I applied via Company Website

Interview Questionnaire 

2 Questions

  • Q1. Question related to security
  • Q2. Question related to Data Structure

Interview Preparation Tips

Interview preparation tips for other job seekers - Should study about various data encryption algorithms. About spring security. Data structure
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jul 2023. 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 - Coding Test 

Implement the function "Printlast10lines" such that the program prints the last 10 (or less) in a given string

Round 3 - Technical 

(1 Question)

  • Q1. Delete nth node in a singe linked list
  • Ans. 

    To delete the nth node in a single linked list, we need to find the (n-1)th node and update its next pointer.

    • Traverse the linked list to find the (n-1)th node

    • Update the next pointer of the (n-1)th node to skip the nth node

    • Free the memory allocated to the nth node

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Ask more question probe as much as possible and take time and respond.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jan 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Screening round was a 1 hour coding test. Mostly non leetcode style where the question is incremental - Eg. Identify a pattern in a given text value and extract it then perform subsequent transformations. There is no right or wrong its just how well you are able to do the task.

Round 2 - System Design 

(1 Question)

  • Q1. Resume related system design deep dive
Round 3 - Coding Test 

Another round similar to the first one with an incremental coding test. Question was very lengthy.

Round 4 - Bug Bash 

(1 Question)

  • Q1. SQL database and you need to find out what is wrong with the data
Round 5 - Integration Test 

(1 Question)

  • Q1. Another coding round where you need to go clone a repo and extend an existing feature using the libraries in the documentation provided.

Interview Preparation Tips

Interview preparation tips for other job seekers - Not the kind of test you can prepare for with just Leetcode. Process wears you down.

Corecard Software Interview FAQs

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

Some of the top questions asked at the Corecard Software QA Engineer interview -

  1. They will not ask you hard question 'coz managers don't have knowledge. They ar...read more
  2. In second round they asked SQL basic, and fundamental of testing only. And cre...read more

Tell us how to improve this page.

Corecard Software QA Engineer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more
Corecard Software QA Engineer Salary
based on 14 salaries
₹4.3 L/yr - ₹8.4 L/yr
22% more than the average QA Engineer Salary in India
View more details

Corecard Software QA Engineer Reviews and Ratings

based on 2 reviews

4.9/5

Rating in categories

4.9

Skill development

4.9

Work-life balance

4.9

Salary

4.9

Job security

4.9

Company culture

4.9

Promotions

4.9

Work satisfaction

Explore 2 Reviews and Ratings
Software Developer
67 salaries
unlock blur

₹3.2 L/yr - ₹11.2 L/yr

Application Developer
41 salaries
unlock blur

₹3.5 L/yr - ₹12 L/yr

Senior Software Developer
38 salaries
unlock blur

₹7.6 L/yr - ₹16.5 L/yr

Software Tester
31 salaries
unlock blur

₹3.5 L/yr - ₹9.1 L/yr

Technical Lead
30 salaries
unlock blur

₹10.5 L/yr - ₹22 L/yr

Explore more salaries
Compare Corecard Software with

Mobikwik

3.6
Compare

Spice Money

4.0
Compare

Freecharge

3.8
Compare

Clix Capital Services

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview