Upload Button Icon Add office photos

Corecard Software

Compare button icon Compare button icon Compare

Filter interviews by

Corecard Software Interview Questions and Answers

Updated 2 Jan 2025
Popular Designations

10 Interview questions

A Devops Engineer was asked 5mo ago
Q. What is cloud technology?
Ans. 

Cloud technology refers to the use of remote servers hosted on the internet to store, manage, and process data.

  • Allows for on-demand access to a shared pool of resources

  • Enables scalability and flexibility for businesses

  • Examples include Amazon Web Services (AWS), Microsoft Azure, Google Cloud Platform

View all Devops Engineer interview questions
A Report Developer was asked 8mo ago
Q. What is the LIKE function?
Ans. 

The Like function is used in SQL to search for a specified pattern in a column.

  • Used in SQL to search for a specified pattern in a column

  • Can use wildcards like % and _ for pattern matching

  • Example: SELECT * FROM table WHERE column LIKE 'abc%'

View all Report Developer interview questions
A Report Developer was asked 8mo ago
Q. What is GROUP BY?
Ans. 

Group by is a clause in SQL used to arrange identical data into groups based on one or more columns.

  • Group by is used in conjunction with aggregate functions like COUNT, SUM, AVG, etc.

  • It is commonly used to summarize data and perform calculations on grouped data.

  • For example, SELECT department, COUNT(employee_id) FROM employees GROUP BY department;

View all Report Developer interview questions
A Test Engineer was asked 10mo ago
Q. What is your expected salary in LPA?
Ans. 

LPA stands for 'Lakhs Per Annum', a common salary metric in India, indicating annual earnings in lakhs.

  • 1 LPA = 1,00,000 INR per year.

  • Commonly used in job offers to indicate salary.

  • Example: A salary of 5 LPA means 5,00,000 INR annually.

  • Helps in comparing salaries across different job roles.

View all Test Engineer interview questions
A Software Developer was asked 12mo ago
Q. How do you retrieve the second highest salary from a database?
Ans. 

To find the 2nd highest salary, use SQL queries to filter and sort salary data effectively.

  • Use SQL's DISTINCT keyword to eliminate duplicate salaries.

  • Example: SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 1;

  • Alternatively, use a subquery: SELECT MAX(salary) FROM employees WHERE salary < (SELECT MAX(salary) FROM employees);

  • Ensure your database has proper indexing on the salary column f...

View all Software Developer interview questions
A Senior CSA was asked
Q. What is operator overloading?
Ans. 

Operator overloading is the ability to redefine operators for user-defined types.

  • Allows operators to be used with user-defined types

  • Can simplify code and make it more readable

  • Examples include overloading the + operator for string concatenation

View all Senior CSA interview questions
A Senior CSA was asked
Q. What is function overriding?
Ans. 

Function overreading refers to the ability of a function to read beyond the end of an array.

  • Function overreading can lead to security vulnerabilities and crashes.

  • It can occur when a function does not properly check the bounds of an array before accessing its elements.

  • For example, if an array has 10 elements and a function tries to access the 11th element, it may read data from an unintended memory location.

  • This ca...

View all Senior CSA interview questions
Are these interview questions helpful?
A Senior CSA was asked
Q. What is a virtual function?
Ans. 

A virtual function is a function in a base class that is overridden by a derived class, allowing polymorphic behavior.

  • Virtual functions are used in object-oriented programming to achieve runtime polymorphism.

  • They are declared in the base class with the 'virtual' keyword and can be overridden in derived classes.

  • When a virtual function is called through a base class pointer or reference, the appropriate derived clas...

View all Senior CSA interview questions
An Analyst was asked
Q. What are joins? Types of joins
Ans. 

Joins are used in databases to combine rows from two or more tables based on a related column between them.

  • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

  • INNER JOIN returns rows when there is at least one match in both tables

  • LEFT JOIN returns all rows from the left table and the matched rows from the right table

  • RIGHT JOIN returns all rows from the right table and the matched rows from the l...

View all Analyst interview questions
A Software Developer was asked 12mo ago
Q. DSA algorithms on bubble and merge sort
Ans. 

Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order. Merge sort is a divide and conquer algorithm that divides the input array into two halves, recursively sorts the two halves, and then merges the sorted halves.

  • Bubble sort has a time complexity of O(n^2) in worst case scenario, while merge sort has a time comple...

View all Software Developer interview questions

Corecard Software Interview Experiences

17 interviews found

Software Developer Interview Questions & Answers

user image Samarth Shrivastava

posted on 25 Jun 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

Basic questions code snipet , string questions and sql mcq's

Round 2 - Technical 

(2 Questions)

  • Q1. To get 2nd highest salary from database
  • Ans. 

    To find the 2nd highest salary, use SQL queries to filter and sort salary data effectively.

    • Use SQL's DISTINCT keyword to eliminate duplicate salaries.

    • Example: SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 1;

    • Alternatively, use a subquery: SELECT MAX(salary) FROM employees WHERE salary < (SELECT MAX(salary) FROM employees);

    • Ensure your database has proper indexing on the salary column for pe...

  • Answered by AI
  • Q2. Questions on DSA
Round 3 - Technical 

(2 Questions)

  • Q1. SQL coding question
  • Q2. DSA algorithms on bubble and merge sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order. Merge sort is a divide and conquer algorithm that divides the input array into two halves, recursively sorts the two halves, and then merges the sorted halves.

    • Bubble sort has a time complexity of O(n^2) in worst case scenario, while merge sort has a time complexity ...

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

(2 Questions)

  • Q1. What is Like funcation
  • Ans. 

    The Like function is used in SQL to search for a specified pattern in a column.

    • Used in SQL to search for a specified pattern in a column

    • Can use wildcards like % and _ for pattern matching

    • Example: SELECT * FROM table WHERE column LIKE 'abc%'

  • Answered by AI
  • Q2. What is group by
  • Ans. 

    Group by is a clause in SQL used to arrange identical data into groups based on one or more columns.

    • Group by is used in conjunction with aggregate functions like COUNT, SUM, AVG, etc.

    • It is commonly used to summarize data and perform calculations on grouped data.

    • For example, SELECT department, COUNT(employee_id) FROM employees GROUP BY department;

  • Answered by AI

Skills evaluated in this interview

Test Engineer Interview Questions & Answers

user image Ojaswi Nikose

posted on 2 Aug 2024

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

(2 Questions)

  • Q1. Did not remember
  • Q2. Did not display
Round 2 - Technical 

(2 Questions)

  • Q1. Project work on
  • Q2. Having knowledge of jira
Round 3 - HR 

(2 Questions)

  • Q1. Location asking
  • Q2. How much Lpa explained
  • Ans. 

    LPA stands for 'Lakhs Per Annum', a common salary metric in India, indicating annual earnings in lakhs.

    • 1 LPA = 1,00,000 INR per year.

    • Commonly used in job offers to indicate salary.

    • Example: A salary of 5 LPA means 5,00,000 INR annually.

    • Helps in comparing salaries across different job roles.

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is cloud technology
  • Ans. 

    Cloud technology refers to the use of remote servers hosted on the internet to store, manage, and process data.

    • Allows for on-demand access to a shared pool of resources

    • Enables scalability and flexibility for businesses

    • Examples include Amazon Web Services (AWS), Microsoft Azure, Google Cloud Platform

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

(2 Questions)

  • Q1. VMware and hyper V
  • Q2. Addc and system administrator

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.

Analyst Interview Questions & Answers

user image Nilesh Nikumbhe

posted on 24 Mar 2024

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

(2 Questions)

  • Q1. Basic sql question
  • Q2. What are joins? Types of joins
  • Ans. 

    Joins are used in databases to combine rows from two or more tables based on a related column between them.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • INNER JOIN returns rows when there is at least one match in both tables

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table

    • RIGHT JOIN returns all rows from the right table and the matched rows from the left t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont go.

Skills evaluated in this interview

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

(1 Question)

  • Q1. Basic c++ and sql questions

Software Tester Interview Questions & Answers

user image Ojaswi D.Nikose

posted on 21 Jun 2022

I applied via Naukri.com and was interviewed in May 2022. There were 3 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Questions on manual testing
  • Q2. Questions on test case
  • Q3. Questions on different different testing
  • Q4. Retesting, Regression testing, sit, integration
Round 2 - Technical 

(1 Question)

  • Q1. Questions regarding your project
Round 3 - HR 

(2 Questions)

  • Q1. About your education background
  • Q2. Salary discussion, details about company

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview of this company is going good. Interview panel is good.

Senior CSA Interview Questions & Answers

user image Anonymous

posted on 6 Sep 2022

I applied via Campus Placement and was interviewed in Aug 2022. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is Vertual function
  • Ans. 

    A virtual function is a function in a base class that is overridden by a derived class, allowing polymorphic behavior.

    • Virtual functions are used in object-oriented programming to achieve runtime polymorphism.

    • They are declared in the base class with the 'virtual' keyword and can be overridden in derived classes.

    • When a virtual function is called through a base class pointer or reference, the appropriate derived class fun...

  • Answered by AI
  • Q2. What is oparator overloding
  • Ans. 

    Operator overloading is the ability to redefine operators for user-defined types.

    • Allows operators to be used with user-defined types

    • Can simplify code and make it more readable

    • Examples include overloading the + operator for string concatenation

  • Answered by AI
  • Q3. What is function overreading
  • Ans. 

    Function overreading refers to the ability of a function to read beyond the end of an array.

    • Function overreading can lead to security vulnerabilities and crashes.

    • It can occur when a function does not properly check the bounds of an array before accessing its elements.

    • For example, if an array has 10 elements and a function tries to access the 11th element, it may read data from an unintended memory location.

    • This can be ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Corecard Software Senior CSA interview:
  • Opps concept
  • DBMS
  • C/c++
Interview preparation tips for other job seekers - Yes i will tell the person who will be eligible for this position what to say and guid him to do the job

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Corecard Software?
Ask anonymously on communities.

Corecard Software Interview FAQs

How many rounds are there in Corecard Software interview?
Corecard Software interview process usually has 1-2 rounds. The most common rounds in the Corecard Software interview process are Technical, One-on-one Round and HR.
How to prepare for Corecard Software interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Corecard Software. The most common topics and skills that interviewers at Corecard Software expect are SQL Server, SQL, AWS, Testing and Database Administration.
What are the top questions asked in Corecard Software interview?

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

  1. What is Vertual funct...read more
  2. What is oparator overlod...read more
  3. What is function overread...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 11 interview experiences

Difficulty level

Moderate 75%
Hard 25%

Duration

Less than 2 weeks 67%
2-4 weeks 33%
View more

Interview Questions from Similar Companies

Freecharge Interview Questions
3.8
 • 57 Interviews
Mobikwik Interview Questions
3.6
 • 55 Interviews
BharatPe Interview Questions
3.4
 • 43 Interviews
Spice Money Interview Questions
4.1
 • 32 Interviews
Jupiter Money Interview Questions
3.1
 • 31 Interviews
Paytm Money Interview Questions
3.2
 • 27 Interviews
Verifone Interview Questions
3.3
 • 26 Interviews
Stripe Interview Questions
3.1
 • 23 Interviews
View all

Corecard Software Reviews and Ratings

based on 196 reviews

3.8/5

Rating in categories

3.4

Skill development

3.5

Work-life balance

3.9

Salary

3.4

Job security

3.6

Company culture

3.6

Promotions

3.4

Work satisfaction

Explore 196 Reviews and Ratings
Software Developer
88 salaries
unlock blur

₹3.2 L/yr - ₹10.6 L/yr

Application Developer
41 salaries
unlock blur

₹3.6 L/yr - ₹12.6 L/yr

Senior Software Developer
38 salaries
unlock blur

₹7.6 L/yr - ₹18 L/yr

Technical Lead
34 salaries
unlock blur

₹10.5 L/yr - ₹22 L/yr

Software Tester
33 salaries
unlock blur

₹3.5 L/yr - ₹9.1 L/yr

Explore more salaries
Compare Corecard Software with

Mobikwik

3.6
Compare

BharatPe

3.5
Compare

Spice Money

4.1
Compare

Freecharge

3.8
Compare
write
Share an Interview