Upload Button Icon Add office photos

e2open

Compare button icon Compare button icon Compare

Filter interviews by

e2open Lead Engineer Interview Questions and Answers

Updated 29 Oct 2024

e2open Lead Engineer Interview Experiences

2 interviews found

Lead Engineer Interview Questions & Answers

user image Anonymous

posted on 29 Oct 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java basics interview
  • Q2. Sql Basics interview
Round 2 - Technical 

(2 Questions)

  • Q1. COding question
  • Q2. Sql query question
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Sep 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

1 hour - numerical, analytical along with basic java and sql questions

Round 2 - Technical 

(1 Question)

  • Q1. Basic core java questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Previous project questions
Round 4 - HR 

(1 Question)

  • Q1. Basic HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interview

Lead Engineer Interview Questions Asked at Other Companies

asked in Tata Power
Q1. What is the resistance value of tripping & closing coil of vc ... read more
asked in Tata Power
Q2. 1.What is the contact resistance of VCB.?
asked in HCLTech
Q3. Which BGP path attributes are used to manipulate the ingress traf ... read more
asked in HCL Group
Q4. Monitoring tools and what metrics we capture during or after test ... read more
Q5. Java 8 features? What is functional interface? Difference between ... read more

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. HashMap internal implementation
Round 2 - Technical 

(1 Question)

  • Q1. Difference between hashMap and concurrent HashMap
  • Ans. 

    HashMap is not thread-safe while ConcurrentHashMap is thread-safe and allows concurrent modifications.

    • HashMap is not thread-safe and can lead to ConcurrentModificationException if modified concurrently.

    • ConcurrentHashMap allows concurrent modifications without the need for external synchronization.

    • ConcurrentHashMap achieves thread-safety by dividing the map into segments, allowing multiple threads to operate on differen...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Transaction in Spring Boot
  • Ans. 

    Transactions in Spring Boot help manage database operations as a single unit of work.

    • Transactions ensure ACID properties (Atomicity, Consistency, Isolation, Durability) for database operations.

    • Use @Transactional annotation to mark a method as transactional.

    • Transactions can be managed programmatically using TransactionTemplate.

    • Rollback can be triggered manually in case of exceptions.

    • Spring Boot supports both declarative

  • Answered by AI
  • Q2. Java Array and problem solving

Interview Preparation Tips

Interview preparation tips for other job seekers - Very good organization

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Our project contains interview question related to JAVA.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Train a Decision Tree based on dataset provided?
  • Ans. 

    Train a Decision Tree based on provided dataset.

    • Preprocess the dataset by handling missing values and encoding categorical variables.

    • Split the dataset into training and testing sets.

    • Train the Decision Tree model on the training set.

    • Evaluate the model's performance on the testing set using metrics like accuracy or F1 score.

  • Answered by AI
  • Q2. How can you do feature selection?
  • Ans. 

    Feature selection can be done using techniques like filter methods, wrapper methods, and embedded methods.

    • Filter methods involve selecting features based on statistical measures like correlation, chi-squared test, etc.

    • Wrapper methods use a specific machine learning algorithm to evaluate the importance of features through iterative selection.

    • Embedded methods incorporate feature selection within the model training proces...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions were mostly around system design, you will be given a case like a stock system and specific use case is asked to design end to end from UI to backend.
  • Q2. Some of the system debugging/performance improvement questions are asked from both UI and backend.

Interview Preparation Tips

Topics to prepare for Amadeus Technical Lead interview:
  • System Design
  • Performance Testing
  • Performance improvement
Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

You can get the information and answer in Google

Round 2 - Technical 

(3 Questions)

  • Q1. Xg boost, naive Bayes algorithm, standard deviation formula and detailed information about that
  • Q2. What is xg boost All about naive Bayes algorithm Standard deviations and the formula
  • Q3. What is the Byes rules and there in deep
  • Ans. 

    Bayes' rule is a fundamental concept in probability theory that allows us to update our beliefs based on new evidence.

    • Bayes' rule is named after Thomas Bayes, an 18th-century mathematician.

    • It is also known as Bayes' theorem or Bayes' law.

    • Bayes' rule calculates the probability of an event based on prior knowledge and new evidence.

    • It is commonly used in machine learning and statistical inference.

    • The formula for Bayes' ru...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared very tough interviewers

Skills evaluated in this interview

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

(4 Questions)

  • Q1. None None None None None None None None
  • Q2. None None None None None None None None None
  • Q3. None hhhhhhhhhhhhhhhhhbhhhh
  • Q4. None ,,....,.ghhhhhhhhhhhhhh

Interview Preparation Tips

Interview preparation tips for other job seekers - High ego of manager, you can not talk about your ideas. Just listen and listen. Team leader was new who don't know even a single word about Manufacturing and he was TL. His expectations is to satisfy his bogus ego rather than complete work.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is hoisting in Javascript
  • Ans. 

    Hoisting is a behavior in JavaScript where variable and function declarations are moved to the top of their containing scope during compilation.

    • Variable declarations are hoisted to the top of their scope, but not their assignments.

    • Function declarations are fully hoisted, meaning they can be called before they are declared.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI
  • Q2. What is function currying
  • Ans. 

    Function currying is a technique in functional programming where a function with multiple arguments is transformed into a sequence of nested functions, each taking a single argument.

    • Currying allows partial application of a function, where some of the arguments are fixed and the rest are left to be supplied later.

    • It helps in creating reusable functions and improving code readability.

    • Example: const add = (a) => (b) => a ...

  • Answered by AI

Skills evaluated in this interview

e2open Interview FAQs

How many rounds are there in e2open Lead Engineer interview?
e2open interview process usually has 3-4 rounds. The most common rounds in the e2open interview process are Technical, Resume Shortlist and Aptitude Test.
How to prepare for e2open Lead Engineer 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 e2open. The most common topics and skills that interviewers at e2open expect are Core Java, Linux, Development, Hibernate and J2Ee.
What are the top questions asked in e2open Lead Engineer interview?

Some of the top questions asked at the e2open Lead Engineer interview -

  1. basic core java questi...read more
  2. Java basics interv...read more
  3. Sql Basics interv...read more

Tell us how to improve this page.

e2open Lead Engineer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 846 Interviews
SAP Interview Questions
4.2
 • 283 Interviews
Globant Interview Questions
3.8
 • 172 Interviews
Chetu Interview Questions
3.3
 • 172 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
AVASOFT Interview Questions
3.6
 • 146 Interviews
ServiceNow Interview Questions
4.1
 • 120 Interviews
Thomson Reuters Interview Questions
4.1
 • 112 Interviews
Amadeus Interview Questions
3.9
 • 107 Interviews
View all
e2open Lead Engineer Salary
based on 13 salaries
₹15.5 L/yr - ₹30 L/yr
51% more than the average Lead Engineer Salary in India
View more details

e2open Lead Engineer Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

3.0

Salary

1.0

Job security

3.0

Company culture

3.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
166 salaries
unlock blur

₹4.7 L/yr - ₹18.1 L/yr

Senior Software Engineer
155 salaries
unlock blur

₹8.5 L/yr - ₹26 L/yr

Analyst
136 salaries
unlock blur

₹3 L/yr - ₹5.8 L/yr

Associate Software Engineer
110 salaries
unlock blur

₹3.6 L/yr - ₹11 L/yr

Data Analyst
91 salaries
unlock blur

₹2.8 L/yr - ₹5.9 L/yr

Explore more salaries
Compare e2open with

Blue Yonder

3.9
Compare

Manhattan Associates

3.7
Compare

SAP

4.2
Compare

Oracle

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