Upload Button Icon Add office photos
Engaged Employer

i

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

LDT Technology Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

LDT Technology Interview Questions and Answers

Updated 30 May 2024
Popular Designations

7 Interview questions

A Junior Java Developer was asked 12mo ago
Q. Tell me about the Spring Framework.
Ans. 

Spring Framework is a popular Java framework that provides comprehensive infrastructure support for developing Java applications.

  • Provides dependency injection for managing components

  • Offers support for aspect-oriented programming

  • Includes modules for data access, web development, security, and more

  • Facilitates integration with other frameworks like Hibernate and JPA

View all Junior Java Developer interview questions
A Junior Java Developer was asked 12mo ago
Q. What is an interface?
Ans. 

An interface in Java is a reference type, similar to a class, that can contain only constants, method signatures, default methods, static methods, and nested types.

  • Interfaces are used to define a contract for classes that implement them.

  • Classes can implement multiple interfaces, but can only extend one class.

  • Interfaces are used to achieve abstraction and multiple inheritance in Java.

  • Example: interface Animal { voi...

View all Junior Java Developer interview questions
A Junior Java Developer was asked 12mo ago
Q. What is multithreading?
Ans. 

Multithreading is the ability of a CPU to execute multiple threads concurrently, allowing for parallel processing.

  • Multithreading allows for better utilization of CPU resources by running multiple threads simultaneously.

  • Threads share the same memory space, allowing for communication and data sharing between threads.

  • Examples of multithreading in Java include creating multiple threads to perform different tasks concu...

View all Junior Java Developer interview questions
A Junior Java Developer was asked 12mo ago
Q. What is Polymorphism?
Ans. 

Polymorphism is the ability of a single function or method to operate on different types of data.

  • 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: Animal superclass with Dog and Cat subclasses, both implementing a makeSound method differently.

View all Junior Java Developer interview questions
A Devops Engineer was asked
Q. What is the procedure for resetting the password of an EC2 instance?
Ans. 

To reset password of ec2, follow these steps:

  • Log in to the AWS Management Console

  • Navigate to the EC2 dashboard

  • Select the instance for which you want to reset the password

  • Stop the instance

  • Detach the root volume

  • Attach the root volume to another instance

  • Modify the authorized_keys file

  • Detach the volume from the second instance

  • Attach it back to the original instance

  • Start the instance

View all Devops Engineer interview questions
A Devops Engineer was asked
Q. What is your current CTC and expected CTC?
Ans. 

Answering salary related questions is inappropriate in an interview setting.

  • It is not appropriate to ask about current or expected salary in an interview.

  • Salary negotiations should be conducted after a job offer has been made.

  • Focusing on salary can detract from discussing the candidate's qualifications and fit for the role.

View all Devops Engineer interview questions
A Junior Java Developer was asked 12mo ago
Q. Types of Exception
Ans. 

Types of exceptions include checked, unchecked, and errors.

  • Checked exceptions are checked at compile time, like IOException.

  • Unchecked exceptions are not checked at compile time, like NullPointerException.

  • Errors are serious problems that should not be caught, like OutOfMemoryError.

View all Junior Java Developer interview questions
Are these interview questions helpful?

LDT Technology Interview Experiences

3 interviews found

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

(2 Questions)

  • Q1. If there is dispute between you and your team how your will handle it?
  • Ans. 

    I would address disputes by fostering open communication, understanding perspectives, and facilitating a collaborative resolution.

    • Encourage open dialogue: I would set up a meeting where team members can express their concerns without fear of judgment.

    • Listen actively: I would ensure that each party feels heard by summarizing their points and validating their feelings.

    • Seek common ground: I would identify shared goals and...

  • Answered by AI
  • Q2. I will listen my team's view if there view is beneficial for the organization than undoubtedly will go on that path otherwise I believe there would be not any personal dispute which effect the productivity...

Interview Preparation Tips

Interview preparation tips for other job seekers - always be honest, present yourself what you are.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Tell about Spring Framework
  • Ans. 

    Spring Framework is a popular Java framework that provides comprehensive infrastructure support for developing Java applications.

    • Provides dependency injection for managing components

    • Offers support for aspect-oriented programming

    • Includes modules for data access, web development, security, and more

    • Facilitates integration with other frameworks like Hibernate and JPA

  • Answered by AI
  • Q2. What is interface
  • Ans. 

    An interface in Java is a reference type, similar to a class, that can contain only constants, method signatures, default methods, static methods, and nested types.

    • Interfaces are used to define a contract for classes that implement them.

    • Classes can implement multiple interfaces, but can only extend one class.

    • Interfaces are used to achieve abstraction and multiple inheritance in Java.

    • Example: interface Animal { void eat...

  • Answered by AI
  • Q3. What is Polymorphism
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data.

    • 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: Animal superclass with Dog and Cat subclasses, both implementing a makeSound method differently.

  • Answered by AI
  • Q4. Types of Exception
  • Ans. 

    Types of exceptions include checked, unchecked, and errors.

    • Checked exceptions are checked at compile time, like IOException.

    • Unchecked exceptions are not checked at compile time, like NullPointerException.

    • Errors are serious problems that should not be caught, like OutOfMemoryError.

  • Answered by AI
  • Q5. What is multithreading
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently, allowing for parallel processing.

    • Multithreading allows for better utilization of CPU resources by running multiple threads simultaneously.

    • Threads share the same memory space, allowing for communication and data sharing between threads.

    • Examples of multithreading in Java include creating multiple threads to perform different tasks concurrent...

  • Answered by AI

Skills evaluated in this interview

I applied via Approached by Company and was interviewed in Apr 2022. 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 - Technical 

(2 Questions)

  • Q1. What is docker and difference b/w docker attach and docker exec
  • Ans. 

    Docker is a containerization platform that allows developers to package, deploy, and run applications in isolated environments.

    • Docker attach allows you to attach to a running container's console output, while docker exec allows you to run a command inside a running container.

    • Docker attach is used to view the output of a container, while docker exec is used to execute a command inside a container.

    • Docker attach is used f...

  • Answered by AI
  • Q2. Procedure for resetting password of ec2
  • Ans. 

    To reset password of ec2, follow these steps:

    • Log in to the AWS Management Console

    • Navigate to the EC2 dashboard

    • Select the instance for which you want to reset the password

    • Stop the instance

    • Detach the root volume

    • Attach the root volume to another instance

    • Modify the authorized_keys file

    • Detach the volume from the second instance

    • Attach it back to the original instance

    • Start the instance

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. What is current ctc and expected ctc
  • Ans. 

    Answering salary related questions is inappropriate in an interview setting.

    • It is not appropriate to ask about current or expected salary in an interview.

    • Salary negotiations should be conducted after a job offer has been made.

    • Focusing on salary can detract from discussing the candidate's qualifications and fit for the role.

  • Answered by AI
  • Q2. Where you see yourself after 5 years

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice company for learning and polishing your DevOps skills

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about LDT Technology?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Sep 2020. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Python program like print day, month and year from current date and fibonacci series
  • Q2. Bluetooth concept basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare only program and basic concepts

Interview Questionnaire 

3 Questions

  • Q1. 1. Assignment
  • Q2. 2. Bunch of python questions.
  • Q3. 3. coding questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear with basics.

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All related to project worked on wlan testing and networking concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall Good.
They gave taken 3 technical and 1hr round
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Can you provide information about yourself and your professional background?
  • Ans. 

    I have over 10 years of experience in sales, with a proven track record of exceeding targets and building strong client relationships.

    • 10+ years of sales experience

    • Consistent track record of exceeding targets

    • Strong client relationship building skills

  • Answered by AI
  • Q2. What interests you in joining MyOperator, and how do you envision your role progressing in the company over the next few years?
  • Ans. 

    I am interested in joining MyOperator because of its innovative technology and strong market presence. I envision my role evolving to take on more leadership responsibilities and contribute to the company's growth.

    • I am attracted to MyOperator's cutting-edge technology and reputation in the market.

    • I see myself growing within the company by taking on leadership roles and contributing to its success.

    • I am excited about the...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Gain an understanding of the company's products and culture.
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. Current roles & responsibilities
  • Ans. 

    As a Senior Executive, I oversee strategic initiatives, manage teams, and drive organizational growth.

    • Lead cross-functional teams to implement strategic projects, such as launching a new product line that increased market share by 15%.

    • Develop and execute business strategies that align with company goals, resulting in a 20% revenue growth over two years.

    • Foster relationships with key stakeholders, including clients and p...

  • Answered by AI
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 Jan 2024. There were 2 interview rounds.

Round 1 - Assignment 

DSA MCQ in online platform

Round 2 - Coding Test 

Basic closings like lists/array/string

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

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

Round 1 - Aptitude Test 

Online MCQs - 15 Questions (Aps, DSA, Output Prediction)

Round 2 - Coding Test 

1 Question (with 3 Enhancement)

Round 3 - Technical 

(2 Questions)

  • Q1. Delete Middle Element from a stack of Odd Length
  • Ans. 

    Remove middle element from a stack with odd length

    • Find the middle index of the stack by dividing the length by 2

    • Remove the element at the middle index

    • Adjust the stack by shifting elements if necessary

  • Answered by AI
  • Q2. Resume Based Questions
Round 4 - HR 

(2 Questions)

  • Q1. Self Introduction but without the details in the resume
  • Q2. Asked whether ok with the bond

Skills evaluated in this interview

LDT Technology Interview FAQs

How many rounds are there in LDT Technology interview?
LDT Technology interview process usually has 1-2 rounds. The most common rounds in the LDT Technology interview process are Technical, HR and Resume Shortlist.
How to prepare for LDT Technology interview?
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 LDT Technology. The most common topics and skills that interviewers at LDT Technology expect are Java, Hibernate, IT Sales, Python and Spring Boot.
What are the top questions asked in LDT Technology interview?

Some of the top questions asked at the LDT Technology interview -

  1. What is docker and difference b/w docker attach and docker e...read more
  2. What is current ctc and expected ...read more
  3. Tell about Spring Framew...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 2 interview experiences

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more

LDT Technology Reviews and Ratings

based on 16 reviews

2.9/5

Rating in categories

3.1

Skill development

2.9

Work-life balance

2.9

Salary

2.7

Job security

3.0

Company culture

2.7

Promotions

2.9

Work satisfaction

Explore 16 Reviews and Ratings
Python AWS Developer

Zirakpur

8-10 Yrs

₹ 12-18 LPA

It Sales Executive

Zirakpur

0-2 Yrs

Not Disclosed

Python Developer

Zirakpur

0-1 Yrs

Not Disclosed

Explore more jobs
Software Developer
12 salaries
unlock blur

₹4.2 L/yr - ₹15 L/yr

Software Engineer
7 salaries
unlock blur

₹3.3 L/yr - ₹12 L/yr

Java Developer
5 salaries
unlock blur

₹1 L/yr - ₹10.7 L/yr

Devops Engineer
5 salaries
unlock blur

₹2.4 L/yr - ₹10 L/yr

Senior Android Developer
4 salaries
unlock blur

₹5.2 L/yr - ₹8 L/yr

Explore more salaries
Compare LDT Technology with

Yalamanchili Software Exports

3.2
Compare

ScoreMe Solutions

4.2
Compare

Xtancia Technosoft

4.0
Compare

Global Edge Software

3.5
Compare
write
Share an Interview