Upload Button Icon Add office photos

Filter interviews by

Openspace Services Interview Questions and Answers

Updated 26 Apr 2024

Openspace Services Interview Experiences

1 interview found

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

I applied via Walk-in and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Aptitude test (MCQ) with Javascript questions too.

Round 2 - Coding Test 

Programming with Logical questions, Sql queries and Js, html.

Round 3 - Technical 

(1 Question)

  • Q1. Solve programming problem
Round 4 - HR 

(1 Question)

  • Q1. Discussion with Manager

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Jobs at Openspace Services

View all

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. How would you utilize AWS or Azure services to create scalable web applications
  • Ans. 

    Utilize AWS or Azure services for scalable web applications

    • Use AWS Elastic Beanstalk or Azure App Service for easy deployment and scaling

    • Leverage AWS Lambda or Azure Functions for serverless computing

    • Utilize AWS Auto Scaling or Azure Autoscale to automatically adjust resources based on traffic

    • Store data in AWS RDS or Azure SQL Database for scalable database solutions

    • Use AWS CloudFront or Azure CDN for content delivery

  • Answered by AI
  • Q2. How would you tackle memory leaks if the system your working on was experiencing this issue?
  • Ans. 

    I would use memory profiling tools to identify the source of the leaks and then fix them by properly managing memory allocation and deallocation.

    • Use memory profiling tools like Valgrind or Instruments to identify the source of the leaks

    • Review the code to ensure proper memory allocation and deallocation practices are being followed

    • Implement smart pointers or garbage collection to automatically manage memory

    • Use static co...

  • Answered by AI
  • Q3. Have you worked on legacy systems?
  • Ans. 

    Yes, I have experience working on legacy systems.

    • I have successfully maintained and upgraded legacy systems to meet current business needs.

    • I have refactored legacy code to improve performance and scalability.

    • I have integrated new technologies with legacy systems to enhance functionality.

    • I have experience troubleshooting and debugging issues in legacy systems.

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Are you capable to work with cross functional teams and handle disputes effectively
  • Ans. 

    Yes, I have experience working with cross functional teams and resolving disputes effectively.

    • I have successfully collaborated with team members from different departments to achieve project goals.

    • I am skilled at mediating conflicts and finding mutually beneficial solutions.

    • I prioritize open communication and actively listen to all team members' perspectives.

    • I have experience using conflict resolution techniques such a

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and on to point without deviations, they respect straight forwardness
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant

Round 1 - One-on-one 

(4 Questions)

  • Q1. Talk about your work experience. Detailed questions about projects that I worked on.
  • Q2. Why are you interested in switching.
  • Ans. 

    Seeking new challenges and growth opportunities in a dynamic field.

    • Interested in leveraging my skills and experience in a new environment

    • Excited about the potential to work on innovative products

    • Looking for opportunities to expand my knowledge and expertise

  • Answered by AI
  • Q3. Do you use any food delivery apps frequently? What would you improve in Swiggy?
  • Ans. 

    Yes, I frequently use food delivery apps like Swiggy.

    • I use Swiggy at least a few times a week for ordering food.

    • I appreciate the wide variety of restaurants and cuisines available on Swiggy.

    • Improvement suggestion: Enhance the user interface for a smoother ordering experience.

    • Improvement suggestion: Implement a more accurate delivery time estimation system.

    • Improvement suggestion: Offer more personalized recommendations

  • Answered by AI
  • Q4. What is northstar metric, what would be northstar metric for Swiggy
  • Ans. 

    Northstar metric is the key metric that drives the core value of a product. For Swiggy, the northstar metric could be Daily Active Users (DAU) or Orders per User.

    • Northstar metric is the single metric that best captures the core value that your product delivers to customers.

    • For Swiggy, the northstar metric could be Daily Active Users (DAU) as it represents the number of unique users who engage with the platform on a dai...

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain what you worked on, how did you grow the adoption of the feature.
  • Ans. 

    I worked on improving the adoption of a new feature by conducting user research, implementing user feedback, and creating targeted marketing campaigns.

    • Conducted user research to understand user needs and preferences

    • Implemented user feedback to make necessary improvements to the feature

    • Created targeted marketing campaigns to promote the feature to the right audience

  • Answered by AI
  • Q2. Design product to manage risks during an event. Sub-question- How would this change if the target market is tier 3 cities in India

Interview Preparation Tips

Topics to prepare for Keka HR Payroll Software Product Manager interview:
  • Product growth
  • Hr tech
Interview experience
1
Bad
Difficulty level
-
Process Duration
4-6 weeks
Result
-

I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Virtual Interview 

(1 Question)

  • Q1. No qualifications were discussed, more personal details were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - I had interview call with CEO Sameer. Firstly, he will drag it for long time unnecessarily
Second, don't fall for unrealistic offer he states

He asks inappropriate questions like:
1. Where do you want to go with me if we have to travel
2. What do you prefer if I have to buy you something
3. Do you go to parties, drink alcohol, what kind of dresses you wear, do you have friends, do you have a boyfriend
4. He literally stated clearly that he expects more of relationship, physical intimacy kindoff as part of job and he thinks it is fun

WTH was that. This organisation should be closed down for doing such fraudulent activities.

They have:
Fake reviews
Fake linkedin associated people
Inflated social numbers

And none of their leadership team's profiles are authentic on LinkedIn

They already have a strong base, it is fraudulent though which they can convert it into healthy structure where they can deliver real services, real jobs and do real job and generate some revenue

Anyways, this guy sameer definitely needs heavy brain detoxification to cleanse his thoughts and get to some positive terms

Jobseekers- STAY AWAY FROM THIS COMPANY. DO NOT WASTE YOUR TIME
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between a list and a tuple in python?
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • List is mutable, meaning its elements can be changed after creation.

    • Tuple is immutable, meaning its elements cannot be changed after creation.

    • List is defined using square brackets [], tuple using parentheses ().

    • Example: list_example = [1, 2, 3], tuple_example = (4, 5, 6)

  • Answered by AI
  • Q2. List : Mutable (can be modified) defined using []. Ex - my_list = [1, 2, 3] Tuple : Immutable (cannot be modified) defined using(). Ex - my_tuple = (1, 2, 3).
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Aptitude Test 

Mintu Babu lives in a smaller house than her brother and in a larger house than her parents. Her children reside with her, and she has no other relatives. If Mintu Babu's relative U lives in a larger house than her relative S, then all the following may be true except: \n\n1) S is U's father \n\n2) S is U's mother \n\n3) U is younger than S \n\n4) S is younger than U

Round 2 - Technical 

(2 Questions)

  • Q1. 1. merge two linked list
  • Ans. 

    Merge two sorted linked lists without creating new nodes by rearranging existing nodes.

    • Traverse both linked lists simultaneously

    • Compare the values of nodes and rearrange pointers accordingly

    • Continue until one of the lists is fully traversed

  • Answered by AI
  • Q2. 2. reverse a linked list.
  • Ans. 

    Reverse a linked list by changing the direction of pointers.

    • Start with three pointers: current, previous, and next.

    • Iterate through the linked list, updating pointers to reverse the direction.

    • Update the head of the linked list to be the previous node once iteration is complete.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. What is react why it's used?
Round 2 - Technical 

(1 Question)

  • Q1. What is virtual DOM in react?
Round 3 - Assignment 

Filter and shot the filter block based on title using redux?

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Can you please introduce yourself?
  • Ans. 

    I am a Software Development Engineer with 5 years of experience in developing web applications using Java, Spring, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring, and Angular

    • Strong problem-solving skills

    • Experience in developing web applications

    • Good team player

  • Answered by AI
  • Q2. What type of questions are being asked?

Interview Preparation Tips

Interview preparation tips for other job seekers - I am Anjali Singh from Prayagraj in Uttar Pradesh, and I have completed a Postgraduate Diploma in Computer Applications.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Manjara Charitable Trust's Rajiv Gandhi Institute of Technology, Mumbai and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Test was of 1.5 hrs and it was online. It was completely based on technical questions.

Round 2 - Coding Test 

This test was offline and it was a pen paper test wherein 10 questions will be given you have to write code or spot the error and correct them.

Round 3 - Technical 

(2 Questions)

  • Q1. Asked questions about React
  • Q2. Question based on project

Interview Preparation Tips

Interview preparation tips for other job seekers - For interview focus more on Resume. Prepare about project, skills, tech stack mentioned in resume. For coding prepare basic data structures and SQL
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How do agile methodologies function in B2B projects?
  • Q2. What is your experience with barcode scanners?

Openspace Services Interview FAQs

How many rounds are there in Openspace Services interview?
Openspace Services interview process usually has 4 rounds. The most common rounds in the Openspace Services interview process are Aptitude Test, Coding Test and Technical.
How to prepare for Openspace Services 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 Openspace Services. The most common topics and skills that interviewers at Openspace Services expect are Computer Science, Javascript, MySQL, Digital Marketing and jQuery.

Tell us how to improve this page.

People are getting interviews through

based on 1 Openspace Services interview
WalkIn
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Quess Interview Questions
3.9
 • 382 Interviews
Randstad Interview Questions
3.8
 • 258 Interviews
CBRE Interview Questions
4.2
 • 251 Interviews
Team Lease Interview Questions
3.9
 • 193 Interviews
Sodexo Interview Questions
4.1
 • 155 Interviews
G4S Interview Questions
4.0
 • 93 Interviews
Adecco Group Interview Questions
3.7
 • 85 Interviews
ManpowerGroup Interview Questions
3.9
 • 49 Interviews
Securitas Interview Questions
3.8
 • 30 Interviews
View all

Openspace Services Reviews and Ratings

based on 11 reviews

4.4/5

Rating in categories

4.8

Skill development

4.8

Work-Life balance

4.3

Salary & Benefits

4.8

Job Security

4.6

Company culture

4.3

Promotions/Appraisal

4.8

Work Satisfaction

Explore 11 Reviews and Ratings
US IT Recruiter

Mumbai

5-10 Yrs

Not Disclosed

Sr . Python Developer

Mumbai

5-6 Yrs

Not Disclosed

US IT Recruiter

Mumbai

2-4 Yrs

Not Disclosed

Explore more jobs
Software Engineer
16 salaries
unlock blur

₹2 L/yr - ₹8.1 L/yr

Java Developer
13 salaries
unlock blur

₹9.9 L/yr - ₹12 L/yr

Quality Analyst
12 salaries
unlock blur

₹1.8 L/yr - ₹6 L/yr

Senior Quality Analyst
7 salaries
unlock blur

₹5.2 L/yr - ₹8.6 L/yr

Senior Software Engineer
5 salaries
unlock blur

₹6.4 L/yr - ₹8.5 L/yr

Explore more salaries
Compare Openspace Services with

Quess

3.9
Compare

Team Lease

3.9
Compare

Sodexo

4.1
Compare

Adecco Group

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview