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 Software Development Engineer Intern Interview Questions and Answers

Updated 9 Feb 2024

Leena AI Software Development Engineer Intern Interview Experiences

1 interview found

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.

Round 1 - Coding Test 

1 hour coding question array maths hackearth

Round 2 - One-on-one 

(5 Questions)

  • Q1. He asked right view of the binary tree
  • Ans. 

    The right view of a binary tree shows the nodes visible when the tree is viewed from the right side.

    • The right view includes the last node at each level of the tree.

    • To find the right view, perform a level order traversal (BFS) and capture the last node at each level.

    • Example: For the tree [1, 2, 3, null, 5, null, 4], the right view is [1, 3, 4].

    • Alternatively, a depth-first traversal (DFS) can be used, prioritizing right ...

  • Answered by AI
  • Q2. He asked simple map questions
  • Q3. Form a binary tree
  • Ans. 

    To form a binary tree, create nodes with left and right child pointers.

    • Start by creating a root node.

    • For each node, create left and right child nodes.

    • Repeat the process until all nodes are created.

  • Answered by AI
  • Q4. Design of a map
  • Ans. 

    Design a map

    • Consider the purpose of the map (e.g., navigation, data visualization)

    • Decide on the level of detail and scale of the map

    • Choose appropriate symbols and colors for different features

    • Include a legend or key to explain the map symbols

    • Ensure the map is easy to read and understand

  • Answered by AI
  • Q5. He asked right view of tree
  • Ans. 

    The right view of a binary tree shows the nodes visible when looking from the right side.

    • The right view includes the last node at each level of the tree.

    • To find the right view, perform a level order traversal (BFS) and capture the last node at each level.

    • Example: For the tree [1, 2, 3, null, 5, null, 4], the right view is [1, 3, 4].

    • Alternatively, a depth-first traversal (DFS) can be used, keeping track of the maximum d...

  • Answered by AI

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

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Leena AI?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. System Design and Ds and algo questions

Software Development Engineer Intern Interview Questions Asked at Other Companies

asked in Amazon
Q1. Say you're dealing with really long integers. They're too long to ... read more
asked in Amazon
Q2. Given a singly-linked, non-circular linked list, swap the kth nod ... read more
Q3. What is the angle between the minute and hour hand at 1:15?
asked in Amazon
Q4. Given two linked lists representing two long numbers, add the num ... read more
asked in Amazon
Q5. Given a Binary Search Tree, print the kth last node in inorder tr ... read more

Interview Questionnaire 

2 Questions

  • Q1. Laravel Nova task
  • Q2. Php basic questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Mar 2023. 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 

Aptitude Test with 1 coding question and 8 other aptitude questions

Round 3 - One-on-one 

(1 Question)

  • Q1. DSA questions with some dbms questions.
Round 4 - One-on-one 

(1 Question)

  • Q1. DSA + SQL query writing questions. Do revise SQL before interview.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. What is the DOM ?
  • Q2. What is SSR?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Low level Design Problem in Java

Round 2 - Technical 

(1 Question)

  • Q1. Data Structures - Graph Problem DFS
Round 3 - Coding Test 

System Design with few details

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

(1 Question)

  • Q1. They asked to design a database table
  • Ans. 

    Design a database table for managing user accounts in a web application.

    • Table Name: Users

    • Columns: id (INT, Primary Key), username (VARCHAR), password (VARCHAR), email (VARCHAR), created_at (TIMESTAMP)

    • Indexes: Create an index on username for faster lookups.

    • Constraints: Ensure email is unique and validate password strength.

  • Answered by AI
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. LLD one question Parking lot system
  • Q2. Queue related basic questions
  • Q3. Basic .net core questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Promises in javascript
  • Ans. 

    Promises in JavaScript are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() to handle success and .catch() to handle errors.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Resume based questions
  • Q2. Event loop in nodejs
  • Ans. 

    Event loop in Node.js manages asynchronous operations by executing callback functions when certain events occur.

    • Event loop is responsible for handling I/O operations, timers, and callbacks in Node.js

    • It allows Node.js to perform non-blocking operations efficiently

    • Event loop continuously checks the event queue for new events to execute

  • Answered by AI
  • Q3. Javascript es6 questions

Skills evaluated in this interview

Leena AI Interview FAQs

How many rounds are there in Leena AI Software Development Engineer Intern interview?
Leena AI interview process usually has 2 rounds. The most common rounds in the Leena AI interview process are Coding Test and One-on-one Round.
What are the top questions asked in Leena AI Software Development Engineer Intern interview?

Some of the top questions asked at the Leena AI Software Development Engineer Intern interview -

  1. he asked right view of the binary t...read more
  2. he asked right view of t...read more
  3. form a binary t...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Vyapar Interview Questions
3.5
 • 60 Interviews
Fleetx.io Interview Questions
3.6
 • 29 Interviews
Classplus Interview Questions
3.4
 • 28 Interviews
LambdaTest Interview Questions
4.5
 • 26 Interviews
Tata nexarc Interview Questions
3.1
 • 25 Interviews
Twilio Interview Questions
3.8
 • 24 Interviews
Springworks Interview Questions
4.5
 • 23 Interviews
View all

Leena AI Software Development Engineer Intern Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Chat Bot Developer
39 salaries
unlock blur

₹10.7 L/yr - ₹19.3 L/yr

Customer Success Manager
24 salaries
unlock blur

₹13.9 L/yr - ₹22 L/yr

Software Engineer
16 salaries
unlock blur

₹12.4 L/yr - ₹23.2 L/yr

Senior Software Engineer
16 salaries
unlock blur

₹27.9 L/yr - ₹49.5 L/yr

Software Developer
13 salaries
unlock blur

₹13.2 L/yr - ₹26.7 L/yr

Explore more salaries
Compare Leena AI with

Vyapar

3.5
Compare

KEKA TECHNOLOGIES

3.3
Compare

Fleetx.io

3.6
Compare

Signzy Technologies

3.0
Compare
write
Share an Interview