Indian Institute of Logistics, Chennai

Chennai, Tamil Nadu

Your seniors at Indian Institute of Logistics, Chennai helped you with their notes. Now they're helping you with their placement interview questions. 🙏

filter iconFilter interviews by

Indian Institute of Logistics, Chennai Placement Interview Questions

Updated 20 Feb 2024

2 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Duration
Less than 2 weeks
Result
I didn't hear back from the company

I applied via Campus Placement and was interviewed in Jan 2024.

2 Interview Rounds

1

One-on-one Round (2 Questions)

2

Aptitude Test Round

Initially I was instructed to take typing test, then drafting a mail to customer regarding different scenario (i.e: draft a mail to XYZ customer about their shipment is lost)

share interview
Interview experience
5
Excellent
Difficulty level
Hard
Duration
2-4 weeks
Result
No, I didn't receive an offer

I applied via Campus Placement and was interviewed in Sep 2023.

3 Interview Rounds

1

Resume Shortlist Round

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
2

Coding Test Round

152. Maximum Product Subarray
Medium
17.6K
552
Companies
Given an integer array nums, find a
subarray
that has the largest product, and return the product.

The test cases are generated so that the answer will fit in a 32-bit integer.



Example 1:

Input: nums = [2,3,-2,4]
Output: 6
Explanation: [2,3] has the largest product 6.
Example 2:

Input: nums = [-2,0,-1]
Output: 0
Explanation: The result cannot be 2, because [-2,-1] is not a subarray.


Constraints:

1 <= nums.length <= 2 * 104
-10 <= nums[i] <= 10
The product of any prefix or suffix of nums is guaranteed to fit in a 32-bit integer.

3

Aptitude Test Round

Basic quants and advanced quants

share interview