Upload Button Icon Add office photos
Engaged Employer

i

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

University Living Accommodation Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

University Living Accommodation Software Developer Interview Questions and Answers

Updated 18 Aug 2024

University Living Accommodation Software Developer Interview Experiences

1 interview found

Software Developer Interview Questions & Answers

user image Abhishek Padiyar

posted on 18 Aug 2024

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

I applied via Campus Placement and was interviewed in Jul 2024. 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 - Assignment 

Develop an app of web Developement using react

Round 3 - One-on-one 

(2 Questions)

  • Q1. Your resume project
  • Q2. Your background
  • Ans. 

    I have a Bachelor's degree in Computer Science and 5 years of experience in software development.

    • Bachelor's degree in Computer Science

    • 5 years of experience in software development

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study resume thoroughly

Interview questions from similar companies

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

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

Round 1 - Coding Test 

Consists of 5 questions of DSA
1 Knapsack, 1 bitwise, 1 string , 1 basic mathematics, 1 dynamic programming

Round 2 - Technical 

(1 Question)

  • Q1. Based on Coding question and dbms and question based on resume.
Round 3 - Technical 

(1 Question)

  • Q1. Recursive approach for printing prime number It was taken by CTO of company

Interview Preparation Tips

Topics to prepare for Zolo Software Developer interview:
  • Data Structures
  • DBMS
  • OS
Interview preparation tips for other job seekers - Overall interview is easy and supportive you will get a lot of time to think your approach and explain your approach
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
-
Result
Not Selected

I applied via Walk-in and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Was bit tough and need to concentrate on work time

Round 2 - Coding Test 

Was about coding in any language such as Java python

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed in Sep 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 - HR 

(1 Question)

  • Q1. Basic info about the tech stack I've worked on and my previous jobs.
Round 3 - Technical 

(1 Question)

  • Q1. React Native problem related to Flatlists and Array
Round 4 - One-on-one 

(1 Question)

  • Q1. Interviewer never joined the call. The interview kept postponing to another date.

Interview Preparation Tips

Topics to prepare for Stanza Living Software Developer interview:
  • React Native
  • Typescript
  • Arrays
  • Queue
  • Fetch
Interview preparation tips for other job seekers - After I cleared the technical round, the final interview of 30 mins was scheduled but the HR kept postponing it. After a week, the HR ghosted and stopped responding to my mails and calls. This was a very unprofessional process. 👎
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. 1. Rotten Oranges 2. Next Greater Element
  • Ans. 

    The first question is about identifying rotten oranges in a grid, while the second question is about finding the next greater element in an array.

    • Rotten Oranges: Use BFS to traverse the grid and identify rotten oranges by checking adjacent cells.

    • Next Greater Element: Use a stack to keep track of elements and find the next greater element for each element in the array.

    • Example for Rotten Oranges: [['2', '1', '1'], ['1', ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Basic aptitude with tracing program

Round 2 - Coding Test 

3 problem with easy to hard

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

Leecode medium level question

Round 2 - Coding Test 

Leetcode Hard level Question

Round 3 - Technical 

(1 Question)

  • Q1. This is cto round asked some interview questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Computer Fundamentals

Round 2 - Technical 

(1 Question)

  • Q1. Flatten a binary tree
  • Ans. 

    Flatten a binary tree by converting it into a linked list in-place.

    • Use a recursive approach to flatten the binary tree.

    • Traverse the tree in a pre-order manner and keep track of the previous node.

    • Set the left child of each node to null and the right child to the next node in the linked list.

    • Example: Input: 1 -> 2 -> 5 -> 3 -> 4 -> null, Output: 1 -> null -> 2 -> null -> 3 -> null -> 4 -> null -> 5 -> null

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

25 basic aptitude asked from train,time and work

Round 2 - Coding Test 

2 coding questions which was basic and medium questions

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

I applied via Internshala and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Easy to medium, can solve with leetcode medium

Round 2 - One-on-one 

(2 Questions)

  • Q1. Number of islands count
  • Ans. 

    Count the number of islands in a grid of '1's and '0's

    • Iterate through the grid and for each '1' encountered, perform a depth-first search to mark all connected '1's as visited

    • Increment the island count for each new island found

    • Ensure to handle boundary cases and check for visited nodes

  • Answered by AI
  • Q2. First and last index of a particular element in an array
  • Ans. 

    Find the first and last index of a specific element in an array of strings.

    • Iterate through the array and keep track of the index of the first and last occurrence of the element.

    • Return the first and last index once the iteration is complete.

    • Example: Array ['apple', 'banana', 'apple', 'orange'], element 'apple' - First index: 0, Last index: 2.

  • Answered by AI

Skills evaluated in this interview

University Living Accommodation Interview FAQs

How many rounds are there in University Living Accommodation Software Developer interview?
University Living Accommodation interview process usually has 3 rounds. The most common rounds in the University Living Accommodation interview process are Resume Shortlist, Assignment and One-on-one Round.
How to prepare for University Living Accommodation Software Developer 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 University Living Accommodation. The most common topics and skills that interviewers at University Living Accommodation expect are AWS, Agile, Express, Mern Stack and MongoDB.

Tell us how to improve this page.

University Living Accommodation Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Senior Associate
26 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

SME
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Inside Sales Associate
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare University Living Accommodation with

OYO Life

3.6
Compare

Zolo

3.4
Compare

Nestaway

3.9
Compare

Stanza Living

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