Upload Button Icon Add office photos
Engaged Employer

i

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

Admiral Marine Services Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Admiral Marine Services Purchase Engineer Interview Questions and Answers

Updated 31 Mar 2024

Admiral Marine Services Purchase Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Related to all departments in ships

Interview questions from similar companies

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

I applied via Walk-in and was interviewed before May 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. Tell me about your self
  • Q2. Name engine parts
  • Ans. 

    Engine parts are the components that make up an engine and are responsible for its proper functioning.

    • Cylinder block

    • Pistons

    • Crankshaft

    • Camshaft

    • Valves

    • Connecting rods

    • Timing belt/chain

    • Oil pump

    • Water pump

    • Fuel injectors

  • Answered by AI
  • Q3. Boilers parts and accessories

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and focus on communication skill
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude and reasoning, and some GK about engineering

Round 2 - Interview 

(2 Questions)

  • Q1. Interview taken by Institute faculty. Generally captains or chief engineers. Starts with general personal questions and dives deep into engineering.
  • Q2. Introduction About my previous job. Transformer. Type of current in household. What do local street transformer do? Stepup or step down. And why? Ic engines. Working and classification. Buoyancy and float...
Round 3 - Medical test 

(1 Question)

  • Q1. After interview you are called for a medical exam,to test you are fit for sea or not.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't lie.

I was interviewed before May 2021.

Round 1 - Assignment 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

  • Q1. Design a class booking application for students.
  • Ans. 

    A class booking application for students to schedule and manage their classes.

    • Create a class booking system where students can view available classes, book classes, and manage their schedule.

    • Include features like class search, class details, booking confirmation, and calendar view.

    • Implement user authentication to ensure only registered students can book classes.

    • Allow students to cancel or reschedule classes with proper...

  • Answered by AI
Round 2 - Telephonic Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

The interviewer understand the current problem statement I was working on. 
Asked the clarifying questions and alternative approaches to solve the same and their tradeoffs.
Also, asked about the technologies I was using in depth and reason for choosing the same.

  • Q1. 

    Gas Tank Problem Statement

    You have a car with a gas tank of infinite capacity. There are 'N' gas stations located along a circular route, numbered from 0 to N-1. You begin your journey with an empty tank...

  • Ans. 

    Find the starting gas station index to complete a circular route with gas and cost arrays.

    • Iterate through gas stations, keeping track of gas remaining after each station

    • If gas remaining is negative, reset starting station to current station + 1

    • If total gas remaining at the end is greater than or equal to total cost, return starting station index

  • Answered by AI
Round 3 - Telephonic Call 

Round duration - 45 Minutes
Round difficulty - Medium

This round was their with the CTO and was mostly the culture fitment round.

 

Round 4 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

This round was with the cofounder and was mostly culture fitment.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaNo criteriaRIVIGO interview preparation:Topics to prepare for the interview - Data Structures, Competitive Programming, Databases, Java, Spring , Hibernate, Jenkins, AWSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice questions on leetcode
Tip 2 : Understand the best solutions in depth and algorithm used
Tip 3 : Ask clarifying questions to the interviewer and break the problem to smaller sub parts

Application resume tips for other job seekers

Tip 1 : Highlight your most impactful work on the resume
Tip 2 : Keep it easy to understand

Final outcome of the interviewSelected

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

The basic questions asked in an interview .

Round 2 - Coding Test 

DP, graph, and array questions asked in 2nd round also asked my company project

Interview Preparation Tips

Interview preparation tips for other job seekers - please prepare for the DSA and system design round and basic computer concept
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Jan 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Something about yourself
  • Q2. Projects and improvements
Round 2 - One-on-one 

(1 Question)

  • Q1. People related questions

I applied via Referral and was interviewed in Jul 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. No technical questions
  • Q2. BASIC INTERVIEW LIKE L1

Interview Preparation Tips

Interview preparation tips for other job seekers - No job guaranty, Non technical HOD, Unmanaged Infra

Interview Preparation Tips

Interview preparation tips for other job seekers - I gave attitude and dark personality test in Delhivery. But after clearing this rounds. They don't take my interview. They said that they have shortlisted another candidate. They even don't pick up call and clarify it.

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. Two problems[Ds and algo] +Cv Project Explanation 1 hour interview[Single round only]
  • Q2. Anyone who does LeetCode medium level problems can solve them easily always do follow up of the problems cause that is the only thing they desire from your solution

Admiral Marine Services Interview FAQs

How many rounds are there in Admiral Marine Services Purchase Engineer interview?
Admiral Marine Services interview process usually has 1 rounds. The most common rounds in the Admiral Marine Services interview process are Technical.

Tell us how to improve this page.

Admiral Marine Services Purchase Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Delhivery Interview Questions
3.9
 • 458 Interviews
ElasticRun Interview Questions
3.5
 • 250 Interviews
Maersk Interview Questions
4.2
 • 201 Interviews
Ecom Express Interview Questions
3.8
 • 198 Interviews
DTDC Express Interview Questions
3.7
 • 151 Interviews
Exl India Interview Questions
3.5
 • 103 Interviews
Safexpress Interview Questions
4.0
 • 103 Interviews
Blue Dart Express Interview Questions
4.0
 • 102 Interviews
View all
Admiral Marine Services Purchase Engineer Salary
based on 4 salaries
₹2.4 L/yr - ₹3.6 L/yr
26% less than the average Purchase Engineer Salary in India
View more details
Executive Accountant
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Vts Operator
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Recruitment Executive
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Operations Executive
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Purchase Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Admiral Marine Services with

Mercator

3.8
Compare

Great Eastern Shipping Company

4.2
Compare

Shreyas Shipping Logistics

3.0
Compare

Essar Shipping

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