Upload Button Icon Add office photos

Filter interviews by

Madhya Pradesh Laghu Udyog Nigam Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

I applied via Recruitment Consulltant and was interviewed before Sep 2021. There were 2 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. Question on Database?
  • Q2. Question on previous work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to join this organization. It was best experience to work with this company.

I applied via Recruitment Consultant and was interviewed in Jan 2018. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. OOps concept,what is CTE in sql,explain the scenerio where you can use abstact class or interface?,N th highest salary in sql?,Polymorphism and overriding?Temp table in sql?sql functions?Difference between...
  • Ans. 

    Answering various technical questions related to OOPs, SQL, and software development.

    • CTE in SQL stands for Common Table Expression, used for creating temporary result sets.

    • Abstract classes are used when you want to provide a common base implementation for derived classes, while interfaces are used to define a contract that implementing classes must follow.

    • Nth highest salary in SQL can be achieved using the ROW_NUMBER()...

  • Answered by AI
  • Q2. What are the current projects worked on & in which domain?
  • Ans. 

    Currently working on a project in the finance domain involving developing a new trading platform.

    • Developing a new trading platform for stock market

    • Implementing real-time data analytics for trading decisions

    • Integrating third-party APIs for market data

    • Optimizing trading algorithms for faster execution

  • Answered by AI
  • Q3. What is growth? Is there any onsite opportunity in future?
  • Ans. 

    Growth is the process of continuous development and improvement in various aspects of life.

    • Growth involves personal and professional development.

    • It includes acquiring new skills and knowledge.

    • Growth can be measured by progress and achievements.

    • It can be seen in career advancements and promotions.

    • Growth also involves expanding one's network and connections.

    • It can be achieved through learning from experiences and challen...

  • Answered by AI

Interview Preparation Tips

General Tips: The interview process is good.a long wait for Managerial interview.
Skills: Communication, Problem Solving, Analytical Skills, Leadership, Presentation Skills, Time Management, Decision Making Skills
Duration: <1 week

I applied via Naukri.com and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Resume, achievements, market dynamics
  • Q2. Case studies on Market operations , targets achievements

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, Answer politely and clearly...Dont beat on the bush

Interview Questionnaire 

2 Questions

  • Q1. About e commerce
  • Q2. About bpo

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was very smooth and good

I applied via Referral and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Moderate difficult with business reasoning

Round 2 - Technical 

(1 Question)

  • Q1. Prior work Ex mostly and a case study

Interview Preparation Tips

Interview preparation tips for other job seekers - Know SAS products and it's implementation use cases in detail with statistical knowledge
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 

(1 Question)

  • Q1. Skill related questions
Round 3 - Technical 

(2 Questions)

  • Q1. Management questions
  • Q2. Depends on questions
Round 4 - HR 

(2 Questions)

  • Q1. Previous experiences and reason for change
  • Q2. Better opportunity and new challenges

Interview Preparation Tips

Interview preparation tips for other job seekers - Don’t mention the skills which you don’t experience

I applied via Approached by Company and was interviewed in Aug 2022. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Tell about yourself and your biodata
  • Q2. I have explained myself

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself and keep ready for interview

I applied via Recruitment Consultant and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Difference between Hashmap vs concurrent hashmap
  • Ans. 

    Hashmap is not thread-safe while concurrent hashmap is thread-safe.

    • Hashmap is faster than concurrent hashmap in single-threaded environments.

    • Concurrent hashmap allows multiple threads to access and modify the map concurrently.

    • Concurrent hashmap uses a technique called lock striping to achieve thread-safety.

    • Hashmap can be used in scenarios where thread-safety is not a concern.

    • Concurrent hashmap is preferred in multi-thr

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Asked interview technical questions based on Java, collection, multi threading.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions about past experience
  • Q2. Understanding about banking sector
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Explain OOPS with example
  • Ans. 

    OOPS stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects.

    • OOPS focuses on creating objects that contain both data and methods to manipulate that data.

    • Encapsulation, inheritance, and polymorphism are key principles of OOPS.

    • Example: In a car simulation program, a 'Car' object can have properties like 'color' and 'speed', and methods like 'accelerate' and 'brake'.

  • Answered by AI
  • Q2. What is microservices and intercommunication btw various microservices with current project
  • Ans. 

    Microservices are a software architecture design where applications are broken down into smaller, independent services that communicate with each other.

    • Microservices are small, independent services that focus on specific business functions.

    • Each microservice can be developed, deployed, and scaled independently.

    • Intercommunication between microservices is typically done through APIs or messaging queues.

    • Examples of interco...

  • Answered by AI
  • Q3. Gave a coding question to solve (reverse a string with many words in the string)
Round 2 - Technical 

(7 Questions)

  • Q1. Solid principles
  • Q2. How Dependency injection is configured in the project
  • Ans. 

    Dependency injection is configured using a framework like Spring in Java projects.

    • Dependency injection is configured using annotations like @Autowired in Spring framework.

    • Beans are defined in configuration files like applicationContext.xml or using Java configuration classes.

    • Dependencies are injected into classes at runtime by the framework.

    • Constructor injection, setter injection, and field injection are common ways to

  • Answered by AI
  • Q3. CQRS architecture with .Net Mediator pattern
  • Ans. 

    CQRS architecture separates read and write operations using Mediator pattern in .Net

    • CQRS stands for Command Query Responsibility Segregation

    • Mediator pattern helps in decoupling components by introducing a mediator object

    • .Net MediatR library is commonly used for implementing Mediator pattern in CQRS architecture

  • Answered by AI
  • Q4. Custom middlewares
  • Q5. Difference btw object and dynamic
  • Ans. 

    Object is a static entity with predefined structure, while dynamic can change at runtime.

    • Object is a class or data structure with fixed properties and methods

    • Dynamic can change its properties or behavior during runtime

    • Example: Object - Car class with properties like color, model. Dynamic - User input changing the color of a car object

  • Answered by AI
  • Q6. Difference btw constant and readonly keyword
  • Ans. 

    Constant keyword is used for compile-time constants, while readonly keyword is used for runtime constants.

    • Constant keyword is used for values that are known at compile time and cannot be changed.

    • Readonly keyword is used for values that are known at runtime and cannot be changed after initialization.

    • Constants are implicitly static, while readonly fields are not.

    • Constants are defined at the class level, while readonly fi

  • Answered by AI
  • Q7. What ORM is used in current project
  • Ans. 

    Entity Framework is used as the ORM in the current project.

    • Entity Framework is a popular ORM framework for .NET applications

    • It provides a way to work with databases using .NET objects

    • Supports LINQ queries for database operations

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Negotiation of Salary (My expectation and their budget discussion)

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with Basics and basics of coding

Tell us how to improve this page.

Interview Questions from Similar Companies

BCD Travel Interview Questions
4.3
 • 111 Interviews
ConsultAdd Interview Questions
3.7
 • 36 Interviews
SAS Interview Questions
4.4
 • 18 Interviews
Cheil India Interview Questions
3.1
 • 17 Interviews
Nucsoft Interview Questions
2.9
 • 12 Interviews
View all
Compare Madhya Pradesh Laghu Udyog Nigam with

BCD Travel

4.3
Compare

Cheil India

3.1
Compare

Xplore-Tech Services

3.1
Compare

SAS

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