Upload Button Icon Add office photos

Filter interviews by

Trilogy Innovations Interview Questions and Answers

Updated 11 Sep 2023

Trilogy Innovations Interview Experiences

Popular Designations

7 interviews found

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in Mar 2023. There were 3 interview rounds.

Machine Learning Engineer Interview Questions asked at other Companies

Q1. Find Permutation Problem Statement Given an integer N, determine an array of size 2 * N that satisfies the following conditions: Each number from 1 to N appears exactly twice in the array. The distance between the second and first occurren... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2022. There were 3 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a good company, here we can learn more and help from the senior to gain the knowledge.

SDE (Software Development Engineer) Interview Questions asked at other Companies

Q1. A string is given consisting of lowercase alphabets. Write a function which returns yes if the string has all the lowercase letters appearing in it at least once. O(N) time and without using extra space
View answer (3)
Trilogy Innovations Interview Questions and Answers for Freshers
illustration image

Summer Intern Interview Questions & Answers

user image Anonymous

posted on 31 Aug 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Aug 2022. There were 3 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - BRUSH ALL YOUR DSA CONCEPTS AND HR RELATED QUESTIONS

Summer Intern Interview Questions asked at other Companies

Q1. There are 8 bottles of milk out of which one bottle is poisoned. What will be the minimum number of persons required to find the poisoned bottle if the person dies within 24 hours of drinking the poison. You have only 24 hours.
View answer (6)

I appeared for an interview in Dec 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. 

    Stocks are Profitable Problem Statement

    You are provided with an array/list 'prices', where each element signifies the prices of a stock as of yesterday and the indices represent minutes. The task is to d...

  • Ans. 

    Given stock prices, find the maximum profit from a single buy and sell action.

    • Iterate through the array and keep track of the minimum price seen so far and the maximum profit achievable.

    • Calculate the profit by subtracting the current price from the minimum price and update the maximum profit if needed.

    • Return the maximum profit obtained after iterating through the array.

    • Example: For prices = [2, 100, 150, 120], buy at 2

  • Answered by AI
Round 2 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interview Preparation Tips

Eligibility criteria7 CGPATrilogy Innovations interview preparation:Topics to prepare for the interview - Array, Dp, string, Tree, graph and other important coding questionsTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Work hard
Tip 2 : Prepare resume well 

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Trilogy Innovations interview questions for popular designations

 Software Developer Intern

 (2)

 Software Engineer

 (1)

 Software Developer

 (1)

 Summer Intern

 (1)

 Machine Learning Engineer

 (1)

 SDE (Software Development Engineer)

 (1)

I applied via Campus Placement and was interviewed in Jun 2022. There were 2 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - i applied from my college . first round was coding round which need you to have strong DSA practice. This company offers 35.5 L ctc

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

I appeared for an interview before May 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Two DSA problems of difficulty rating of 1500-1800 on Codeforces.

  • Q1. 

    Find K Closest Elements

    Given a sorted array 'A' of length 'N', and two integers 'K' and 'X', your task is to find 'K' integers from the array closest to 'X'. If two integers are at the same distance, pre...

  • Ans. 

    Find K closest elements to X in a sorted array A.

    • Use binary search to find the closest element to X in the array.

    • Maintain two pointers to expand around the closest element to find K closest elements.

    • Handle cases where two elements are equidistant by choosing the smaller one.

    • Return the K closest elements in a new array.

  • Answered by AI
  • Q2. 

    Random Point Generator in a Circle

    Mr. Schrodinger needs to generate points that are uniformly distributed inside a specific circle for testing his hypothesis. Your task is to implement a function that ge...

  • Ans. 

    Implement a function to generate random points uniformly distributed inside a circle.

    • Generate random points using polar coordinates

    • Ensure points fall within the circle by checking if distance from center is less than or equal to radius

    • Check if points are uniformly distributed by running statistical tests

    • Return 1 if points are uniformly distributed, else return 0

  • Answered by AI
Round 2 - Video Call 

Round duration - 45 minutes
Round difficulty - Medium

This round was majorly based on my resume discussion. It was with a senior VP. We had an in-depth discussion on my past interview experiences, my projects etc.

Interview Preparation Tips

Eligibility criteriaNATriology innovations interview preparation:Topics to prepare for the interview - DSA, OOP, DBMS, System Design, Aptitude TestsTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Give regular programming contests. Try to achieve Codeforce Candidate Master level or equivalent
Tip 2 : Learn/Practice DSA.
Tip 3 : Do at least 2 projects on your resume, on topics such as ML, NLP, Dev etc

Application resume tips for other job seekers

Tip 1 : Mention atleast 2 good projects and be thorough with them.
Tip 2 : Mention CP contest rankings or ratings

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

I applied via Naukri.com and was interviewed in Feb 2022. There were 2 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - 2hr coding round test and questions were based on DSA

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (205)

Interview questions from similar companies

I appeared for an interview before Sep 2016.

Interview Preparation Tips

Round: Test
Experience: This was a group test. We were asked to answer and complete all questions from both sections. Test was conducted in TCS campus in Pune
Tips: Learning basic level Maths and English will help clear this test
Duration: 2 hours
Total Questions: 45

Round: Test Selection
Experience: This was a direct shortlist from all who cleared the test

College Name: Sinhgad Academy of Engineering

I appeared for an interview in Dec 2020.

Round 1 - Video Call 

(3 Questions)

Round duration - 45 Minutes
Round difficulty - Easy

This round was held on Google Meet Video Call at 10 A.M.
There were 2 Interviewers and they were very helpful.

  • Q1. 

    Kth Largest Element Problem

    Given an array containing N distinct positive integers and a number K, determine the Kth largest element in the array.

    Example:

    Input:
    N = 6, K = 3, array = [2, 1, 5, 6, 3, ...
  • Ans. 

    Find the Kth largest element in an array of distinct positive integers.

    • Sort the array in non-increasing order and return the Kth element.

    • Handle multiple test cases efficiently.

    • Ensure all elements in the array are distinct.

  • Answered by AI
  • Q2. Can you draw an E-R Diagram for Uber?
  • Ans. 

    An E-R Diagram for Uber would include entities like User, Driver, Ride, Payment, and Location.

    • Entities: User, Driver, Ride, Payment, Location

    • Relationships: User requests Ride, Driver provides Ride, Payment for Ride

    • Attributes: User ID, Driver ID, Ride ID, Payment ID, Location ID

    • Example: User (1) requests Ride (A) from Location (X) to Location (Y) with Driver (Z) providing the Ride and Payment (123) made for the Ride.

  • Answered by AI
  • Q3. 

    Maximum Sum Path from Leaf to Root

    Given a binary tree with 'N' nodes, identify the path from a leaf node to the root node that has the maximum sum among all root-to-leaf paths.

    Example:

    All the possibl...

  • Ans. 

    Find the path from a leaf node to the root node with the maximum sum in a binary tree.

    • Traverse the binary tree from leaf nodes to the root while keeping track of the sum of each path.

    • Compare the sums of all paths and return the path with the maximum sum.

    • Use recursion to traverse the tree efficiently.

    • Consider edge cases such as when the tree is empty or has only one node.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

The round was 2nd technical round conducted through Google Meet.
There were 2 interviewers and they were helpful.
Timing was from 11:10 A.M - 12:00 P.M

  • Q1. 

    Add Two Numbers Represented as Linked Lists

    Given two linked lists representing two non-negative integers, where the digits are stored in reverse order (i.e., starting from the least significant digit to ...

  • Ans. 

    Add two numbers represented as linked lists and return the sum as a linked list.

    • Traverse both linked lists simultaneously while keeping track of carry from previous sum

    • Create a new linked list to store the sum digits

    • Handle cases where one list is longer than the other by adding remaining digits with carry

    • Remember to handle the case where there is a carry after adding all digits

  • Answered by AI
Round 3 - HR 

Round duration - 15 Minutes
Round difficulty - Easy

Timing was 12:30 P.M. to 1:00 P.M.
It was held on Google Meet and HR was helpful.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in ChennaiEligibility criteria70% aboveHexaware Technologies interview preparation:Topics to prepare for the interview - Dynamic Programming, Sort and Search Algorithms, Graphs, Data Structures ( Priority Queue, stack, sets), Greedy Algorithms, OOPS, DBMSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Contribute time for course subjects also like OS,DBMS,OOPS.
Tip 2 : Start practicing on Leetcode and InterviewBit 1 month before your Placement Drive and try solving approx 300+ questions.
Tip 3 : Regularly Participate in Coding Contests on CodeForces and try to be Expert.

Application resume tips for other job seekers

Tip 1 : Don't try to lie in resume as questions can be asked on the same in depth.
Tip 2 : Mention atleast 1 project or past work experience.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 78 minutes
Round difficulty - Easy

My slot was at 4.30 pm on 11 th oct 2020

  • Q1. 

    Fishmonger Toll Optimization Problem

    A fishmonger needs to transport goods from a port to a market, crossing multiple states each requiring a toll. The goal is to minimize the toll costs while ensuring th...

  • Ans. 

    The Fishmonger Toll Optimization Problem involves minimizing toll costs while ensuring timely delivery of goods from a port to a market.

    • Given 'N' states and a time limit 'M', find the smallest toll amount to reach the market from the port within the given time.

    • Use dynamic programming to solve the problem efficiently.

    • Consider the time and toll matrices to calculate the minimum toll cost.

    • Return -1 if it is not possible t

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 20 Minutes
Round difficulty - Easy

It happened in the afternoon

  • Q1. 

    Shape and Method Overriding Problem Statement

    Create a base class called Shape that contains a field named shapeType and a method printMyType.

    Implement two derived classes:

    • Square: This class inheri...
  • Ans. 

    Create base class Shape with field shapeType and method printMyType. Implement Square and Rectangle classes with calculateArea method.

    • Create a base class Shape with shapeType field and printMyType method.

    • Implement Square and Rectangle classes inheriting from Shape.

    • Include additional fields like length and breadth in Square and Rectangle classes.

    • Override printMyType method in Square and Rectangle classes to output the t...

  • Answered by AI
  • Q2. What are the ACID properties in database management systems?
  • Ans. 

    ACID properties are a set of properties that guarantee the reliability of transactions in database management systems.

    • ACID stands for Atomicity, Consistency, Isolation, and Durability.

    • Atomicity ensures that either all operations in a transaction are completed successfully or none are.

    • Consistency ensures that the database remains in a consistent state before and after the transaction.

    • Isolation ensures that the execution...

  • Answered by AI
Round 3 - Assignment 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. Can you write an essay on any topic and present it verbally?
  • Ans. 

    Yes, I can write an essay on any topic and present it verbally.

    • Choose a topic that interests you and research it thoroughly

    • Create an outline with an introduction, body paragraphs, and a conclusion

    • Use clear and concise language to convey your ideas

    • Practice presenting your essay verbally to improve your delivery

    • Engage your audience by maintaining eye contact and using gestures

    • Be prepared to answer questions or discuss yo

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in PuneEligibility criteriaAbove 60% or 6 C.G.P.AHexaware Technologies interview preparation:Topics to prepare for the interview - Aptitude , Logical Reasoning , Verbal , DBMS , OS , Java Lang , Computer science basicsTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice good aptitude questions
Tip 2 : Read important core subjects thoroughly
Tip 3 : Also revise language basics

Application resume tips for other job seekers

Tip 1 : Be honest with your resume
Tip 2 : Try to somehow highlight your strong points in resume

Final outcome of the interviewRejected

Skills evaluated in this interview

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

Trilogy Innovations Interview FAQs

How many rounds are there in Trilogy Innovations interview?
Trilogy Innovations interview process usually has 2-3 rounds. The most common rounds in the Trilogy Innovations interview process are Coding Test, Resume Shortlist and Aptitude Test.
What are the top questions asked in Trilogy Innovations interview?

Some of the top questions asked at the Trilogy Innovations interview -

  1. Totally based on the operating system and networking questions and some from th...read more
  2. Questions based on DFS and ...read more
  3. i couldnt crack roun...read more

Recently Viewed

INTERVIEWS

CitiusTech

No Interviews

INTERVIEWS

Tata Power Solar

No Interviews

INTERVIEWS

Xcaliber Infotech

No Interviews

SALARIES

Trilogy Innovations

INTERVIEWS

Knowledge Lens

No Interviews

INTERVIEWS

Trilogy Innovations

No Interviews

INTERVIEWS

Trilogy Innovations

No Interviews

INTERVIEWS

Hindustan Coca Cola Beverages

No Interviews

INTERVIEWS

GEP Worldwide

No Interviews

Tell us how to improve this page.

Trilogy Innovations Interview Process

based on 3 interviews

Interview experience

3.3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
View all

Trilogy Innovations Reviews and Ratings

based on 3 reviews

1.7/5

Rating in categories

4.0

Skill development

1.2

Work-life balance

4.4

Salary

2.7

Job security

1.4

Company culture

3.1

Promotions

2.6

Work satisfaction

Explore 3 Reviews and Ratings
Software Engineer
12 salaries
unlock blur

₹30 L/yr - ₹39.5 L/yr

SDE (Software Development Engineer)
12 salaries
unlock blur

₹36 L/yr - ₹36.5 L/yr

Software Developer
9 salaries
unlock blur

₹30 L/yr - ₹36 L/yr

Software Development Engineer
9 salaries
unlock blur

₹36 L/yr - ₹36.5 L/yr

Sde1
4 salaries
unlock blur

₹34 L/yr - ₹36.5 L/yr

Explore more salaries
Compare Trilogy Innovations with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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