Upload Button Icon Add office photos

Filter interviews by

Trendlyne Technologies Interview Questions and Answers

Updated 7 May 2024

Trendlyne Technologies Interview Experiences

Popular Designations

5 interviews found

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

I appeared for an interview in Jan 2024.

Round 1 - Assignment 

Stock market related

Round 2 - One-on-one 

(2 Questions)

  • Q1. Technical questions related to buy back, RBI policy, sector-specific
  • Q2. If RBI increases interest rate, how does it impact inflation?
  • Ans. 

    Increasing interest rates by RBI can impact inflation by reducing consumer spending and increasing borrowing costs.

    • Higher interest rates discourage borrowing and reduce consumer spending, leading to lower demand for goods and services.

    • Reduced demand can result in lower prices and inflation.

    • Higher interest rates also increase borrowing costs for businesses, which can lead to reduced investment and economic growth.

    • Howeve...

  • Answered by AI

Senior Research Analyst Interview Questions asked at other Companies

Q1. If internet went off, how will you manage a meeting?
View answer (1)
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic Python Questions
in 30 min

Round 2 - Coding Test 

A-What is PRime number
B-How should you itrate the dict in python
C-Merge two list using in built functions
D-tuple=(1,2,3)
tuple[2]=10
print(tuple)

Interview Preparation Tips

Interview preparation tips for other job seekers - Aplied in hirist

Python and Django Developer Interview Questions asked at other Companies

Q1. What happens when you enter URL in the chrome URL bar?
View answer (2)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Hirist and was interviewed in Sep 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
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
Round 2 - Technical 

(1 Question)

  • Q1. Intial pre screening with basic questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Detailed questions on JavaScript, HTML, CSS, React Js

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on basics of HTML, CSS, JavaScript and try to be crisp on answers

React Js Frontend Developer Interview Questions asked at other Companies

Q1. 1. What is difference between abstract class and interface ?
View answer (1)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Hirist and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Coding Test 

Basic python data structures and basic django working

Interview Preparation Tips

Topics to prepare for Trendlyne Technologies Software Developer interview:
  • basic python
  • django models

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 (43)

Trendlyne Technologies interview questions for popular designations

 Python and Django Developer

 (1)

 Analyst

 (1)

 Software Developer

 (1)

 React Js Frontend Developer

 (1)

 Senior Research Analyst

 (1)

Analyst Interview Questions & Answers

user image Anonymous

posted on 3 May 2023

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before May 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Research stock market and Trendlyne website, some knowledge of stock market will be needed.
  • Q2. Questions on stock market ratios
Round 3 - Assignment 

Assignment on stock market topic

Round 4 - One-on-one 

(1 Question)

  • Q1. Questions on assignment and other questions on stock market

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci Number Problem Statement Given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 + 7. Formula: F(n) = F(n-... read more
View answer (1)

Interview questions from similar companies

I appeared for an interview in Nov 2020.

Interview Questionnaire 

1 Question

  • Q1. Why to leave previous organization

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready for some tricky questions. There would be 3 rounds apart from HR round. Overall be chill since everybody is supportive.

I applied via Naukri.com and was interviewed before Mar 2021. There were 4 interview rounds.

Round 1 - Resume Shortlist 
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
Round 2 - Aptitude Test 
Round 3 - HR 

(8 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why should we hire you?
  • Q5. Why are you looking for a change?
  • Q6. Where do you see yourself in 5 years?
  • Q7. What are your strengths and weaknesses?
  • Q8. Tell me about yourself.
Round 4 - One-on-one 

(1 Question)

  • Q1. Related to previous job, and other common interview questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, honest and ready for situational questions

I appeared for an interview before Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

  • Q1. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. 

    Detect if a singly linked list forms a cycle by checking if a node's next points back to a previous node.

    • Use Floyd's Cycle Detection Algorithm to determine if there is a cycle in the linked list.

    • Maintain two pointers, one moving at double the speed of the other, if they meet at any point, there is a cycle.

    • If one of the pointers reaches the end of the list (null), there is no cycle.

  • Answered by AI
  • Q2. 

    Next Greater Element Problem Statement

    Given a list of integers of size N, your task is to determine the Next Greater Element (NGE) for every element. The Next Greater Element for an element X is the firs...

  • Ans. 

    Find the Next Greater Element for each element in a list of integers.

    • Iterate through the list of integers from right to left.

    • Use a stack to keep track of elements for which the Next Greater Element is not yet found.

    • Pop elements from the stack until a greater element is found or the stack is empty.

    • Assign the Next Greater Element as the top element of the stack or -1 if the stack is empty.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. How would you design an ATM machine?
  • Ans. 

    Designing an ATM machine involves considering user interface, security measures, transaction processing, and hardware components.

    • User interface should be intuitive and easy to navigate for users of all ages.

    • Implement security measures such as PIN entry, card authentication, and encryption to protect user data.

    • Transaction processing should be fast and reliable, with options for cash withdrawals, deposits, transfers, and...

  • Answered by AI
Round 3 - HR 

Round duration - 45 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNAGroww interview preparation:Topics to prepare for the interview - DSA, Database Systems, OOP, Operating Systems, Computer NetworksTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice DSA daily
Tip 2 : Try to think of the solution first before jumping to the solution
Tip 3 : Go through interview experience
Tip 4 : Have mock interviews

Application resume tips for other job seekers

Tip 1 : Know in depth what is there in your resume
Tip 2 : Mention your skills and work properly

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

Design dream11. Bonus - how notification will be sent to customer for milestone of a player they have followed at scale.

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Joins, case when
  • Ans. 

    Joins are used to combine rows from two or more tables based on a related column between them. Case when is a conditional statement used to perform different actions based on different conditions.

    • Joins are used to retrieve data from multiple tables based on a related column

    • Case when is used to perform different actions based on different conditions in SQL queries

    • Example: SELECT * FROM table1 JOIN table2 ON table1.id = ...

  • Answered by AI

Skills evaluated in this interview

Trendlyne Technologies Interview FAQs

How many rounds are there in Trendlyne Technologies interview?
Trendlyne Technologies interview process usually has 2-3 rounds. The most common rounds in the Trendlyne Technologies interview process are One-on-one Round, Resume Shortlist and Assignment.
How to prepare for Trendlyne Technologies interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Trendlyne Technologies. The most common topics and skills that interviewers at Trendlyne Technologies expect are Django, MySQL, Python, Javascript and JQuery.
What are the top questions asked in Trendlyne Technologies interview?

Some of the top questions asked at the Trendlyne Technologies interview -

  1. If RBI increases interest rate, how does it impact inflati...read more
  2. Research stock market and Trendlyne website, some knowledge of stock market wil...read more
  3. Questions on assignment and other questions on stock mar...read more

Tell us how to improve this page.

Trendlyne Technologies Interview Process

based on 5 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

Groww Interview Questions
3.7
 • 69 Interviews
Better.com Interview Questions
3.0
 • 54 Interviews
Indiafilings Interview Questions
3.5
 • 40 Interviews
Leap Finance Interview Questions
3.3
 • 26 Interviews
Wishup Interview Questions
4.2
 • 23 Interviews
Lentra AI Interview Questions
2.8
 • 21 Interviews
Moder Solutions Interview Questions
3.4
 • 17 Interviews
View all

Trendlyne Technologies Reviews and Ratings

based on 13 reviews

4.2/5

Rating in categories

4.2

Skill development

4.3

Work-life balance

4.0

Salary

4.1

Job security

3.9

Company culture

3.8

Promotions

3.8

Work satisfaction

Explore 13 Reviews and Ratings
Full Stack Developer
7 salaries
unlock blur

₹6 L/yr - ₹10 L/yr

Senior Content Analyst
4 salaries
unlock blur

₹6 L/yr - ₹10.5 L/yr

Full Stack Engineer
3 salaries
unlock blur

₹9 L/yr - ₹14 L/yr

Explore more salaries
Compare Trendlyne Technologies with

Better.com

3.0
Compare

Samunnati Financial Intermediation and Services

4.3
Compare

5paisa Capital Ltd.

3.9
Compare

Hero Housing Finance

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