Upload Button Icon Add office photos

Filter interviews by

Corecard Software Interview Questions and Answers

Updated 2 Jan 2025

Corecard Software Interview Experiences

Popular Designations

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
  • 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

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
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

Report Developer Interview Questions asked at other Companies

Q1. What is Like funcation
View answer (1)

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

Test Engineer Interview Questions asked at other Companies

Q1. 1. What is the frame work u have worked and explain the framework with folder structure? 2. purely based on testing, different testing types like functional and non functional tests 3. real time scenarios like last min bugs before release? ... read more
View answer (4)
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

Devops Engineer Interview Questions asked at other Companies

Q1. Reverse the String Problem Statement You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string. Example: Input: STR = "abcde" Output: "edcba" Input: The first line of input cont... read more
View answer (3)

Corecard Software interview questions for popular designations

 Software Developer

 (2)

 Analyst

 (1)

 Software Engineer

 (1)

 Senior Software Developer

 (1)

 Test Engineer

 (1)

 Lead

 (1)

 System Administrator

 (1)

 Software Tester

 (1)

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

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

System Administrator Interview Questions asked at other Companies

Q1. 2. What is Cloud Technology. What is Microsoft Intune. If we can manage applications using MAM then why do we need MDM?
View answer (8)

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.

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)

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

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci Number Problem Statement Given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 + 7. Formula: F(n) = F(n-... read more
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic c++ and sql questions

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

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.

Software Tester Interview Questions asked at other Companies

Q1. Which is a best technique to generate automated test report ?
View answer (1)

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

Senior CSA Interview Questions asked at other Companies

Q1. Would you be able to sell 100 Refrigerators to 100 families living in North Pole? How many would you be able to sell?
View answer (1)

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.

Corecard Software Interview Process

based on 11 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 796 Interviews
Freecharge Interview Questions
3.8
 • 53 Interviews
Nelito System Interview Questions
3.4
 • 24 Interviews
View all

Corecard Software Reviews and Ratings

based on 168 reviews

3.7/5

Rating in categories

3.3

Skill development

3.4

Work-life balance

3.9

Salary

3.4

Job security

3.6

Company culture

3.6

Promotions

3.3

Work satisfaction

Explore 168 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
35 salaries
unlock blur

₹8 L/yr - ₹16.5 L/yr

Software Tester
32 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

Nelito System

3.5
Compare

Financial Software & Systems

3.8
Compare

Nucleus Software Exports

3.5
Compare

Intellect Design Arena

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