Upload Button Icon Add office photos

Filter interviews by

Corecard Software Lead Interview Questions and Answers

Updated 31 Dec 2023

Corecard Software Lead Interview Experiences

1 interview found

Lead Interview Questions & Answers

user image Vishwanath Pratap Singh

posted on 31 Dec 2023

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

I applied via Naukri.com and was interviewed before Dec 2022. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Technical question
  • Q2. About Your self,about you recent project
Round 2 - Technical 

(1 Question)

  • Q1. SME's type question

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Justification of what is written in the resume
  • Q2. Questions on case study to monitor your ability
Round 2 - Assignment 

Case study which need to plan GTM strategy for an existing product

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Sep 2022. There were 4 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. Mapping question
Round 3 - One-on-one 

(1 Question)

  • Q1. Project related
Round 4 - HR 

(1 Question)

  • Q1. Fit check for team

I appeared for an interview in Apr 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing was 9 PM. Platform was not good. Platform was very lagging so overall it was bad experience.

  • Q1. 

    Find the Third Greatest Element

    Given an array 'ARR' of 'N' distinct integers, determine the third largest element in the array.

    Input:

    The first line contains a single integer 'T' representing the numb...
  • Ans. 

    Find the third largest element in an array of distinct integers.

    • Sort the array in descending order and return the element at index 2.

    • Handle cases where the array has less than 3 elements separately.

    • Use a set to store distinct elements for efficient processing.

  • Answered by AI
  • Q2. 

    Longest Palindromic Substring Problem Statement

    You are provided with a string STR of length N. The task is to find the longest palindromic substring within STR. If there are several palindromic substring...

  • Ans. 

    Find the longest palindromic substring in a given string.

    • Iterate through the string and expand around each character to find palindromes

    • Keep track of the longest palindrome found so far

    • Return the longest palindromic substring

  • Answered by AI
  • Q3. 

    Ninja and Geometry Problem Statement

    In this problem, Ninja is provided with two lines on a 2D plane. The first line 'AB' is determined by two points A and B. The second line 'PQ' is determined by two poi...

  • Ans. 

    Calculate the intersection point of two lines on a 2D plane with precision up to six decimal places.

    • Implement a function to calculate the intersection point of two lines on a 2D plane

    • Handle precision up to six decimal places in the output

    • Return -1.000000 -1.000000 if the lines do not intersect

    • Ensure the lines 'AB' and 'PQ' are distinct

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAJupiter Money interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 1.5 monthsInterview preparation tips for other job seekers

Tip 1 : Have some projects.
Tip 2 : Do a course from Coding Ninjas.

Application resume tips for other job seekers

Tip 1 : Keep it short
Tip 2 : Add skills iff you are sure

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Apr 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing was 9 PM. Platform was not good. Platform was very lagging so overall it was bad experience.

  • Q1. 

    Find the Third Greatest Element

    Given an array 'ARR' of 'N' distinct integers, determine the third largest element in the array.

    Input:

    The first line contains a single integer 'T' representing the numb...
  • Ans. 

    Find the third largest element in an array of distinct integers.

    • Sort the array in descending order and return the element at index 2.

    • Handle cases where there are less than 3 elements in the array.

    • Consider edge cases like negative integers and duplicates.

  • Answered by AI
  • Q2. 

    Longest Palindromic Substring Problem Statement

    You are provided with a string STR of length N. The goal is to identify the longest palindromic substring within this string. In cases where multiple palind...

  • Ans. 

    Identify the longest palindromic substring in a given string.

    • Iterate through each character in the string and expand around it to find palindromes

    • Keep track of the longest palindrome found so far

    • Return the longest palindromic substring with the smallest start index

  • Answered by AI
  • Q3. 

    Ninja and Geometry Problem Statement

    In this problem, Ninja is provided with two lines on a 2D plane. The first line 'AB' is determined by two points A and B. The second line 'PQ' is determined by two poi...

  • Ans. 

    Calculate the intersection point of two lines on a 2D plane with precision up to six decimal places.

    • Implement a function to calculate the intersection point of two lines on a 2D plane

    • Handle precision up to six decimal places in the output

    • Return -1.000000 -1.000000 if the lines do not intersect

    • Ensure the lines 'AB' and 'PQ' are distinct

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. Eligibility criteriaAbove 7 CGPAJupiter Money interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Have some projects.
Tip 2 : Do a course from Coding Ninjas.

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Apr 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Hard

Timing was 9 PM. Platform was not good. Platform was very lagging so overall it was bad experience.

  • Q1. 

    Find the Third Greatest Element

    Given an array 'ARR' of 'N' distinct integers, determine the third largest element in the array.

    Input:

    The first line contains a single integer 'T' representing the numb...
  • Ans. 

    Find the third largest element in an array of distinct integers.

    • Sort the array in descending order and return the element at index 2.

    • Handle cases where the array has less than 3 elements separately.

    • Consider using a set to ensure distinct elements in the array.

  • Answered by AI
  • Q2. 

    Longest Palindromic Substring Problem Statement

    You are provided with a string STR of length N. The goal is to identify the longest palindromic substring within this string. In cases where multiple palind...

  • Ans. 

    Identify the longest palindromic substring in a given string.

    • Iterate through the string and expand around each character to find palindromes

    • Keep track of the longest palindrome found

    • Return the longest palindromic substring with the smallest start index

  • Answered by AI
  • Q3. 

    Ninja and Geometry Problem Statement

    In this problem, Ninja is provided with two lines on a 2D plane. The first line 'AB' is determined by two points A and B. The second line 'PQ' is determined by two poi...

  • Ans. 

    Calculate the intersection point of two lines on a 2D plane with precision up to six decimal places.

    • Use the formula for finding the intersection point of two lines in 2D space.

    • Handle precision issues that may arise due to floating-point arithmetic.

    • Return -1.000000 -1.000000 if the lines do not intersect.

    • Ensure the lines 'AB' and 'PQ' are distinct.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAJupiter Money interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Have some projects.
Tip 2 : Do a course from Coding Ninjas.
 

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in May 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 50 mins
Round difficulty - Medium

First round was coding round, where i was asked 2 DS algo questions, 1 was easy and other was of medium difficulty

  • Q1. 

    Shortest Path in a Binary Matrix Problem Statement

    Given a binary matrix of size N * M where each element is either 0 or 1, find the shortest path from a source cell to a destination cell, consisting only...

  • Ans. 

    Find the shortest path in a binary matrix from a source cell to a destination cell consisting only of 1s.

    • Use Breadth First Search (BFS) algorithm to find the shortest path.

    • Keep track of visited cells to avoid revisiting them.

    • Update the path length as you traverse through the matrix.

    • Return -1 if no valid path exists.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 50 mins
Round difficulty - Easy

I was asked to design url shortner

  • Q1. Can you explain how you would design a URL shortener?
  • Ans. 

    Design a URL shortener system

    • Generate a unique short code for each URL

    • Store the mapping of short code to original URL in a database

    • Redirect users from short URL to original URL when accessed

    • Consider implementing features like custom short codes, expiration dates, and analytics

    • Ensure scalability and performance by using distributed systems and caching

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 50 mins
Round difficulty - Medium

This was hiring manager round

  • Q1. Can you discuss a coding problem you encountered, your past projects, and any behavioral questions related to your experiences?
  • Ans. 

    Discussed coding problem, past projects, and behavioral questions in SDE - 1 interview.

    • Coding problem: Discussed how I optimized a sorting algorithm in a previous project.

    • Past projects: Talked about a web application I developed using React and Node.js.

    • Behavioral questions: Shared how I handled a conflict within a team during a project.

    • Example: Explained how I implemented a feature in a mobile app that improved user en

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNAJupiter Money interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Operating System, DBMS, OOPSTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare DS and algo well(i prepared from GFG)
Tip 2 : Must know basics of DBMS and OS
Tip 3 : Be confident and genuine

Application resume tips for other job seekers

Tip 1 : Prepare resume iteratively
Tip 2 : show ur resume to seniors and ask for suggestions

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Aug 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. 1 - Easy Medium Question. Discuss the approach with interviewer and then implement it. The code should work, thats important.
Round 3 - Technical 

(1 Question)

  • Q1. LLD round to design Chess.
Round 4 - One-on-one 

(1 Question)

  • Q1. Hiring manager round. Grilling on resume and past experience questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jan 2024.

Round 1 - HR 

(2 Questions)

  • Q1. What is company KRA KPI
  • Ans. 

    Company KRA KPI stands for Key Result Areas and Key Performance Indicators, which are used to measure the success of an organization.

    • KRA (Key Result Areas) are specific areas of an employee's job responsibilities that are crucial for achieving organizational goals.

    • KPI (Key Performance Indicators) are measurable values that demonstrate how effectively an organization is achieving its key objectives.

    • KRA KPI help in setti...

  • Answered by AI
  • Q2. Regarding company policies
Round 2 - Technical 

(2 Questions)

  • Q1. Some questions are regarding team handling
  • Q2. How to control shrinkage attrition and regarding behavior issue
  • Ans. 

    To control shrinkage attrition and behavior issues, implement proper training, establish clear policies, conduct regular audits, and address issues promptly.

    • Implement proper training for employees on shrinkage prevention and behavior management.

    • Establish clear policies and procedures regarding shrinkage and behavior expectations.

    • Conduct regular audits to identify areas of shrinkage and behavior concerns.

    • Address shrinka...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For internal promotion achieve your targets every month and show your skills like work of ownership and leadership quality
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Arrays, LinkedList basic dsa questions

Round 3 - One-on-one 

(2 Questions)

  • Q1. Binary Tree 2nd largest node
  • Ans. 

    To find the 2nd largest node in a binary tree, we can perform an in-order traversal and keep track of the two largest nodes.

    • Perform an in-order traversal of the binary tree

    • Keep track of the two largest nodes encountered

    • Return the second largest node when traversal is complete

  • Answered by AI
  • Q2. Basic web questions

Skills evaluated in this interview

Corecard Software Interview FAQs

How many rounds are there in Corecard Software Lead interview?
Corecard Software interview process usually has 2 rounds. The most common rounds in the Corecard Software interview process are Technical.
How to prepare for Corecard Software Lead 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 Application Support, Change Management, ITIL, Unix Shell Scripting and V3.
What are the top questions asked in Corecard Software Lead interview?

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

  1. Technical quest...read more
  2. SME's type quest...read more

Tell us how to improve this page.

Corecard Software Lead Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Freecharge Interview Questions
3.8
 • 53 Interviews
Mobikwik Interview Questions
3.6
 • 47 Interviews
Jupiter Money Interview Questions
3.3
 • 29 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.4
 • 22 Interviews
Crif Solutions Interview Questions
3.3
 • 19 Interviews
View all
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
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