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
-
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
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
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.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was 30 min coding test and question was from easy level DSA question

Round 2 - Technical 

(2 Questions)

  • Q1. Difference between react and next
  • Ans. 

    React is a JavaScript library for building user interfaces, while Next is a framework for building server-side rendered React applications.

    • React is a JavaScript library for building user interfaces.

    • Next is a framework for building server-side rendered React applications.

    • Next provides features like server-side rendering, static site generation, and routing out of the box.

  • Answered by AI
  • Q2. What is Nodejs and its event loop
  • Ans. 

    Node.js is a runtime environment that allows you to run JavaScript on the server side.

    • Node.js is built on Chrome's V8 JavaScript engine.

    • It uses an event-driven, non-blocking I/O model.

    • The event loop is responsible for handling asynchronous operations in Node.js.

    • Example: Reading a file asynchronously in Node.js using fs module.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Machine coding.
Code structure, naming, best practices are more important than time or space complexity.

Round 2 - Coding Test 

Same as Round 1, except more complex problem statement

Round 3 - Technical 

(1 Question)

  • Q1. Integration round. Given a library, do some operations with it, i.e. pull specific data point from file, make an POST call using different data point etc.
Round 4 - Technical 

(1 Question)

  • Q1. Given a codebase, fix a specific bug
  • Ans. 

    I would start by reproducing the bug, analyzing the code, identifying the root cause, implementing a fix, testing the fix, and finally deploying it.

    • Reproduce the bug by following the steps that lead to the issue.

    • Analyze the code surrounding the bug to understand the context and potential causes.

    • Identify the root cause of the bug by debugging and tracing the code execution.

    • Implement a fix by making the necessary code ch...

  • Answered by AI
Round 5 - Technical 

(1 Question)

  • Q1. Standard HLD/LLD design problem
  • Ans. 

    HLD focuses on overall system architecture, while LLD delves into specific implementation details.

    • HLD includes components, modules, interfaces, and dependencies.

    • LLD involves detailed class diagrams, data structures, algorithms, and database schema.

    • Example: HLD may outline a system using microservices architecture, while LLD may specify how each microservice communicates and stores data.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewing here is very very different than MAANG companies.
Speed of execution matters, but best practices matter more.
Time and space complexity is not tested at all!

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

LLD for load balancer

Round 2 - One-on-one 

(1 Question)

  • Q1. API integrations, integrate 3rd party API to visualize ride locations and generate images
Round 3 - Coding Test 

Solve a bug in JSON like parsing library

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

Exam to test reasoning and aptitude, and speed to answer them

Round 2 - Coding Test 

Dsa question easy to medium level

Round 3 - Behavioral 

(5 Questions)

  • Q1. Just culture fit question, and medium dsa questions
  • Q2. Print pyramid from Fibonacci sequence
  • Ans. 

    Print pyramid from Fibonacci sequence

    • Generate Fibonacci sequence up to a certain number

    • Use the Fibonacci numbers to create the pyramid structure

    • Print each row of the pyramid with appropriate spacing

  • Answered by AI
  • Q3. Linked list sort
  • Q4. Design SQL tables for library management system
  • Ans. 

    Design SQL tables for library management system

    • Create tables for books, authors, members, transactions, etc.

    • Use primary and foreign keys to establish relationships between tables

    • Include columns like book title, author name, member ID, due date, etc.

  • Answered by AI
  • Q5. Valid bracket dsa question

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Java , Spring, SQL questions asked without one data structure basic live coding question

Round 2 - HR 

(2 Questions)

  • Q1. What are your expectation to work with us
  • Q2. How will you manage to improve with us

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

Interview Questions from Similar Companies

Freecharge Interview Questions
3.8
 • 53 Interviews
Mobikwik Interview Questions
3.6
 • 48 Interviews
Jupiter Money Interview Questions
3.3
 • 30 Interviews
Spice Money Interview Questions
4.0
 • 29 Interviews
Paytm Money Interview Questions
3.2
 • 27 Interviews
Verifone Interview Questions
3.3
 • 24 Interviews
Stripe Interview Questions
3.1
 • 22 Interviews
Crif Solutions Interview Questions
3.3
 • 19 Interviews
View all
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
70 salaries
unlock blur

₹3.2 L/yr - ₹11.1 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