Upload Button Icon Add office photos

Filter interviews by

Trilogy Innovations Software Developer Intern Interview Questions and Answers

Updated 28 May 2022

Trilogy Innovations Software Developer Intern Interview Experiences

2 interviews found

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

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 ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Time management

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via Naukri.com and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Duration of the project and team environment

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with latest technologies.

I applied via LinkedIn and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. 1. tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - It was nice, but since Im not great at coding I didn't do well

I applied via Campus Placement and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Waterfall model, Software development life cycle
  • Q2. How do you arrive at factorial without recursive function
  • Ans. 

    Factorial can be calculated using a loop by multiplying numbers from 1 to n.

    • Initialize a variable to 1

    • Use a loop to multiply the variable with numbers from 1 to n

    • Return the variable

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up your fundamental skills

I applied via Naukri.com and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

It includes, maths, English, Computer, general knowledge

Round 2 - Technical 

(1 Question)

  • Q1. Related to your field
Round 3 - HR 

(1 Question)

  • Q1. Communication skill and salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Just good with your knowledge and communication should be perfect.

I applied via Campus Placement and was interviewed before Feb 2020. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Was interviewed as fresher?
  • Q2. Written test conducted? with verbal ability test ? GD
  • Q3. How would u deal with a problematic situation when you are working in a team?
  • Q4. What are your plans about higher studies?

Interview Preparation Tips

Interview preparation tips for other job seekers - it was basic with apptiude test and attitiude test.

Interview Questionnaire 

3 Questions

  • Q1. Process builder. 2.types of relationships. 3.difference in user ,profile and role. 4.workflow. 5.Admin questions
  • Ans. 

    Answering questions related to software development and Salesforce administration.

    • Process Builder is a visual tool in Salesforce used to automate business processes.

    • Types of relationships in Salesforce include lookup, master-detail, and many-to-many relationships.

    • User represents an individual who can log in and access Salesforce, Profile defines the permissions and settings for a user, and Role determines the hierarchy...

  • Answered by AI
  • Q2. What configuration i have done.
  • Ans. 

    I have configured various software systems and tools for development purposes.

    • Configured IDEs such as Eclipse and Visual Studio for development

    • Set up version control systems like Git and SVN

    • Installed and configured build tools like Maven and Gradle

    • Configured application servers like Tomcat and JBoss

    • Set up databases like MySQL and Oracle for development and testing

  • Answered by AI
  • Q3. Salary negotiations

Interview Preparation Tips

Round: Manager round
Experience: Configuration and what work ee have done in your previous company.

Skills evaluated in this interview

Tell us how to improve this page.

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

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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