Premium Employer

i

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

Maersk Verified Tick

Compare button icon Compare button icon Compare
4.2

based on 2.8k Reviews

Filter interviews by

Maersk Software Developer Intern Interview Questions and Answers

Updated 29 Jun 2024

Maersk Software Developer Intern Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. What is Linear and non linear ds
  • Ans. 

    Linear data structures have elements arranged in a sequential order, while non-linear data structures have elements connected in a non-sequential manner.

    • Linear data structures include arrays, linked lists, queues, and stacks.

    • Non-linear data structures include trees, graphs, and heaps.

    • Linear data structures have a single path to traverse elements, while non-linear data structures have multiple paths.

  • Answered by AI
  • Q2. Write a query to display students record in ascending order of thier name and descending order of thier subject
  • Ans. 

    Query to display students record in ascending order of name and descending order of subject.

    • Use ORDER BY clause to sort the records

    • Specify ASC for name and DESC for subject in the ORDER BY clause

    • Example: SELECT * FROM students ORDER BY name ASC, subject DESC

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. About leadership skills
  • Q2. Problem solving skills
Round 3 - Telephonic Call 

(2 Questions)

  • Q1. Family background
  • Q2. Current location
  • Ans. 

    I am currently located in New York City.

    • New York City

    • Manhattan

    • East Coast

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I was interviewed in Jan 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

  • Q1. 

    0-1 Knapsack Problem

    A thief is planning to rob a store and has a knapsack that can carry a maximal weight of W. There are N items available, where each item i has a weight wi and a value vi. Determine th...

  • Q2. 

    Trapping Rain Water Problem Statement

    You are given a long type array/list ARR of size N, representing an elevation map. The value ARR[i] denotes the elevation of the ith bar. Your task is to determine th...

Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

  • Q1. 

    Maximum Value of Modulus Expression Problem

    You are provided with two arrays ARR1 and ARR2 both having an equal length N. Your objective is to compute the maximum value of the expression:

    |ARR1[ i ] - AR...

  • Q2. 

    Reverse Linked List Problem Statement

    Given a Singly Linked List of integers, your task is to reverse the Linked List by altering the links between the nodes.

    Input:

    The first line of input is an intege...
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Medium

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from SRM Institute Of Science & Technology. I applied for the job as SDE - Intern in GoaEligibility criteria7 CGPADelhivery interview preparation:Topics to prepare for the interview - DS, Algorithms, OOPS, Dynamic Programming, Data Base, NetworkingTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Mention some good projects on resume
Tip 2 : Be confident
Tip 3 : Good with computer science basics and ds and algo

Application resume tips for other job seekers

Tip 1 : Good Projects
Tip 2 : Having some achievements is plus point

Final outcome of the interviewSelected

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
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is restful api
  • Ans. 

    RESTful API is an architectural style for designing networked applications

    • REST stands for Representational State Transfer

    • Uses standard HTTP methods like GET, POST, PUT, DELETE

    • Resources are identified by URIs

    • Stateless communication between client and server

    • Responses are typically in JSON or XML format

  • Answered by AI
  • Q2. Bootstarp grid system

Skills evaluated in this interview

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

(1 Question)

  • Q1. Questions about kubernetes and dockerfile
Round 2 - Technical 

(1 Question)

  • Q1. Questions about your past experience
Round 3 - Behavioral 

(1 Question)

  • Q1. It was in general discussion round
Round 4 - HR 

(1 Question)

  • Q1. General discussion round
Interview experience
3
Average
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Introduce yourself.
  • Ans. 

    I am a software developer with 5 years of experience in Java and Python.

    • Experienced in Java and Python programming languages

    • Worked on various projects involving web development and data analysis

    • Familiar with Agile methodologies and version control systems like Git

  • Answered by AI
  • Q2. Project related questions.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. DSA ROUND - DP problem
  • Ans. 

    Dynamic Programming problem involving finding the maximum sum of non-adjacent elements in an array.

    • Use dynamic programming to keep track of the maximum sum at each index.

    • At each index, the maximum sum is either the current element plus the sum two indices back, or the sum at the previous index.

    • Example: For array [2, 4, 6, 2, 5], the maximum sum of non-adjacent elements is 13 (2 + 6 + 5).

  • Answered by AI
  • Q2. DSA ROUND - STRING PROBLEM
  • Ans. 

    Find the longest common prefix among an array of strings.

    • Iterate through the characters of the first string and compare with other strings

    • Return the prefix when characters don't match or reach end of any string

    • Example: Input - ['flower', 'flow', 'flight'], Output - 'fl'

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. PROJECT RELATED QUESTIONS
  • Q2. DESIGN LRU CACHE
  • Ans. 

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

    • Use a doubly linked list to keep track of the order of items based on their usage.

    • Use a hashmap to quickly access items in the cache.

    • When a new item is accessed, move it to the front of the linked list.

    • If the cache is full, remove the least recently used item from the end of the linked list.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Ecom Express Software Developer interview:
  • Dynamic programming
  • Priority queue
Interview preparation tips for other job seekers - Communicate yourself , whether you are able to think about the problem or not .

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Core Java and SQL-related questions.
Round 2 - HR 

(1 Question)

  • Q1. What is your Previous job experience-related ?
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Feb 2023.

Round 1 - Coding Test 

Basic algorithms testing

Round 2 - Technical 

(1 Question)

  • Q1. HLD question on chat application

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewers can be very rude at times, and can reject you without any reason. Though I got the offer, i declined because I have heard really had reviews about their current middle management. Join only if you are desperate and peace of mind doesn't matter to you.

I was interviewed in Dec 2020.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Left View of a Binary Tree Problem Statement

    Given a binary tree, your task is to print the left view of the tree.

    Example:

    Input:
    The input will be in level order form, with node values separated by a...
  • Q2. 

    Middle of a Linked List

    You are given the head node of a singly linked list. Your task is to return a pointer pointing to the middle of the linked list.

    If there is an odd number of elements, return the ...

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in GurgaonEligibility criteria7 cgpaDelhivery interview preparation:Topics to prepare for the interview - DBMS, Data Structures and Algorithms , OOP, Maths puzzles, Aptitude , CN, OSTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do a project
Tip 2 : Regular coding practice on GFG, Leetcode and coding ninjas type platforms
Tip 3 : Major team product is must

Application resume tips for other job seekers

Tip 1 : Don't put information which is not relevant to the job profile
Tip 2 : Don't Lie over your resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Maersk Interview FAQs

How many rounds are there in Maersk Software Developer Intern interview?
Maersk interview process usually has 3 rounds. The most common rounds in the Maersk interview process are Technical, HR and Telephonic Call.
What are the top questions asked in Maersk Software Developer Intern interview?

Some of the top questions asked at the Maersk Software Developer Intern interview -

  1. Write a query to display students record in ascending order of thier name and d...read more
  2. What is Linear and non linear...read more
  3. Current locat...read more

Tell us how to improve this page.

Maersk Software Developer Intern Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Join Maersk Improving life for all by integrating the world
Maersk Software Developer Intern Salary
based on 6 salaries
₹4.8 L/yr - ₹9.1 L/yr
12% less than the average Software Developer Intern Salary in India
View more details

Maersk Software Developer Intern Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

4.0

Salary

4.0

Job security

5.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Process Expert
2.1k salaries
unlock blur

₹2 L/yr - ₹7.2 L/yr

Senior Process Expert
1.1k salaries
unlock blur

₹2.5 L/yr - ₹8.2 L/yr

Senior Analyst
1k salaries
unlock blur

₹3.7 L/yr - ₹10 L/yr

Senior Specialist
715 salaries
unlock blur

₹4.2 L/yr - ₹14.5 L/yr

Analyst
694 salaries
unlock blur

₹2.5 L/yr - ₹10.1 L/yr

Explore more salaries
Compare Maersk with

Accenture

3.9
Compare

Capgemini

3.7
Compare

IBM

4.0
Compare

Infosys

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