Upload Button Icon Add office photos

FedEx Express

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

FedEx Express Software Engineer Interview Questions and Answers

Updated 8 Nov 2024

FedEx Express Software Engineer Interview Experiences

2 interviews found

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
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

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Software Engineer Jobs at FedEx Express

View all

Interview questions from similar companies

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

I applied via Referral and was interviewed before Jan 2022. 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Basic interview questions with project related questions
Round 3 - Technical 

(1 Question)

  • Q1. Detailed Questions on projects
Round 4 - HR 

(1 Question)

  • Q1. Normal HR interview questions with casual talks

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and positive. Keep all things ready related to your projects
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. DSA Questions - Easy to medium
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Visual Reasoning questions

Round 2 - Coding Test 

Mostly string based questions

Round 3 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Immediate joining

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont join.
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
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Api optimisations, query optimisations, how to keep code more extensible, scalable etc
Round 2 - One-on-one 

(1 Question)

  • Q1. Questions related to designing around redis

I applied via Recruitment Consultant and was interviewed in May 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is diameter of Binary Tree? Write full working code.
  • Ans. 

    Diameter of a binary tree is the longest path between any two leaf nodes.

    • Calculate the height of left and right subtrees recursively.

    • Calculate the diameter recursively using the formula max(left_height + right_height + 1, max(left_diameter, right_diameter)).

    • Return the maximum diameter.

  • Answered by AI
  • Q2. Find interchanged terms from an AP, where terms are arranged in series
  • Ans. 

    To find interchanged terms from an AP series

    • Identify the common difference between terms

    • Swap the positions of adjacent terms

    • Check if the new series is also an AP

    • Repeat until no more interchanged terms can be found

  • Answered by AI
  • Q3. Explain database indexing
  • Ans. 

    Database indexing is a technique to improve the performance of database queries.

    • Indexing creates a data structure that allows for faster retrieval of data.

    • Indexes are created on one or more columns of a table.

    • Queries that use indexed columns can be executed faster.

    • Indexes can be clustered or non-clustered.

    • Clustered indexes determine the physical order of data in a table.

    • Non-clustered indexes create a separate structure...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on basic data structures, operating systems and database.

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. What is DHCP,DNS,etc
  • Ans. 

    DHCP is a protocol that assigns IP addresses to devices on a network. DNS is a system that translates domain names to IP addresses.

    • DHCP assigns IP addresses to devices on a network

    • DNS translates domain names to IP addresses

    • DHCP reduces the need for manual IP address configuration

    • DNS allows users to access websites using domain names instead of IP addresses

  • Answered by AI
  • Q2. Dynamics host configuration Protocol Domain Name System

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Design a stack that support getmin in O(1) time and O(1) space complexities
  • Ans. 

    Design a stack that supports getmin in O(1) time and O(1) space complexities.

    • Use two stacks, one for storing the actual values and the other for storing the minimum values.

    • When pushing a new value, check if it is smaller than the current minimum value and push it to the minimum stack if it is.

    • When popping a value, check if it is the current minimum value and pop it from the minimum stack if it is.

    • To get the minimum val...

  • Answered by AI
  • Q2. Questions related OS and DBMS
  • Q3. Binary tree traversal
  • Ans. 

    Binary tree traversal is the process of visiting each node in a binary tree exactly once in a specific order.

    • There are three main types of binary tree traversal: inorder, preorder, and postorder.

    • Inorder traversal visits the left subtree, then the root, then the right subtree.

    • Preorder traversal visits the root, then the left subtree, then the right subtree.

    • Postorder traversal visits the left subtree, then the right subt...

  • Answered by AI
  • Q4. LRU cache explanation
  • Ans. 

    LRU cache is a data structure that stores the most recently used items and discards the least recently used items.

    • LRU stands for Least Recently Used

    • It has a fixed size and when the cache is full, the least recently used item is removed to make space for a new item

    • It uses a combination of a doubly linked list and a hash map to achieve O(1) time complexity for both insertion and deletion

    • Example: A web browser cache that ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good with your programming skills and fundamentals.

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

FedEx Express Interview FAQs

How many rounds are there in FedEx Express Software Engineer interview?
FedEx Express interview process usually has 1-2 rounds. The most common rounds in the FedEx Express interview process are Technical and One-on-one Round.
How to prepare for FedEx Express Software 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 FedEx Express. The most common topics and skills that interviewers at FedEx Express expect are Biochemistry, Genetics, System Design, Agile Coaching and Application Development.
What are the top questions asked in FedEx Express Software Engineer interview?

Some of the top questions asked at the FedEx Express Software Engineer interview -

  1. Csharp basics and a coding questing was given to implem...read more
  2. coding question to sort a given array using ...read more
  3. .net and angular basics questi...read more

Recently Viewed

INTERVIEWS

UnitedHealth

No Interviews

INTERVIEWS

Tech Mahindra

No Interviews

INTERVIEWS

Royal Enfield

No Interviews

INTERVIEWS

Maruti Suzuki

No Interviews

SALARIES

Emphatic Sense Technologies

SALARIES

Nissi Engineering Solution

SALARIES

Asahi India Glass

LIST OF COMPANIES

Emphatic Sense Technologies

Overview

INTERVIEWS

DP World

No Interviews

JOBS

Asahi India Glass

No Jobs

Tell us how to improve this page.

FedEx Express Software Engineer Interview Process

based on 3 interviews

Interview experience

2.7
  
Poor
View more
FedEx Express Software Engineer Salary
based on 9 salaries
₹8.5 L/yr - ₹19.5 L/yr
43% more than the average Software Engineer Salary in India
View more details

FedEx Express Software 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

1.0

Company culture

2.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer-Senior II

Hyderabad / Secunderabad

5-8 Yrs

Not Disclosed

Explore more jobs
Operations Executive
124 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Analyst
110 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead Operations
88 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Care Executive
87 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Market Analyst
82 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare FedEx Express with

DHL Express

4.1
Compare

Ups Logistics

3.7
Compare

Blue Dart Express

4.0
Compare

TNT Express

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