Upload Button Icon Add office photos

Filter interviews by

Spacewell Interview Questions and Answers

Updated 15 Jun 2024

Spacewell Interview Experiences

Popular Designations

3 interviews found

SOC Analyst Interview Questions & Answers

user image Anonymous

posted on 1 Apr 2024

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

I applied via Referral and was interviewed in Oct 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Basic math and reasoning

Round 2 - One-on-one 

(1 Question)

  • Q1. About resume and coding questions
Round 3 - Technical 

(1 Question)

  • Q1. Coding questions and theory questions on cyber security
Round 4 - HR 

(1 Question)

  • Q1. Work schedule and free to work in shifts

SOC Analyst Interview Questions asked at other Companies

Q1. 3.How could you educate the users regarding with cybersecurity attacks?
View answer (2)

Product Owner Interview Questions & Answers

user image Anonymous

posted on 19 Sep 2023

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

I applied via Naukri.com and was interviewed in Mar 2023. There were 5 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 - Case Study 

A four part case study was given and I was asked to complete it in 4 days. The case study included writing user stories (including mockups) and suggestions for further enhancements for a business requirement.

Round 3 - One-on-one 

(1 Question)

  • Q1. The interview was completely based on the completed case study I submitted.
Round 4 - One-on-one 

(2 Questions)

  • Q1. This round was done by the reporting manager and was also on the case study
  • Q2. How would you deal with difficult stakeholders?
Round 5 - HR 

(4 Questions)

  • Q1. How many people live with you in your house?
  • Q2. Are you from south india?
  • Q3. What is your expected CTC?
  • Ans. 

    My expected CTC is based on industry standards, my experience, and the responsibilities of the role.

    • Research industry standards for Product Owner roles in the current market

    • Consider my years of experience in a similar role or industry

    • Factor in the specific responsibilities and requirements of the Product Owner position

    • Negotiate based on the company's budget and benefits package

    • Provide a range rather than a specific num

  • Answered by AI
  • Q4. How much can you come down in your CTC expectation?

Interview Preparation Tips

Interview preparation tips for other job seekers - This is one of the worst recruitment processes that I've experienced in terms of how HR deals with things. After the interviews with the the product leadership things started going bad. HR confirmed that I had been selected and asked me to come to the office for the HR round. The HR person said I should be careful as the HR manager I would be talking to is very tough. Honestly, she's not tough but borderline rude. In the HR round I was asked all sorts of irrelevant questions like how many people live in my household and where I'm from. They have only 4 sick leaves per year and you can avail them only if you're sick to the point of being hospitalized. If your condition is not that severe then you just use your annual leave. Also, the paternity leave is 3 days. All in all, the interview done by the product leadership was very professional but the HR round was complete trash and a waste of time.

Product Owner Interview Questions asked at other Companies

Q1. What are the prioritization techniques you use to arrange backlog items?
View answer (3)

Azure Data Engineer Interview Questions & Answers

user image sunil kanupuru

posted on 15 Jun 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Insertion sort based program test

Round 2 - Multiple choice test around ADF 

(2 Questions)

  • Q1. What kind of jobs are present in Jenkins
  • Q2. Where did you use Docker
  • Ans. 

    I used Docker to containerize and deploy data processing pipelines and applications.

    • Used Docker to create reproducible environments for data processing tasks

    • Deployed data pipelines in Docker containers for scalability and portability

    • Utilized Docker Compose to orchestrate multiple containers for complex data workflows

  • Answered by AI

Skills evaluated in this interview

Azure Data Engineer Interview Questions asked at other Companies

Q1. 7. How can we load multiple(50)tables at a time using adf?
View answer (4)

Jobs at Spacewell

View all

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Description of project
  • Ans. 

    The project involved designing and implementing a new network infrastructure for a large corporation.

    • Conducted a thorough analysis of the existing network infrastructure

    • Designed a new network architecture that met the company's needs

    • Implemented the new network infrastructure with minimal disruption to business operations

    • Tested and optimized the new network to ensure optimal performance

    • Provided ongoing support and maint

  • Answered by AI
  • Q2. Your previous experince

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepare for your resume

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

Interview Questionnaire 

1 Question

  • Q1. Its for FP&A process and the major questions were from the basics of FP&A. How it starts and how its ends and Previous job roles.

Interview Preparation Tips

Interview preparation tips for other job seekers - It's quite a moderate interview but be prepare for more rounds of technical interviews.

I applied via Naukri.com and was interviewed in Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. The questions were on front end web development questions with managerial interview

Interview Preparation Tips

Interview preparation tips for other job seekers - The overall experience was good. The interview was on technical and managerial skills based on the experience gained.

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Simple program
  • Q2. I wrote a simple program in C

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident

I applied via Referral and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. My expected tenure, education, technical insights

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

I applied via Naukri.com and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Toefl score
  • Q2. Ielts score

Interview Preparation Tips

Interview preparation tips for other job seekers - easy to crack. good work atmosphere.

I appeared for an interview before Jun 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 180 minutes
Round difficulty - Easy

It was an mcq + coding round. There were aptitude and ouput based question in mcq. And coding questions were easy

  • Q1. 

    Find the Duplicate Number Problem Statement

    Given an integer array 'ARR' of size 'N' containing numbers from 0 to (N - 2). Each number appears at least once, and there is one number that appears twice. Yo...

  • Ans. 

    Find the duplicate number in an array of integers from 0 to (N-2).

    • Iterate through the array and keep track of the frequency of each number using a hashmap.

    • Return the number with a frequency greater than 1 as the duplicate number.

    • Time complexity can be optimized to O(N) using Floyd's Tortoise and Hare algorithm.

  • Answered by AI
  • Q2. 

    Reverse String Operations Problem Statement

    You are provided with a string S and an array of integers A of size M. Your task is to perform M operations on the string as specified by the indices in array A...

  • Ans. 

    Given a string and an array of indices, reverse substrings based on the indices to obtain the final string.

    • Iterate through the array of indices and reverse the substrings accordingly

    • Ensure the range specified by each index is non-empty

    • Return the final string after all operations are completed

  • Answered by AI
Round 2 - Video Call 

Round duration - 60 Minutes
Round difficulty - Easy

It was technical + hr round. there were 2 people as interviewer. They stated from intro and asked some basic puzzles and hr questions. After that they asked about my projects, technologies and some ds algo and dbms questions.

Interview Preparation Tips

Eligibility criterianaAccenture interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice aptitude
Tip 2 : Focus on practicing coding
Tip 3 : Learn from mistakes

Application resume tips for other job seekers

Tip 1 : Mention some projects that you have done
Tip 2 : Try to have skills that are required for the role

Final outcome of the interviewSelected

Skills evaluated in this interview

Spacewell Interview FAQs

How many rounds are there in Spacewell interview?
Spacewell interview process usually has 3-4 rounds. The most common rounds in the Spacewell interview process are One-on-one Round, HR and Technical.
How to prepare for Spacewell 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 Spacewell. The most common topics and skills that interviewers at Spacewell expect are Labour Laws, Java, Spring Boot, Terraform and API Testing.
What are the top questions asked in Spacewell interview?

Some of the top questions asked at the Spacewell interview -

  1. What is your expected C...read more
  2. Where did you use Doc...read more
  3. The interview was completely based on the completed case study I submitt...read more

Tell us how to improve this page.

Spacewell Interview Process

based on 3 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
JLL Interview Questions
4.1
 • 356 Interviews
CBRE Interview Questions
4.2
 • 265 Interviews
Knight Frank Interview Questions
4.0
 • 44 Interviews
Savills Interview Questions
4.0
 • 12 Interviews
View all

Spacewell Reviews and Ratings

based on 11 reviews

4.2/5

Rating in categories

4.1

Skill development

4.5

Work-life balance

4.2

Salary

3.3

Job security

4.2

Company culture

4.0

Promotions

4.3

Work satisfaction

Explore 11 Reviews and Ratings
Talent Acquisition Specialist

Hyderabad / Secunderabad

7-12 Yrs

Not Disclosed

Qa Analyst

Hyderabad / Secunderabad

5-10 Yrs

Not Disclosed

Frontend Architect - React

Hyderabad / Secunderabad

10-17 Yrs

Not Disclosed

Explore more jobs
Senior Product Support Engineer
7 salaries
unlock blur

₹9 L/yr - ₹12.5 L/yr

Senior Consultant
6 salaries
unlock blur

₹13.5 L/yr - ₹20.5 L/yr

Technical Analyst
5 salaries
unlock blur

₹13 L/yr - ₹22 L/yr

Associate Technical Analyst
5 salaries
unlock blur

₹12.5 L/yr - ₹14.1 L/yr

Technical Analyst 2
4 salaries
unlock blur

₹24.5 L/yr - ₹27 L/yr

Explore more salaries
Compare Spacewell with

JLL

4.1
Compare

CBRE

4.2
Compare

Cushman & Wakefield

4.2
Compare

Knight Frank

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