i
University Living Accommodation
Filter interviews by
I applied via Campus Placement and was interviewed in Mar 2024. There were 3 interview rounds.
I can contribute to the organization by bringing fresh ideas, strong work ethic, and a willingness to learn and grow.
I have a strong background in [relevant skill or experience]
I am a quick learner and adaptable to new situations
I am highly motivated and eager to contribute to the team
I have a track record of [relevant achievement or success]
I have a Bachelor's degree in Computer Science and a Master's degree in Business Administration.
Bachelor's degree in Computer Science
Master's degree in Business Administration
I am a dedicated and hardworking individual with relevant skills and experience that make me a valuable asset to your team.
I have a strong work ethic and am committed to delivering high-quality results
I have relevant experience and skills that align with the requirements of the position
I am a quick learner and adaptable to new challenges
I am a team player and can collaborate effectively with colleagues
I am passionate a...
My family members are all working in various professions.
My father is a doctor at a local hospital.
My mother is a teacher at a nearby school.
My sister is studying to become a lawyer.
My brother is working as a software engineer.
The tourism industry can contribute to our industry by bringing in new customers, promoting cultural exchange, and boosting the local economy.
Bringing in new customers through tourism promotions and partnerships
Promoting cultural exchange by showcasing local traditions and customs to tourists
Boosting the local economy through increased spending on accommodations, dining, and attractions
I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.
Graduated with a degree in Computer Science
Passionate about coding and problem-solving
Completed internships in software development
Participated in coding competitions
I applied via Approached by Company and was interviewed before May 2022. There were 3 interview rounds.
I applied via Indeed and was interviewed before Jun 2019. There were 4 interview rounds.
I have 3 years of experience working as a Data Analyst in the finance industry.
Analyzed financial data to identify trends and make recommendations
Created reports and dashboards using tools like Tableau and Excel
Collaborated with cross-functional teams to improve data quality and accuracy
I appeared for an interview in Oct 2016.
I'm sorry, I don't have access to the internet to research the company and product.
Droom is an online marketplace for buying and selling new and used vehicles.
Founded in 2014 by Sandeep Aggarwal
Offers a wide range of vehicles including cars, bikes, and scooters
Provides services such as vehicle history reports and inspections
Has over 6,500 certified dealers and over 50,000 listings
Operates in India and Singapore
I applied via Recruitment Consultant and was interviewed in Aug 2019. There were 5 interview rounds.
posted on 15 Sep 2021
I appeared for an interview in Dec 2020.
Round duration - 90 minutes
Round difficulty - Medium
Total of 8 questions:
4 MCQ(oops and expected output type questions) + other 2 were coding questions, out of which one is some class implementation question.
Given an array ARR
and an integer K
, your task is to count all subarrays whose sum is divisible by the given integer K
.
The first line of input contains an...
Count subarrays with sum divisible by K in an array.
Iterate through the array and keep track of the running sum modulo K.
Use a hashmap to store the frequency of remainders.
For each prefix sum, check how many previous prefix sums have the same remainder.
Return the total count of subarrays with sum divisible by K.
Round duration - 60 minutes
Round difficulty - Easy
This round was with the USA team, the panel consisted of 2 members. It took place at around 9 PM IST. The interviewer's focus was on approach.
You are given an unsorted array ARR
. Your task is to sort it so that it forms a wave-like array.
The first line contains an integer 'T', the number of test cases.
For ea...
Sort an array in a wave-like pattern where each element is greater than or equal to its adjacent elements.
Iterate through the array and swap elements at even indices with their adjacent odd indices to form a wave pattern.
There can be multiple valid wave arrays, so any valid wave array is acceptable.
Ensure the first element is greater than or equal to the second element to start the wave pattern.
Given an integer number num
, your task is to convert 'num' into its corresponding word representation.
The first line of input contains an integer ‘T’ denoting the number o...
Convert a given integer number into its corresponding word representation.
Implement a function that takes an integer as input and returns the word representation of that number.
Break down the number into its individual digits and convert each digit into its word form.
Handle special cases like numbers between 10 and 19, and multiples of 10.
Combine the word forms of individual digits to form the final word representation
Round duration - 40 minutes
Round difficulty - Easy
It was a managerial round. The position of the person taking the interview was of a technical architect. As was informed by the recruiter, previously he was a technical architect at Amazon.
Facebook stores comments in its database using a combination of relational and non-relational databases.
Comments are typically stored in a relational database like MySQL for structured data storage.
For scalability and performance, Facebook may also use a NoSQL database like Cassandra or HBase for storing comments in a denormalized format.
Metadata related to comments such as likes, timestamps, and user information may b...
Tip 1 : Practice the most frequent and most common questions DSA questions asked in companies like Amazon, Microsoft.
Tip 2 : Focus on solving the questions on your own as much as you can.
Tip 3 : Don't waste your time on the number of questions while compromising quality.
Tip 4 : Do mock interviews with your friend if it's been a long since you have given the interview.
Tip 5 : For virtual interviews, always have a backup of data(you may use mobile data if Wi-Fi goes out). While during an interview try to maintain eye contact every now and then.
Tip 6 : Keep your resume short to 1 page and have far/good knowledge of the tech stack you have mentioned
Tip 1 : Keep it short to 1 page
Tip 2 : Prepare it well.
Tip 3 : Focus more on the problem and the solution. Rather than tools used to solve the problem
Some database questions,some java questions .
JavaScript is a programming language used for web development, while jQuery is a library built with JavaScript to simplify HTML document traversal and manipulation.
JavaScript is a programming language, while jQuery is a library written in JavaScript.
JavaScript can be used for a wide range of tasks, while jQuery is mainly used for DOM manipulation and event handling.
JavaScript is a core technology for web development, w...
Different types of joins are used in SQL to combine rows from two or more tables based on a related column between them.
Inner Join: Returns rows when there is at least one match in both tables.
Left Join (or Left Outer Join): Returns all rows from the left table and the matched rows from the right table.
Right Join (or Right Outer Join): Returns all rows from the right table and the matched rows from the left table.
Full ...
Multithreading allows multiple threads to run concurrently, while exception handling deals with errors in a program.
Multithreading involves running multiple threads simultaneously to improve performance and responsiveness.
Threads share the same memory space but have their own program counter and registers.
Exception handling is a mechanism to handle errors or exceptional situations in a program.
It helps prevent the prog...
posted on 23 Mar 2024
Data Structures and Algorithms questions were asked
posted on 31 May 2022
I appeared for an interview in Apr 2022.
Round duration - 75 minutes
Round difficulty - Medium
Test Comprises of 3 coding questions and some MCQs
Round duration - 60 minutes
Round difficulty - Medium
2 coding questions of (1 easy and 1 medium level) on hackerrank code-pair with the Interviewer
Round duration - 60 minutes
Round difficulty - Easy
This Round was based on CS fundamentals and One coding question was there as a Code-pair.
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...
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 whose NGE is yet to be found.
Pop elements from the stack until a greater element is found or the stack is empty.
Assign the NGE as the top element of the stack or -1 if the stack is empty.
Tip 1 : Require coding skills to pass the interview.
Tip 2 : Brush up on Java Skills
Tip 3 : Brush up on OOPS
Tip 1 : Keep it to one page
Tip 2 : Mention relevant skills as per the job
Some of the top questions asked at the University Living Accommodation interview for freshers -
based on 2 interviews
Interview experience
based on 99 reviews
Rating in categories
0-4 Yrs
Not Disclosed
0-3 Yrs
Not Disclosed
5-7 Yrs
Not Disclosed
Senior Associate
27
salaries
| ₹4 L/yr - ₹7.5 L/yr |
Associate
15
salaries
| ₹3 L/yr - ₹6.5 L/yr |
SME
14
salaries
| ₹5.2 L/yr - ₹9 L/yr |
Inside Sales Associate
11
salaries
| ₹3.3 L/yr - ₹9 L/yr |
Team Lead
11
salaries
| ₹5 L/yr - ₹8 L/yr |
MagicPin
HealthKart
Awign Enterprises
Nestaway