Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Leena AI Team. If you also belong to the team, you can get access from here

Leena AI Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Leena AI Interview Questions, Process, and Tips

Updated 9 Sep 2024

Top Leena AI Interview Questions and Answers

View all 18 questions

Leena AI Interview Experiences

Popular Designations

14 interviews found

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Aug 2024. There was 1 interview round.

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer had a very bad and arrogant attitude. Not approachable and very intimidating.

Skills evaluated in this interview

Senior Sdet Engineer Interview Questions asked at other Companies

Q1. Optimize an existing system. The system currently makes an API call and stores data in its memory. When it tries to serve a request from another component it refers to the memory location by searching the entire memory.
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

Skills evaluated in this interview

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)
Leena AI Interview Questions and Answers for Freshers
illustration image
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 2 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - easy interview learn basic interview coding question esay to medium level

Skills evaluated in this interview

Software Development Engineer Intern Interview Questions asked at other Companies

Q1. Say you're dealing with really long integers. They're too long to fit into a regular datatype, so linked lists are used to store them, with each node of the list containing one digit. Now the problem is, given two linked lists, i.e. two rea... read more
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jan 2024. There were 3 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your numbers and metrics handy

Sales Development Representative Interview Questions asked at other Companies

Q1. How to improve sales skills
View answer (1)

Leena AI interview questions for popular designations

 Customer Success Manager

 (2)

 Software Engineer

 (1)

 Senior Software Developer

 (1)

 Software Developer

 (1)

 Lead

 (1)

 Front end Developer

 (1)

 Finance Executive

 (1)

 Software Development Engineer

 (1)

Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Monster and was interviewed in Apr 2024. There was 1 interview round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Grind Leetcode

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)

Get interview-ready with Top Leena AI Interview Questions

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

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)

Jobs at Leena AI

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

I applied via Job Portal and was interviewed in May 2023. There were 3 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be able to In person QBRs for the clients in the US and AU. So be ready to travel it may not show up on the JD though

Customer Success Manager Interview Questions asked at other Companies

Q1. How do you manage if 2 or 3 or even more tasks spontaneously are assigned upon?
View answer (2)

Project Lead Interview Questions & Answers

user image Anonymous

posted on 13 Aug 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Project Lead Interview Questions asked at other Companies

Q1. PowerBuilder 1. How to build app in one click? 2. How to read data from web page? 3. Have you used any PDF tools 4. How to save data from datawindow to XML 5. How to read mail from Outlook 6. How you migrate to new version.net SQL 1. Perfor... read more
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Feb 2023. There were 3 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep all your data ready in terms of the last job. The last round was with the co-founder, he is not a very experienced fellow and expects the job role to be the same as the last company, which will generally never be the case. This after the resume was shared as the first step itself.

Customer Success Manager Interview Questions asked at other Companies

Q1. How do you manage if 2 or 3 or even more tasks spontaneously are assigned upon?
View answer (2)

Lead Interview Questions & Answers

user image Anonymous

posted on 24 Mar 2023

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Mar 2022. There were 6 interview rounds.

Interview Preparation Tips

Topics to prepare for Leena AI Lead interview:
  • Linkedin
Interview preparation tips for other job seekers - Be open. Talk whats on your mind. Do not share very minute personal details. Only share a global view of things. The more you share, the more questions get asked on those personal details.

Skills evaluated in this interview

Lead Interview Questions asked at other Companies

Q1. Why should we pay you xx Lakhs?
View answer (1)

I applied via Campus Placement and was interviewed in Nov 2021. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. 1) Time complexity of binary search for array and linked list
  • Ans. 

    Binary search has O(log n) time complexity for arrays and O(n) for linked lists.

    • Binary search is efficient for arrays due to their random access nature.

    • Linked lists require sequential traversal, making binary search inefficient.

    • For arrays, the time complexity is O(log n) as the search space is halved with each iteration.

    • For linked lists, the time complexity is O(n) as all nodes must be visited to find the target.

    • Binary...

  • Answered by AI
  • Q2. 2) Construct tree from inorder and post order list
  • Ans. 

    Construct a tree using inorder and postorder traversal lists.

    • The last element of the postorder list is the root of the tree.

    • Find the root in the inorder list and split the list into left and right subtrees.

    • Recursively construct the left and right subtrees using the corresponding sublists.

    • Return the root node.

    • Time complexity: O(n^2) in worst case, O(nlogn) on average.

  • Answered by AI
  • Q3. 3) Find depth of binary tree through recursion and iteration
  • Ans. 

    Find depth of binary tree through recursion and iteration

    • Recursively traverse left and right subtrees and return the maximum depth

    • Iteratively traverse the tree using a stack or queue and keep track of the depth

    • Depth of an empty tree is 0

    • Depth of a tree with only one node is 1

  • Answered by AI
  • Q4. 4) Find intersection of two arrays
  • Ans. 

    Intersection of two arrays is the common elements present in both arrays.

    • Sort both arrays and use two pointers to compare elements.

    • Use a hash set to store elements of one array and check for presence in the other array.

    • If arrays are already sorted, use binary search to find common elements.

  • Answered by AI
  • Q5. 5) Find out the heavier ball from 8 identical ball of which one is heavier using only a balance weighting machine in least number of trys
  • Ans. 

    Find the heavier ball from 8 identical balls using a balance weighting machine in least number of tries.

    • Divide the balls into 3 groups of 3, 3, and 2 balls.

    • Weigh the first two groups against each other.

    • If they balance, the heavier ball is in the remaining group of 2 balls.

    • If one group is heavier, weigh two balls from that group against each other.

    • If they balance, the heavier ball is the remaining ball.

    • If one ball is he

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Revise basic data structures and algorithms. Be aware of the logic behind calculating time complexities. Be prepared to implement the given coding questions on an ide

Skills evaluated in this interview

Software Development Engineer Interview Questions asked at other Companies

Q1. Given an acyclic graph of a city where each edge represents a road in the city and each vertex represents an crossing. Write an algo to find out the minimum number of vertices at which a policemen will be kept so that all the roads are cove... read more
View answer (2)
Contribute & help others!
anonymous
You can choose to be anonymous

Leena AI Interview FAQs

How many rounds are there in Leena AI interview?
Leena AI interview process usually has 2-3 rounds. The most common rounds in the Leena AI interview process are One-on-one Round, HR and Resume Shortlist.
How to prepare for Leena AI 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 Leena AI. The most common topics and skills that interviewers at Leena AI expect are CRM, Lead Generation, Cold Calling, Sales Development and SAAS.
What are the top questions asked in Leena AI interview?

Some of the top questions asked at the Leena AI interview -

  1. 5) Find out the heavier ball from 8 identical ball of which one is heavier usin...read more
  2. Why should we pay you xx Lak...read more
  3. What is the default credit term given on a invoice as per MSME a...read more
How long is the Leena AI interview process?

The duration of Leena AI interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

SALARIES

Clover Infotech

LIST OF COMPANIES

Discover companies

Find best workplace

SALARIES

Sonata Software

REVIEWS

Clover Infotech

No Reviews

REVIEWS

Sonata Software

No Reviews

COMPANY BENEFITS

Clover Infotech

No Benefits

SALARIES

Clover Infotech

SALARIES

Clover Infotech

SALARIES

Sonata Software

SALARIES

Clover Infotech

Tell us how to improve this page.

Leena AI Interview Process

based on 14 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

Vyapar Interview Questions
3.5
 • 53 Interviews
BrowserStack Interview Questions
3.6
 • 48 Interviews
Gupshup Interview Questions
3.5
 • 31 Interviews
Fleetx.io Interview Questions
3.7
 • 28 Interviews
Classplus Interview Questions
3.4
 • 28 Interviews
yellow.ai Interview Questions
3.1
 • 17 Interviews
Engati Interview Questions
2.4
 • 10 Interviews
View all

Leena AI Reviews and Ratings

based on 119 reviews

3.0/5

Rating in categories

3.0

Skill development

2.9

Work-life balance

3.3

Salary

2.9

Job security

3.0

Company culture

2.7

Promotions

2.9

Work satisfaction

Explore 119 Reviews and Ratings
Senior Engineering Manager

Gurgaon / Gurugram

7-12 Yrs

Not Disclosed

Senior Product Designer

Gurgaon / Gurugram

3-6 Yrs

Not Disclosed

Machine Learning Engineer

Gurgaon / Gurugram

3-6 Yrs

Not Disclosed

Explore more jobs
Chat Bot Developer
35 salaries
unlock blur

₹7 L/yr - ₹19.3 L/yr

Customer Success Manager
21 salaries
unlock blur

₹7 L/yr - ₹26 L/yr

Senior Software Engineer
16 salaries
unlock blur

₹18.9 L/yr - ₹55 L/yr

Software Engineer
15 salaries
unlock blur

₹17.1 L/yr - ₹31 L/yr

Sales Development Representative
11 salaries
unlock blur

₹8 L/yr - ₹17 L/yr

Explore more salaries
Compare Leena AI with

Jio Haptik

3.4
Compare

yellow.ai

3.2
Compare

Engati

2.4
Compare

Uniphore Software Systems

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