Upload Button Icon Add office photos

Filter interviews by

LendingKart Interview Questions, Process, and Tips for Freshers

Updated 17 Dec 2024

Top LendingKart Interview Questions and Answers for Freshers

View all 7 questions

LendingKart Interview Experiences for Freshers

Popular Designations

8 interviews found

Interview Questions & Answers

user image Anonymous

posted on 27 Oct 2024

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

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Coding Test 

2coding questions and MCQs

Round 2 - Technical 

(2 Questions)

  • Q1. DBMS related questions
  • Q2. Medium coding question
Round 3 - Technical 

(2 Questions)

  • Q1. Scenario based question
  • Q2. Questions related to my projects
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected

I applied via Referral

Round 1 - Coding Test 

2 coding problem and 10 mcq

Round 2 - Technical 

(2 Questions)

  • Q1. Cycle detection in linkedlist
  • Ans. 

    Cycle detection in linked list involves using two pointers, one moving at twice the speed of the other.

    • Use two pointers, one moving at twice the speed of the other

    • If there is a cycle, the two pointers will eventually meet

    • Use Floyd's Tortoise and Hare algorithm for efficient cycle detection

  • Answered by AI
  • Q2. Discussion on project

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Intern Interview Questions & Answers

user image Anonymous

posted on 13 Jun 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 Ds questions. About Linked list ans arrays and some aptitude questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Implement Merge Sort algo
  • Ans. 

    Merge Sort is a divide and conquer algorithm that divides the input array into two halves, sorts them recursively, and then merges the sorted halves.

    • Divide the array into two halves

    • Recursively sort each half

    • Merge the sorted halves back together

  • Answered by AI
  • Q2. Two sum problem in optimised form
  • Ans. 

    The Two Sum problem involves finding two numbers in an array that add up to a specific target.

    • Use a hashmap to store the difference between the target and each element in the array.

    • Iterate through the array and check if the current element's complement exists in the hashmap.

    • Return the indices of the two numbers that add up to the target.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Discussion about the projects in resume
  • Q2. NoSql Vs Sql , advantages and disadvantages
  • Ans. 

    NoSQL databases are non-relational, flexible, and scalable, while SQL databases are relational, structured, and consistent.

    • NoSQL databases are schema-less, allowing for flexibility in data models.

    • SQL databases use structured query language for data manipulation and retrieval.

    • NoSQL databases are horizontally scalable, making them suitable for big data applications.

    • SQL databases are vertically scalable, which can be more...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through the basics.

Skills evaluated in this interview

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

Loan Officer Interview Questions & Answers

user image Anonymous

posted on 16 Feb 2024

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

I applied via Referral and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Difference between BL and PL
  • Ans. 

    BL stands for Business Loan, used for business purposes. PL stands for Personal Loan, used for personal expenses.

    • BL is used for business purposes while PL is used for personal expenses

    • BL requires documentation related to business while PL requires personal documentation

    • BL may have higher loan amounts and longer repayment terms compared to PL

    • Examples: BL can be used to expand a business, while PL can be used for home re

  • Answered by AI

Loan Officer Interview Questions asked at other Companies

Q1. How will you persuade someone to take loan from you
View answer (1)

LendingKart interview questions for popular designations

 Senior Software Engineer

 (3)

 Credit Analyst

 (2)

 Software Developer Intern

 (2)

 Data Scientist

 (1)

 Manager

 (1)

 Software Engineer

 (1)

 Data Analyst

 (1)

 Engineering Manager

 (1)

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

(1 Question)

  • Q1. Basic programming question

Interview Preparation Tips

Interview preparation tips for other job seekers - practice adhoc interview questions

Electrical GET Interview Questions asked at other Companies

Q1. Can you explain Ohm's Law and how it relates to electrical circuits? What is the difference between AC (Alternating Current) and DC (Direct Current)? Describe the difference between analog and digital signals. Give an example of each. How w... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

DSA with 2 question
2 medium and 15 Aptitude and Logical question
1.2 hrs

Round 2 - One-on-one 

(3 Questions)

  • Q1. OOPS Concepts with basic coding
  • Q2. 2 Logical question and the Explanations with some coding
  • Q3. Github Project explanation and Question

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Jobs at LendingKart

View all
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Logical and 2 Coding questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Git Hub Project and Explanation
  • Ans. 

    GitHub is a platform for version control and collaboration on software projects.

    • GitHub allows developers to track changes in their codebase over time.

    • It enables collaboration among team members by providing tools for code review, issue tracking, and project management.

    • Developers can contribute to open source projects by forking repositories, making changes, and submitting pull requests.

    • GitHub also offers features like ...

  • Answered by AI
  • Q2. Algorithm Explanation and Use Case
  • Ans. 

    Explanation of algorithms and their use cases

    • Algorithms are step-by-step procedures for solving problems

    • Common algorithms include sorting, searching, and graph traversal

    • Use cases include optimizing resource allocation, data analysis, and machine learning

  • Answered by AI

Skills evaluated in this interview

Software Engineer Intern Interview Questions asked at other Companies

Q1. Check if Two Trees are Mirror Given two arbitrary binary trees, your task is to determine whether these two trees are mirrors of each other. Explanation: Two trees are considered mirror of each other if: The roots of both the trees are the... read more
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Mostly revolves around SQL, A bit of python and in that also specially pandas and might be a bit of excel
Round 2 - Technical 

(1 Question)

  • Q1. SQL a bit advanced, Pandas and Python, and around your projects some time and if you mentioned ML then some questions around it mostly logistic regression,random foresr

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready with SQL and Pandas along with some excel
In ML logistic regression and random forest mostly asked

Data Scientist Interview Questions asked at other Companies

Q1. for a data with 1000 samples and 700 dimensions, how would you find a line that best fits the data, to be able to extrapolate? this is not a supervised ML problem, there's no target. and how would you do it, if you want to treat this as a s... read more
View answer (5)

Interview questions from similar companies

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

I applied via Walk-in and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is Interface in C#?
  • Ans. 

    Interface in C# is a reference type that defines a contract for classes to implement certain methods and properties.

    • Interfaces contain only method signatures, properties, events, or indexers.

    • Classes can implement multiple interfaces but inherit from only one class.

    • Interfaces are used to achieve abstraction, multiple inheritance, and polymorphism.

    • Example: public interface IShape { void Draw(); }

    • Example: public class Cir...

  • Answered by AI
  • Q2. Contract, Multiple Interfaces, Polymorphism & Abstraction.
Round 2 - HR 

(2 Questions)

  • Q1. Salary expectation?
  • Q2. Salary discussion

Interview Preparation Tips

Topics to prepare for BA Continuum Senior Software Engineer interview:
  • Object Oriented Programming
  • Microsft.Net
  • C#
  • SQL

Skills evaluated in this interview

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

Round 1 - Technical 

(1 Question)

  • Q1. Telephonic Interview 1. Questions related to sql and ETL
Round 2 - Technical 

(1 Question)

  • Q1. Client interview in Webex. Basics Sql questions
Round 3 - Behavioral 

(1 Question)

  • Q1. Introduction about company and self intro

Interview Preparation Tips

Interview preparation tips for other job seekers - Confidenty attend interview. Don't loose your hope. Anything can happen in anytime.

LendingKart Interview FAQs

How many rounds are there in LendingKart interview for freshers?
LendingKart interview process for freshers usually has 2 rounds. The most common rounds in the LendingKart interview process for freshers are Technical, One-on-one Round and Coding Test.
How to prepare for LendingKart interview for freshers?
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 LendingKart. The most common topics and skills that interviewers at LendingKart expect are Communication Skills, Auditing, BPO Customer Service, Back Office and Back Office Operations.
What are the top questions asked in LendingKart interview for freshers?

Some of the top questions asked at the LendingKart interview for freshers -

  1. NoSql Vs Sql , advantages and disadvanta...read more
  2. Two sum problem in optimised f...read more
  3. Git Hub Project and Explanat...read more
How long is the LendingKart interview process?

The duration of LendingKart interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

LendingKart Interview Process for Freshers

based on 7 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

BA Continuum Interview Questions
4.1
 • 100 Interviews
Hero FinCorp Interview Questions
4.0
 • 90 Interviews
Veritas Finance Interview Questions
4.5
 • 75 Interviews
mPokket Interview Questions
3.8
 • 71 Interviews
Kinara Capital Interview Questions
4.3
 • 68 Interviews
Aye Finance Interview Questions
4.1
 • 63 Interviews
SBFC Finance Interview Questions
3.6
 • 60 Interviews
View all

LendingKart Reviews and Ratings

based on 415 reviews

3.2/5

Rating in categories

3.0

Skill development

3.1

Work-life balance

3.4

Salary

2.8

Job security

3.1

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 415 Reviews and Ratings
Data Scientist- ML

Bangalore Rural,

Ahmedabad

3-8 Yrs

Not Disclosed

Customer Operations - Executive

Ahmedabad

₹ 0.5-2.25 LPA

Explore more jobs
Assistant Manager
109 salaries
unlock blur

₹3.2 L/yr - ₹8.2 L/yr

Credit Analyst
92 salaries
unlock blur

₹2.7 L/yr - ₹5.8 L/yr

Senior Product Manager
85 salaries
unlock blur

₹18.2 L/yr - ₹75 L/yr

Loan Specialist
77 salaries
unlock blur

₹2 L/yr - ₹3.6 L/yr

Deputy Manager
62 salaries
unlock blur

₹5 L/yr - ₹13.8 L/yr

Explore more salaries
Compare LendingKart with

Home Credit Finance

4.1
Compare

Kogta Financial India Limited

4.7
Compare

Sammaan Capital Limited

3.7
Compare

Hero FinCorp

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