Trilogy Innovations interview experience Real time questions & tips from candidates to crack your interview

SDE - Intern

Trilogy Innovations
upvote
share-icon
2 rounds | 6 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 3 months
Topics: Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming, Operating System, networking
Tip
Tip

Tip 1 : Must do Previously asked Interviews as well as Online Test Questions.
Tip 2 : Prepare OS, DBMS, OOPs, and Computer Networks well.
Tip 3 : Prepare well for one project mentioned in the resume, the interviewer may ask any question related to the project, especially about the networking part of the project.

Application process
Where: Campus
Eligibility: None
Resume Tip
Resume tip

Tip 1 : Have at least one project on the resume.
Tip 2 : Must mention every skill and certificate in the resume.
Tip 3 : Must have known every strong and intermediate skill mentioned in the resume.

Interview rounds

01
Round
Medium
Face to Face
Duration60 mins
Interview date29 Aug 2019
Coding problem4

This was a technical round based on my resume, DSA, and project work.
Merge sort
Project explanation

1. Maximum Subarray Sum

Moderate
25m average time
75% success
0/80
Asked in companies
SquadstackAmazonRazorpay

Given an array of numbers, find the maximum sum of any contiguous subarray of the array.


For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and 86.


Given the array [-5, -1, -8, -9], the maximum sum would be -1.


Follow up: Do this in O(N) time.

Problem approach

public int maxSubArray(int[] nums) {
int max= Integer.MIN_VALUE;
int min= 0;
int sum=0;
for(int i=0;i sum+=nums[i];
max=Math.max(max,sum-min);
min=Math.min(min,sum);
}
return max;
}

Try solving now

2. OOPs based questions

Easy
15m average time
85% success
0/40
Asked in companies
Media.netHewlett Packard EnterpriseIBM

What is operator overloading?
What is OOP?
Basic concepts of OOP?
Explain polymorphism, abstraction, encapsulation, and inheritance with real-life examples.

Try solving now

3. DBMS Questions

Which SQL query have you worked on?
Normalization

4. Merge Sort

Easy
15m average time
85% success
0/40
Asked in companies
Media.netHewlett Packard EnterpriseIBM

Given a sequence of numbers ‘ARR’. Your task is to return a sorted sequence of ‘ARR’ in non-descending order with help of the merge sort algorithm.

Example :

Merge Sort Algorithm -

Merge sort is a Divide and Conquer based Algorithm. It divides the input array into two-parts, until the size of the input array is not ‘1’. In the return part, it will merge two sorted arrays a return a whole merged sorted array.

subsequence

The above illustrates shows how merge sort works.
Note :
It is compulsory to use the ‘Merge Sort’ algorithm.
Try solving now
02
Round
Medium
HR Round
Duration45 mins
Interview date29 Aug 2019
Coding problem2

This was again the technical + HR round in this round two interviewers were there.

1. Basic HR Questions

Introduce yourself.
Family background.
Why do you want to join Amdocs?
Your strength and weaknesses.
Your achievements.
Have you interviewed any other company before?
Explain your college project

Problem approach

Tip 1: Make sure your resume is up-to-date
Tip 2: Be confident and focus on your communication
Tip 3: Prepare for the behavioral questions

2. OS Question

Difference between semaphore and mutex?

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
SDE - Intern
4 rounds | 5 problems
Interviewed by Trilogy Innovations
3991 views
0 comments
0 upvotes
SDE - Intern
5 rounds | 4 problems
Interviewed by Trilogy Innovations
973 views
0 comments
0 upvotes
SDE - Intern
5 rounds | 3 problems
Interviewed by Trilogy Innovations
4965 views
0 comments
0 upvotes
SDE - Intern
4 rounds | 6 problems
Interviewed by Trilogy Innovations
1998 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - Intern
3 rounds | 6 problems
Interviewed by Amazon
15481 views
4 comments
0 upvotes
company logo
SDE - Intern
4 rounds | 7 problems
Interviewed by Microsoft
15339 views
1 comments
0 upvotes
company logo
SDE - Intern
2 rounds | 4 problems
Interviewed by Amazon
10142 views
2 comments
0 upvotes