Upload Button Icon Add office photos

Filter interviews by

ESOP Direct Software Engineer Interview Questions and Answers

Updated 19 Mar 2021

ESOP Direct Software Engineer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic of C# and few logic like reverse and palindrome

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interview and cover all the easy and medium level question from hakerrank

Interview questions from similar companies

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

(2 Questions)

  • Q1. Basic java questions
  • Q2. Sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join this company
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude followed with english and reasoning

Round 2 - Technical 

(3 Questions)

  • Q1. Core java technical questions , spring , spring boot
  • Q2. What is JIT in java
  • Ans. 

    JIT stands for Just-In-Time compilation in Java. It dynamically compiles bytecode into machine code at runtime for improved performance.

    • JIT is a part of the Java Virtual Machine (JVM) that optimizes the execution of Java programs.

    • It analyzes the frequently executed parts of the bytecode and compiles them into native machine code.

    • This compilation happens at runtime, just before the code is executed, hence the name Just-...

  • Answered by AI
  • Q3. Explain lifecyxle of thread in java
  • Ans. 

    The lifecycle of a thread in Java includes several stages from creation to termination.

    • A thread is created using the Thread class or implementing the Runnable interface.

    • The thread goes through the new, runnable, and blocked states before running.

    • Once running, the thread can be paused, resumed, or stopped.

    • Finally, the thread reaches the terminated state and cannot be restarted.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
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 - One-on-one 

(2 Questions)

  • Q1. Questions was based on SQL
  • Q2. SQL queries and joins and

Interview Preparation Tips

Interview preparation tips for other job seekers - was good and easy process, HR was supportive but i did not get selected
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Behavioral 

(1 Question)

  • Q1. What made you interested in software engineer?
  • Ans. 

    Passion for problem-solving and creating innovative solutions drove my interest in software engineering.

    • Fascination with technology and its ability to improve efficiency

    • Enjoyment of logical thinking and problem-solving

    • Desire to create impactful and innovative solutions

    • Inspiration from successful software engineers and their contributions

    • Opportunities for continuous learning and growth in the field

  • Answered by AI

I applied via Campus Placement and was interviewed in Nov 2022. There were 5 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 - Aptitude Test 

This is the aptitude round in this round quant questions were asked

Round 3 - Coding Test 

In this round 2 java coding questions were there

Round 4 - Technical 

(2 Questions)

  • Q1. What is the framework
  • Ans. 

    A framework is a set of rules, guidelines, and standards that provide a structure for developing software applications.

    • A framework provides a common structure for developers to work within

    • It includes pre-written code and libraries that can be used to speed up development

    • Frameworks can be specific to a programming language or platform

    • Examples include AngularJS, React, and Ruby on Rails

  • Answered by AI
  • Q2. What is the java explain
  • Ans. 

    Java is a widely used programming language known for its platform independence and object-oriented approach.

    • Java is an object-oriented language that follows the 'write once, run anywhere' principle.

    • It is used for developing a wide range of applications, from desktop to web and mobile applications.

    • Java programs are compiled into bytecode that can run on any Java Virtual Machine (JVM).

    • It provides built-in libraries and f...

  • Answered by AI
Round 5 - HR 

(2 Questions)

  • Q1. What is your salary, tell your expectations
  • Q2. What is your location

Interview Preparation Tips

Topics to prepare for Tradebulls System Engineer interview:
  • Java
  • API
  • C
Interview preparation tips for other job seekers - this is very good company's interview ilike the process basically its overall interview and your are judged basis on your skills

Skills evaluated in this interview

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

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. What is your minimum salary expectation?
  • Q2. Are you planning to stay long-term in this position?
  • Ans. 

    I am committed to long-term growth and contribution in this position, aligning my goals with the company's vision.

    • I believe in building strong relationships with my team and the organization, which takes time and dedication.

    • For example, I aim to take on increasing responsibilities and contribute to long-term projects.

    • I am eager to develop my skills and grow within the company, ensuring I can add value over time.

    • I see t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be cautious about Bonus, because they will delay bonus. Will make you wait longer for appraisal
Interview experience
4
Good
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. How internally work HashMap ?
  • Ans. 

    HashMap uses key-value pairs, hashing, and buckets for efficient data retrieval and storage.

    • HashMap stores data in key-value pairs, where each key is unique.

    • It uses a hash function to compute an index (hash code) for each key.

    • The computed index points to a bucket in an array where the value is stored.

    • If multiple keys hash to the same index (collision), they are stored in a linked list or tree structure.

    • Example: For a k...

  • Answered by AI
  • Q2. Write the logic of prime number
  • Ans. 

    A prime number is a natural number greater than 1 that cannot be formed by multiplying two smaller natural numbers.

    • A prime number has exactly two distinct positive divisors: 1 and itself.

    • Examples of prime numbers include 2, 3, 5, 7, 11, and 13.

    • The number 1 is not prime because it has only one positive divisor.

    • The number 4 is not prime because it can be divided by 1, 2, and 4.

    • To check if a number n is prime, test divisi

  • Answered by AI
  • Q3. Difference between hash map and hash set?
  • Ans. 

    HashMap stores key-value pairs; HashSet stores unique keys without values.

    • HashMap allows duplicate values but not duplicate keys. Example: {1: 'A', 2: 'B', 1: 'C'} results in {1: 'C', 2: 'B'}.

    • HashSet only stores unique elements. Example: {1, 2, 2} results in {1, 2}.

    • HashMap provides O(1) average time complexity for get and put operations.

    • HashSet provides O(1) average time complexity for add, remove, and contains operati...

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

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

Round 1 - Aptitude Test 

Ensure candidates have adequate time to rest before testing.

Round 2 - Group Discussion 

Discussion on power plant operations.

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

I applied via Walk-in and was interviewed in Nov 2023. There were 3 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 

(2 Questions)

  • Q1. Work experience
  • Q2. How many experiance
  • Ans. 

    I have 5 years of experience as an Assistant Manager.

    • I have worked as an Assistant Manager for 5 years.

    • During my time as an Assistant Manager, I successfully led a team of 10 employees.

    • I have experience in budgeting, scheduling, and performance management.

    • I have a proven track record of achieving targets and improving operational efficiency.

    • I am familiar with various management software and tools.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Current ctc discussion

Tell us how to improve this page.

Interview Questions from Similar Companies

Oxane Partners Interview Questions
3.4
 • 24 Interviews
Tradebulls Interview Questions
3.2
 • 16 Interviews
50 Hertz Interview Questions
2.0
 • 9 Interviews
Muthoot Money Interview Questions
3.7
 • 8 Interviews
Clearwater Interview Questions
3.8
 • 3 Interviews
Disney India Interview Questions
3.5
 • 3 Interviews
View all
ESOP Direct Software Engineer Salary
based on 5 salaries
₹4.2 L/yr - ₹10.5 L/yr
26% less than the average Software Engineer Salary in India
View more details

ESOP Direct Software Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

4.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Operations Executive
13 salaries
unlock blur

₹3 L/yr - ₹5.6 L/yr

Programmer Analyst
8 salaries
unlock blur

₹2.8 L/yr - ₹4.2 L/yr

Assistant Manager
8 salaries
unlock blur

₹5.7 L/yr - ₹12.5 L/yr

Senior Executive Operations
7 salaries
unlock blur

₹3 L/yr - ₹5 L/yr

Team Lead
6 salaries
unlock blur

₹7.2 L/yr - ₹15 L/yr

Explore more salaries
Compare ESOP Direct with

Tradebulls

3.2
Compare

SysArc Infomatix

3.7
Compare

Oxane Partners

3.5
Compare

Muthoot Money

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