Upload Button Icon Add office photos
Engaged Employer

i

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

Lulu International Exchange Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Lulu International Exchange Software Engineer Interview Questions and Answers

Updated 2 Jun 2022

Lulu International Exchange Software Engineer Interview Experiences

1 interview found

I applied via Newspaper Ad and was interviewed before Jun 2021. 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 - Technical 

(2 Questions)

  • Q1. Working of Java Threads and Pools
  • Ans. 

    Java threads allow concurrent execution of code. Thread pools manage a group of threads to improve performance.

    • Threads are lightweight processes that can run concurrently within a program.

    • Thread pools manage a group of threads to improve performance by reusing threads instead of creating new ones.

    • Java provides built-in support for threads and thread pools through the java.util.concurrent package.

    • Thread pools can be cre...

  • Answered by AI
  • Q2. Java String Pools and uses
  • Ans. 

    Java String Pools are a cache of String literals to optimize memory usage.

    • String literals are stored in a pool and reused to save memory

    • String objects created using the 'new' keyword are not stored in the pool

    • String.intern() method can be used to add a String to the pool

    • String pools can be disabled using the -XX:-UseStringDeduplication flag

  • Answered by AI
Round 3 - Coding Test 

An algorithm to filter 2 different json with a comparable key

Round 4 - HR 

(1 Question)

  • Q1. Asked about job preferences

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Java data structures, have a good teck stack

Skills evaluated in this interview

Interview questions from similar companies

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

(1 Question)

  • Q1. C# question on basics and advanced
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Not a company that you want to join.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Veermata Jijabai Technological Institute (VJTI), Mumbai and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

2 medium level programming questions and 3 hr type questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Oops,dbms, and os concepts , also project related
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 - Coding Test 

Mcq related to dsa ,oops

Round 3 - Technical 

(1 Question)

  • Q1. Just basic oops questions about polymorphism,inheritance

I applied via Naukri.com and was interviewed in Aug 2022. There were 2 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 - One-on-one 

(3 Questions)

  • Q1. Jdbc , Spring , Collection in java
  • Q2. Final vs finally . Explain
  • Ans. 

    Final and finally are two different words with different meanings.

    • Final is an adjective that means last or ultimate, as in final exam or final decision.

    • Finally is an adverb that means at last or in the end, as in finally, we reached our destination.

    • Final is used to describe something that is definitive or conclusive, while finally is used to describe the end of a process or event.

    • Examples: The final score of the game w...

  • Answered by AI
  • Q3. Abstraction and encapsulation

Interview Preparation Tips

Interview preparation tips for other job seekers - Have edact knowledge as u mentioned in CV

I applied via Recruitment Consultant and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Being electrical Engineer , why IT?
  • Ans. 

    I chose IT because of my passion for problem-solving and my interest in software development.

    • I have always been fascinated by technology and computers.

    • During my electrical engineering studies, I realized that I enjoyed programming and software development more than other aspects of the field.

    • I took additional courses in computer science to enhance my skills and knowledge in software engineering.

    • I have successfully comp...

  • Answered by AI
  • Q2. Why programming
  • Ans. 

    Programming is a way to solve problems and create innovative solutions using logic and creativity.

    • Programming allows me to create something from scratch and see it come to life.

    • It challenges me to think critically and find efficient solutions to complex problems.

    • It offers endless opportunities for learning and growth, as technology is constantly evolving.

    • Programming is a versatile skill that can be applied to various i...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - good an best and forward
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. 1)Project related,
  • Q2. What is the Polymorphism?
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: Inheritance in object-oriented programming languages like Java allows for polymorphism.

  • Answered by AI
  • Q3. What is RestController?
  • Ans. 

    RestController is a class in Spring framework used to handle HTTP requests and return responses as JSON or XML.

    • Handles HTTP requests in Spring framework

    • Returns responses as JSON or XML

    • Annotate a class with @RestController to define it as a RestController

    • Example: @RestController public class UserController {}

  • Answered by AI
Round 2 - Coding Test 

Find the number of occurrences of each element in the given ArrayList

Round 3 - HR 

(1 Question)

  • Q1. Discussion with hr like reason to switch.

Interview Preparation Tips

Interview preparation tips for other job seekers - be good with basics

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Pen paper test with 5 mcq and 3 coding questions mostly on array sorting etc

Round 2 - Technical 

(1 Question)

  • Q1. Write a code for concatenation of two arrays without using Math function
  • Ans. 

    Concatenate two arrays without using Math function

    • Create a new array with the combined length of the two input arrays

    • Iterate through the first array and copy elements to the new array

    • Continue iterating through the second array and copy elements to the new array

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Instahyre 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 

Give all the lists of numbers by adding which we can achieve the target

Round 3 - Technical 

(1 Question)

  • Q1. Basic questions on resume and Behavioural questions
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion and background check

Interview Preparation Tips

Interview preparation tips for other job seekers - It was an easy process
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - Aptitude Test 

Maths
Logical
English
C

Interview Preparation Tips

Interview preparation tips for other job seekers - Based on projects

Lulu International Exchange Interview FAQs

How many rounds are there in Lulu International Exchange Software Engineer interview?
Lulu International Exchange interview process usually has 4 rounds. The most common rounds in the Lulu International Exchange interview process are HR, Resume Shortlist and Technical.
What are the top questions asked in Lulu International Exchange Software Engineer interview?

Some of the top questions asked at the Lulu International Exchange Software Engineer interview -

  1. Working of Java Threads and Po...read more
  2. Java String Pools and u...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Muthoot Fincorp Interview Questions
4.5
 • 496 Interviews
Shriram Finance Interview Questions
4.1
 • 331 Interviews
Bajaj Finance Interview Questions
4.0
 • 297 Interviews
Muthoot Finance Interview Questions
3.6
 • 251 Interviews
IIFL Finance Interview Questions
4.0
 • 245 Interviews
SMFG India Credit Interview Questions
4.0
 • 154 Interviews
L&T Finance Interview Questions
3.9
 • 151 Interviews
Mahindra Finance Interview Questions
4.1
 • 148 Interviews
View all
Lulu International Exchange Software Engineer Salary
based on 4 salaries
₹5 L/yr - ₹5.2 L/yr
38% less than the average Software Engineer Salary in India
View more details
Software Developer
6 salaries
unlock blur

₹3 L/yr - ₹3.5 L/yr

Branch Manager
5 salaries
unlock blur

₹10 L/yr - ₹18.9 L/yr

Head Treasury
4 salaries
unlock blur

₹75 L/yr - ₹95 L/yr

Reconciliation Executive
4 salaries
unlock blur

₹1.7 L/yr - ₹2.9 L/yr

Customer Support Executive
4 salaries
unlock blur

₹2.2 L/yr - ₹2.4 L/yr

Explore more salaries
Compare Lulu International Exchange with

UAE Exchange

4.2
Compare

Thomas Cook

3.8
Compare

Paul Merchants

4.0
Compare

Weizmann Forex

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