Upload Button Icon Add office photos

Filter interviews by

Geodis Overseas Senior Integration Engineer Interview Questions and Answers

Updated 21 Jun 2024

Geodis Overseas Senior Integration Engineer Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was so good and they asked the questions relat the integration operations.

Interview questions from similar companies

I applied via Approached by Company and was interviewed before Mar 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Have you used multithreading?
  • Ans. 

    Yes, I have used multithreading in software development.

    • Multithreading is the ability of a central processing unit (CPU) to execute multiple threads concurrently.

    • It allows for parallel execution of tasks, improving performance and responsiveness in applications.

    • Multithreading can be used to perform tasks in the background while the main thread handles user interactions.

    • Examples of multithreading in software development...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical interview is not tough

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. There questions were on java mainly focusing on oops concept followed my exception handling concept
  • Q2. What is checked and unchecked exception demonstrate with an example
  • Ans. 

    Checked and unchecked exceptions are used in Java to handle errors. Checked exceptions must be handled, while unchecked exceptions do not.

    • Checked exceptions are checked at compile-time and must be handled using try-catch or throws keyword

    • Unchecked exceptions are not checked at compile-time and do not require handling

    • Example of checked exception: IOException

    • Example of unchecked exception: NullPointerException

  • Answered by AI
  • Q3. They asked questions on html
Round 2 - HR 

(2 Questions)

  • Q1. What are your salary expectations?
  • Q2. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was easy only if one knows java they can easily get in to this company

Skills evaluated in this interview

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

(1 Question)

  • Q1. Sorting algorithms
Round 2 - One-on-one 

(1 Question)

  • Q1. Detailed project diacussion
Round 3 - HR 

(1 Question)

  • Q1. Basic hr questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. 1) OOPS 2) SOLID 3) Design Patterns 4) SQL Concepts
  • Q2. LINQ joins on 2 tables
  • Ans. 

    LINQ joins on 2 tables allow for combining data from both tables based on a common key.

    • Use the 'join' keyword in LINQ to join two tables based on a common key

    • Specify the key to join on using 'equals' keyword

    • Select the desired columns from both tables in the result

  • Answered by AI
  • Q3. Example of Open close principle
  • Ans. 

    Open close principle states that a class should be open for extension but closed for modification.

    • Classes should be open for extension through inheritance or implementing interfaces

    • Classes should be closed for modification to avoid breaking existing code

    • Example: Using abstract classes or interfaces to define behavior and allowing subclasses to implement specific functionality

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Csharp basics and a coding questing was given to implement
  • Q2. .net and angular basics questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Asked deeply about my resume and technologies
  • Q2. Coding question to sort a given array using DSA

Interview Preparation Tips

Interview preparation tips for other job seekers - No response from HR
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jun 2023. There were 4 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 - Aptitude Test 

It was a normal aptitude test with mathematical questions.

Round 3 - Coding Test 

It was a techno-coding test where I had to code while sharing my screen on a live conversation with the interviewer.

Round 4 - One-on-one 

(2 Questions)

  • Q1. I was primarily asked about managerial questions on adaptability to new technology and creativity if existing solutions don't work.
  • Q2. In a situation where your team is not getting a proper result with existing approach your team uses, how would you try to fix it?
  • Ans. 

    I would analyze the current approach, identify the root cause of the issue, brainstorm alternative solutions, and collaborate with the team to implement and test them.

    • Analyze the current approach to identify weaknesses

    • Brainstorm alternative solutions with the team

    • Implement and test the new solutions

    • Regularly communicate and collaborate with team members

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your homework, keep in touch with technology and if you do the above 2, confidence is yours. Politeness adds the sugar coating and you crack all the interviews.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How to identify and solve race condition.
  • Ans. 

    Identifying and solving race conditions involves understanding concurrent execution and implementing synchronization mechanisms.

    • Understand the critical sections of code where race conditions can occur

    • Use synchronization mechanisms like locks, semaphores, or atomic operations to control access to shared resources

    • Implement thread-safe data structures or use thread-safe libraries to avoid race conditions

    • Use tools like sta...

  • Answered by AI
  • Q2. Solve an array question on finding the third largest in an unsorted array.
  • Ans. 

    Find the third largest element in an unsorted array of strings.

    • Sort the array in descending order.

    • Remove duplicates if necessary.

    • Return the element at index 2 as the third largest.

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Basic string related coding questions
  • Q2. Core java questions

Interview Questionnaire 

3 Questions

  • Q1. What is callback function
  • Ans. 

    A callback function is a function passed as an argument to another function, which is then invoked inside the outer function.

    • Callback functions are commonly used in asynchronous programming.

    • They allow a function to call another function when a certain task is completed.

    • Callback functions can be anonymous or named functions.

    • Examples of callback functions include event handlers and AJAX requests.

  • Answered by AI
  • Q2. Arrow function
  • Q3. Call,apply,bind

Geodis Overseas Interview FAQs

How many rounds are there in Geodis Overseas Senior Integration Engineer interview?
Geodis Overseas interview process usually has 1 rounds. The most common rounds in the Geodis Overseas interview process are One-on-one Round.

Tell us how to improve this page.

Geodis Overseas Senior Integration Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

FedEx Express Interview Questions
4.0
 • 93 Interviews
Ups Logistics Interview Questions
3.7
 • 65 Interviews
DHL Express Interview Questions
4.1
 • 63 Interviews
Honda Logistics Interview Questions
3.8
 • 25 Interviews
Kuehne + Nagel Interview Questions
4.0
 • 21 Interviews
DB Schenker Interview Questions
4.3
 • 17 Interviews
Sugam Parivahan Interview Questions
3.9
 • 15 Interviews
Agility Interview Questions
4.1
 • 11 Interviews
Brink's Interview Questions
4.3
 • 10 Interviews
View all
Software Developer
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Developer
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Oracle Database Administrator
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Geodis Overseas with

DHL Express

4.1
Compare

Kuehne + Nagel

4.0
Compare

DB Schenker

4.3
Compare

Expeditors International

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