Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by LenDenClub Team. If you also belong to the team, you can get access from here

LenDenClub Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

LenDenClub Graduate Engineer Interview Questions and Answers

Updated 12 May 2024

LenDenClub Graduate Engineer Interview Experiences

1 interview found

Graduate Engineer Interview Questions & Answers

user image Rohan Rathod

posted on 12 May 2024

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

I applied via Campus Placement and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Assignment 

We were told to make a address management system

Round 2 - One-on-one 

(1 Question)

  • Q1. There were a lot of questions on SQL and React along with that there was a puzzle based on water tabker, logical question and question related to assignment were asked
Round 3 - One-on-one 

(1 Question)

  • Q1. This was a little difficult, i was made to solve sql hard and DSA and explain my code for the assignment
Round 4 - HR 

(1 Question)

  • Q1. It was a final round no one was eliminated and it was more like a meeting session

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare SQL DSA and make good assignment or score good in apti

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(2 Questions)

  • Q1. Next Greater Element in an array
  • Ans. 

    Find the next greater element in an array for each element

    • Iterate through the array and for each element, find the next greater element

    • Use a stack to keep track of elements whose next greater element is not yet found

    • If the current element is greater than the top element of the stack, pop the stack and mark the popped element's next greater element as the current element

    • Push the current element onto the stack

    • If there ar...

  • Answered by AI
  • Q2. Question based on Sql inner join

Interview Preparation Tips

Interview preparation tips for other job seekers - Solve LC questions and go through HLD design videos

Skills evaluated in this interview

Round 1 - One-on-one 

(3 Questions)

  • Q1. Tell me about yourself?
  • Q2. Tell me about your daily activities in your current company?
  • Q3. Why do you want to work in i-exceed
Round 2 - Technical 

(7 Questions)

  • Q1. Explain websphere installation methods followed
  • Ans. 

    WebSphere installation methods include GUI, silent, and response file installations.

    • WebSphere can be installed using a graphical user interface (GUI).

    • Silent installation allows for installation without user interaction.

    • Response file installation uses a pre-recorded response file to automate the installation process.

  • Answered by AI
  • Q2. What is meant by connection pool properties
  • Ans. 

    Connection pool properties refer to the settings that control the behavior of a connection pool.

    • Connection pool properties include settings such as maximum connections, minimum connections, and connection timeout.

    • These properties can be configured in the application server or in the database driver.

    • The purpose of connection pool properties is to optimize the use of database connections and improve application performan...

  • Answered by AI
  • Q3. Explain garbage collection
  • Ans. 

    Garbage collection is an automatic memory management process that frees up memory occupied by objects that are no longer in use.

    • Garbage collection is performed by the JVM in Java and CLR in .NET languages.

    • It helps prevent memory leaks and null pointer exceptions.

    • Garbage collection can be triggered manually or automatically.

    • Examples of garbage collection algorithms include mark-and-sweep, reference counting, and copying

  • Answered by AI
  • Q4. How ssl achieved in websphere
  • Ans. 

    SSL in WebSphere is achieved through configuration of SSL certificates and enabling SSL protocols.

    • SSL configuration involves generating and importing SSL certificates

    • SSL protocols such as TLS can be enabled through server.xml configuration

    • WebSphere also supports SSL offloading through plug-in configuration

    • SSL can be enforced for specific applications or URLs through web.xml configuration

  • Answered by AI
  • Q5. How security configured in websphere
  • Ans. 

    Security in WebSphere is configured through various mechanisms such as SSL, authentication, authorization, and encryption.

    • SSL can be configured to secure communication between clients and servers

    • Authentication can be configured using various methods such as LDAP, database, or custom authentication

    • Authorization can be configured using role-based access control or custom authorization

    • Encryption can be configured to secur

  • Answered by AI
  • Q6. Any work experience in other middleware platforms
  • Ans. 

    Yes, I have experience in working with Apache Kafka and RabbitMQ.

    • Worked on developing microservices using Apache Kafka as a messaging platform

    • Implemented RabbitMQ for message queuing in a project

    • Experience in configuring and managing both platforms

  • Answered by AI
  • Q7. Any exposure in devops, cloud technologies
  • Ans. 

    Yes, I have experience in both devops and cloud technologies.

    • I have worked with AWS, Azure, and Google Cloud Platform.

    • I have experience with containerization using Docker and Kubernetes.

    • I have worked with CI/CD pipelines using tools like Jenkins and GitLab.

    • I have experience with infrastructure as code using tools like Terraform and CloudFormation.

  • Answered by AI
Round 3 - HR 

(5 Questions)

  • Q1. Twll me about yourself
  • Q2. What is tour current ctc
  • Ans. 

    My current CTC is confidential.

    • I prefer not to disclose my current CTC as it may affect negotiations.

    • I am open to discussing my salary expectations for this role.

    • My previous salary was in line with industry standards for my experience level.

  • Answered by AI
  • Q3. What is the expected ctc
  • Ans. 

    The expected CTC depends on the company's budget and the candidate's experience and skills.

    • The CTC can vary based on the company's location and industry.

    • The candidate's negotiation skills can also impact the final CTC.

    • The CTC can be influenced by the candidate's education, certifications, and previous work experience.

    • The CTC can range from 8-10 lakhs per annum for a Senior Software Engineer role in India.

    • Some companies...

  • Answered by AI
  • Q4. Why we need to recruit you in our company
  • Q5. How good are you to prove that you are genuine at work

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Apr 2023. There were 6 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 

First round was aptitude and 2 coding questions

Round 3 - Technical 

(2 Questions)

  • Q1. Second round was face to face was fully technical asked me code some basic code
  • Q2. Find 2nd largest decimal number from given numbers
  • Ans. 

    Iterate through the numbers and keep track of the largest and second largest numbers.

    • Iterate through the numbers and compare each number with the current largest and second largest numbers.

    • Update the second largest number if a new number is found that is greater than the current second largest number.

    • Return the second largest number at the end of the iteration.

  • Answered by AI
Round 4 - One-on-one 

(1 Question)

  • Q1. Next was manager round it was also little technical
Round 5 - One-on-one 

(1 Question)

  • Q1. This round was with vice president
Round 6 - HR 

(1 Question)

  • Q1. This round was final round about salary negotiation and hr round
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

Technical SQL Coding Round of 1 hour

Began with 2 easy generic question -
1. No. of record on different types of joins.
2. Employees who have higher salaries than their managers,

Then moved to medium questions -
1. Implement Rolling sum with & without window functions.
2. Other questions were on CTEs, Joins & other complex queries.

Round 3 - Case Study 

Bar Raiser Round of 1 hour involving -

1. Case study: How can we leverage product knowledge & analytics to increase Amazon Prime Revenue from 10% to 12%?

2. Metrics awareness: Common metrics discussion like DAU, PDAU, MAU, Retention, Churn, etc.

3. Resume based work exp discussion

Round 4 - HR 

(1 Question)

  • Q1. Quick culture fitment round with HR discussing about past work experience, my expectations & why I want to join Jupiter.

Interview Preparation Tips

Topics to prepare for Jupiter Money Data Analyst interview:
  • SQL
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Apr 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 - One-on-one 

(1 Question)

  • Q1. Find connected components in a graph
  • Ans. 

    Use Depth First Search (DFS) to find connected components in a graph

    • Start by initializing all vertices as unvisited

    • Iterate through each vertex and perform DFS to find connected components

    • Keep track of visited vertices to avoid revisiting

    • Example: For a graph with vertices {A, B, C} and edges {(A, B), (B, C)}, the connected components are {A, B, C}

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Design chess game
  • Ans. 

    Design a chess game with proper board setup, piece movements, and win conditions.

    • Create a 8x8 grid to represent the chess board

    • Assign initial positions to each type of chess piece (pawn, rook, knight, bishop, queen, king)

    • Implement rules for each piece's movement (e.g. pawn moves forward, rook moves horizontally/vertically)

    • Check for valid moves and capture opponent's pieces

    • Implement win conditions (checkmate, stalemate)

    • ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Case Study 

How to increase personal insurance revenue to 5x?

Software Developer Interview Questions & Answers

FNZ user image Rudraksh Sharma

posted on 12 Nov 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 May 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

We in group of 10 were given a topic on which 2 feature to select out of 4 for a project, it lasted about 10 minutes, was ok

Round 2 - Case Study 

Given a case study of a company, analyze it in 10 minutes and then questions were asked, i don't think it was useful for a Developer Role

Interview Preparation Tips

Interview preparation tips for other job seekers - Well not a good company for tech guys, they asked all non technical part to me, later on few students were given the coding link
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic SQL questions are asked in this round Some theory questions are asked as well

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on SQL
practice plenty of SQL and case study problems
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Sep 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Medium level leet code questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Low Leven system design of Instagram.
  • Ans. 

    Low level system design of Instagram involves designing the core components like database, storage, caching, and networking.

    • Use sharding to distribute data across multiple database servers for scalability.

    • Implement a caching layer using Redis or Memcached to improve performance.

    • Utilize a content delivery network (CDN) for faster content delivery to users.

    • Design a fault-tolerant storage system to ensure data durability ...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Creating a high level design of a message queue system
  • Ans. 

    Designing a message queue system for efficient communication between components

    • Define the requirements and constraints of the system

    • Choose a suitable messaging protocol (e.g. AMQP, MQTT)

    • Design the message format and structure

    • Implement mechanisms for message persistence and delivery guarantees

    • Consider scalability and fault tolerance

    • Use appropriate data structures and algorithms for efficient message handling

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. What are your goals ?
  • Ans. 

    My goal is to continuously improve my technical skills, contribute to impactful projects, and eventually move into a leadership role.

    • Continuously improve technical skills through learning new technologies and best practices

    • Contribute to impactful projects by delivering high-quality code and solutions

    • Work towards moving into a leadership role by taking on more responsibilities and mentoring junior team members

  • Answered by AI
  • Q2. Why you choose jupiter
  • Ans. 

    I chose Jupiter because of its strong gravitational pull and potential for scientific exploration.

    • Jupiter's large size and mass make it a key player in shaping the solar system

    • Its strong magnetic field and radiation belts provide valuable insights for space research

    • Jupiter's moons, like Europa and Io, offer unique environments for potential exploration missions

  • Answered by AI

Skills evaluated in this interview

LenDenClub Interview FAQs

How many rounds are there in LenDenClub Graduate Engineer interview?
LenDenClub interview process usually has 4 rounds. The most common rounds in the LenDenClub interview process are One-on-one Round, Assignment and HR.
What are the top questions asked in LenDenClub Graduate Engineer interview?

Some of the top questions asked at the LenDenClub Graduate Engineer interview -

  1. There were a lot of questions on SQL and React along with that there was a puzz...read more
  2. This was a little difficult, i was made to solve sql hard and DSA and explain m...read more
  3. It was a final round no one was eliminated and it was more like a meeting sessi...read more

Tell us how to improve this page.

LenDenClub Graduate Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

BharatPe Interview Questions
3.5
 • 38 Interviews
LendingKart Interview Questions
3.2
 • 29 Interviews
Jupiter Money Interview Questions
3.3
 • 29 Interviews
Kissht Finance Interview Questions
3.9
 • 28 Interviews
FNZ Interview Questions
2.4
 • 28 Interviews
Uni Cards Interview Questions
3.9
 • 23 Interviews
Experian Interview Questions
3.8
 • 22 Interviews
View all

LenDenClub Graduate Engineer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Software Developer
42 salaries
unlock blur

₹4.4 L/yr - ₹10 L/yr

Credit Executive
12 salaries
unlock blur

₹2 L/yr - ₹3 L/yr

Credit Analyst
10 salaries
unlock blur

₹2 L/yr - ₹4.6 L/yr

Graduate Engineer Trainee (Get)
10 salaries
unlock blur

₹7 L/yr - ₹7 L/yr

Data Analyst
8 salaries
unlock blur

₹3.6 L/yr - ₹8 L/yr

Explore more salaries
Compare LenDenClub with

Kissht Finance

3.9
Compare

BharatPe

3.5
Compare

VSoft Technologies

3.3
Compare

Innoviti Technologies Private Limited

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