Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Lumbini Elite Solutions & Services Team. If you also belong to the team, you can get access from here

Lumbini Elite Solutions & Services Verified Tick

Compare button icon Compare button icon Compare
3.5

based on 36 Reviews

Filter interviews by

Lumbini Elite Solutions & Services Senior Software Developer Interview Questions and Answers for Experienced

Updated 25 Apr 2024

Lumbini Elite Solutions & Services Senior Software Developer Interview Experiences for Experienced

1 interview found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. They questioned my as unrelated topics and wasted my overall time.
  • Q2. Yes, they asked me for unrelated topics

Interview Preparation Tips

Interview preparation tips for other job seekers - The company personals are idiot, they wasted my time for 02 months .

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is Virtual DOM, Explain ?
  • Ans. 

    Virtual DOM is a concept in web development where a lightweight copy of the actual DOM is created and manipulated for efficient rendering.

    • Virtual DOM is an abstraction of the real DOM.

    • It is used in frameworks like React to improve performance.

    • Changes made to the virtual DOM are compared with the actual DOM, and only the necessary updates are applied.

    • This approach reduces the number of direct manipulations on the actual...

  • Answered by AI
  • Q2. What is Higher Order Component ?
  • Ans. 

    Higher Order Component is a function that takes a component and returns a new component with additional functionality.

    • Higher Order Components (HOCs) are a pattern in React for reusing component logic.

    • They are functions that accept a component and return a new component with enhanced capabilities.

    • HOCs can be used for cross-cutting concerns like authentication, logging, or data fetching.

    • They enable code reuse, compositio...

  • Answered by AI
  • Q3. Life Cycle Methods in React
  • Ans. 

    Life Cycle Methods in React

    • React components have several life cycle methods that are called at different stages of a component's life

    • These methods allow developers to perform actions like initializing state, fetching data, and updating the UI

    • Some commonly used life cycle methods are componentDidMount, componentDidUpdate, and componentWillUnmount

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Simple questions for 1st telephonic round

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. What is react why it's used?
Round 2 - Technical 

(1 Question)

  • Q1. What is virtual DOM in react?
Round 3 - Assignment 

Filter and shot the filter block based on title using redux?

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is jdk, string related questions, basic java oops questions?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Some maths related questions

Round 2 - Technical 

(1 Question)

  • Q1. Related to testing

Interview Preparation Tips

Interview preparation tips for other job seekers - Great company to learn something
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 May 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. How to design a video streaming platform
  • Ans. 

    Designing a video streaming platform involves considering scalability, user experience, content delivery, and security.

    • Consider scalability by using a distributed architecture to handle large numbers of concurrent users.

    • Focus on user experience with intuitive interfaces, personalized recommendations, and seamless playback.

    • Implement content delivery networks (CDNs) to ensure fast and reliable streaming across different ...

  • Answered by AI
  • Q2. What is Single Page application
  • Ans. 

    Single Page Application is a web application that loads a single HTML page and dynamically updates the page as the user interacts with it.

    • Loads a single HTML page initially

    • Updates content dynamically without reloading the entire page

    • Uses AJAX, JavaScript, and frameworks like Angular, React, or Vue.js

    • Provides a seamless user experience similar to a desktop application

  • Answered by AI
  • Q3. What is Ajax calls?
  • Ans. 

    Ajax calls are asynchronous HTTP requests made by the browser to the server without reloading the entire page.

    • Ajax stands for Asynchronous JavaScript and XML

    • Used to update parts of a web page without reloading the entire page

    • Improves user experience by making the website more dynamic

    • Commonly used in web applications to fetch data from a server

    • Examples: fetching new emails in Gmail without refreshing the page, updating

  • Answered by AI
  • Q4. What are Content Delivery Networks?
  • Ans. 

    Content Delivery Networks (CDNs) are distributed servers that help deliver web content efficiently to users based on their geographic location.

    • CDNs cache content closer to users for faster delivery

    • They help reduce latency and improve website performance

    • Popular CDNs include Akamai, Cloudflare, and Amazon CloudFront

  • Answered by AI

Interview Preparation Tips

Topics to prepare for rtCamp Solutions Software Developer interview:
  • HTML
  • CSS
  • React.Js
  • Nodejs
  • SQL
  • Problem Solving
  • Puzzles
Interview preparation tips for other job seekers - Be honest as well as confident with your answers.
Prepare the basics of HTML CSS JS and some concepts of system designs

Skills evaluated in this interview

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

I applied via Naukri.com 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 

4 Coding Questions Were Given.
Check Palindrome String
Longest Increasing Subsequence
Group Anagrams
Add Two Numbers(Linked List)

Questions were picked from leetcode but the restriction of not using any inbuild function made them difficult to solve in the given time frame.

Round 3 - Technical 

(5 Questions)

  • Q1. Basic Java Technical Questions
  • Q2. Throws Vs Throw
  • Ans. 

    Throws is used for checked exceptions in Java, while throw is used to explicitly throw an exception.

    • Throws is used in method signature to declare that the method may throw a checked exception.

    • Throw is used to actually throw an exception in the code.

    • Example: public void method() throws IOException { //code }

    • Example: throw new IOException();

  • Answered by AI
  • Q3. Method Overriding Basics and Output-Based Questions
  • Q4. Springboot annotations
  • Q5. Inheritance and Concept of Abstract Classes and Interfaces
  • Ans. 

    Inheritance allows a class to inherit properties and behaviors from another class. Abstract classes cannot be instantiated and can have abstract methods. Interfaces define a contract for classes to implement.

    • Inheritance allows a class to inherit properties and behaviors from another class

    • Abstract classes cannot be instantiated and can have abstract methods

    • Interfaces define a contract for classes to implement

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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. In trend java questions
Round 3 - Technical 

(1 Question)

  • Q1. Advance java questions, questions related to microservice and java 8
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - Assignment 

Had to brief about myself, my technical skills and projects. Few Technical questions regarding the tech stack and casual discussion.

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you have strong foundational knowledge.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Oops concepts ?
  • Q2. SQL queries related?
Round 2 - Coding Test 

General coding questions

Round 3 - Assignment 

30days training and project building

Interview Preparation Tips

Topics to prepare for ClaySys Software Engineer interview:
  • Oops concepts

Lumbini Elite Solutions & Services Interview FAQs

How many rounds are there in Lumbini Elite Solutions & Services Senior Software Developer interview for experienced candidates?
Lumbini Elite Solutions & Services interview process for experienced candidates usually has 1 rounds. The most common rounds in the Lumbini Elite Solutions & Services interview process for experienced candidates are Technical.
What are the top questions asked in Lumbini Elite Solutions & Services Senior Software Developer interview for experienced candidates?

Some of the top questions asked at the Lumbini Elite Solutions & Services Senior Software Developer interview for experienced candidates -

  1. They questioned my as unrelated topics and wasted my overall ti...read more
  2. Yes, they asked me for unrelated top...read more

Tell us how to improve this page.

Lumbini Elite Solutions & Services Senior Software Developer 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 & Benefits

1.0

Job Security

1.0

Company culture

1.0

Promotions/Appraisal

1.0

Work Satisfaction

Explore 1 Review and Rating
Data Analyst
6 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Software Engineer
5 salaries
unlock blur

₹1 L/yr - ₹4.8 L/yr

Software Developer
5 salaries
unlock blur

₹2.1 L/yr - ₹3.4 L/yr

Software Engineer Trainee
4 salaries
unlock blur

₹1.8 L/yr - ₹3.3 L/yr

HR Executive
4 salaries
unlock blur

₹1.8 L/yr - ₹3 L/yr

Explore more salaries
Compare Lumbini Elite Solutions & Services with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview