Upload Button Icon Add office photos

Filter interviews by

Haspaces It And Hospitality Interview Questions, Process, and Tips

Updated 18 Feb 2025

Top Haspaces It And Hospitality Interview Questions and Answers

Haspaces It And Hospitality Interview Experiences

Popular Designations

3 interviews found

Manager Interview Questions & Answers

user image Anonymous

posted on 17 Feb 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What can you tell me about the core domain and routine tasks?
  • Q2. About the roles and responsibilities, and how can I contribute.

Manager Interview Questions asked at other Companies

Q1. There is a chairman of a conglomerate. He has been on the post for 10 years, and is extremely dominating. He treats the various business heads like children, not letting them take any major decision. While the chairman has negatives, he bel... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Feb 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain the difference between state and props in a React Component.
  • Q2. How can you optimize the performance of a React application?

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (39)

HR Executive Interview Questions & Answers

user image Anonymous

posted on 18 Feb 2025

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

I was interviewed before Feb 2024.

Round 1 - HR 

(2 Questions)

  • Q1. What are the key statutory compliances relevant to your field?
  • Q2. What are the components of payroll, and how are they calculated?

HR Executive Interview Questions asked at other Companies

Q1. What do you know about Labor Law
View answer (6)

Jobs at Haspaces It And Hospitality

View all

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(4 Questions)

  • Q1. Tell me your self introduction
  • Q2. What is DNS
  • Q3. What is letest version of windows
  • Q4. How to be configured office 365

Interview Preparation Tips

Interview preparation tips for other job seekers - Get your resume right when applying for a
job
A few things are very important while giving an interview
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. How do you go about SDLC process
  • Ans. 

    I follow the Software Development Life Cycle (SDLC) process to ensure successful project delivery.

    • I start with requirements gathering and analysis to understand the project scope and objectives.

    • I then move on to design, where I create a detailed plan for how the system will be built.

    • Next, I proceed to development, where the actual coding and implementation of the system takes place.

    • After development, I conduct thorough...

  • Answered by AI
  • Q2. What are roles and responsibilities of a BA
  • Q3. How do you deduce a complex problem statement
  • Ans. 

    By breaking down the problem into smaller components and analyzing each part individually

    • Identify the key components of the problem statement

    • Break down the problem into smaller, more manageable parts

    • Analyze each part individually to understand its impact on the overall problem

    • Consider different perspectives and potential solutions

    • Collaborate with team members or stakeholders to gain additional insights

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. Explain the difference between BRD and FRD
  • Ans. 

    BRD is a document that outlines business requirements, while FRD is a document that details functional requirements.

    • BRD focuses on what the business needs, while FRD focuses on how those needs will be met.

    • BRD is high-level and non-technical, while FRD is detailed and technical.

    • BRD is created before FRD in the project lifecycle.

    • Example: BRD may state the need for a customer relationship management system, while FRD will...

  • Answered by AI
  • Q2. How do you go about creating user stories, how do you allocate the points
  • Ans. 

    User stories are created by collaborating with stakeholders and allocating points based on complexity and effort required.

    • Collaborate with stakeholders to gather requirements and understand user needs

    • Break down features into smaller, manageable user stories

    • Prioritize user stories based on business value and dependencies

    • Allocate points based on complexity, effort, and risk involved

    • Use techniques like Planning Poker to a

  • Answered by AI
  • Q3. What is the SOP while creating a requirement gathering doc
  • Ans. 

    The SOP for creating a requirement gathering doc involves planning, interviewing stakeholders, documenting requirements, and obtaining approval.

    • Plan the requirement gathering process by identifying stakeholders and their needs

    • Conduct interviews with stakeholders to gather detailed requirements

    • Document the requirements in a clear and organized manner

    • Obtain approval from stakeholders to ensure alignment with business goa

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

(3 Questions)

  • Q1. How proficient are you with using tools such as Jira, Cofluence, SQL
  • Ans. 

    I am highly proficient in using Jira, Confluence, and SQL for various business analysis tasks.

    • I have extensive experience using Jira for project management, issue tracking, and agile development.

    • I am skilled in using Confluence for documentation, collaboration, and knowledge sharing within teams.

    • I have strong SQL skills for data analysis, querying databases, and generating reports.

    • I have used these tools in previous pr...

  • Answered by AI
  • Q2. How do you handle disagreements within internal stakeholders
  • Q3. What values do you look in a collegue
  • Ans. 

    I look for values such as integrity, teamwork, communication, and adaptability in a colleague.

    • Integrity - honesty, trustworthiness, and ethical behavior

    • Teamwork - collaboration, support, and willingness to help others

    • Communication - clear and effective communication skills

    • Adaptability - ability to adjust to changing circumstances and problem-solve

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Quantiphi Analytics Solutions Private Limited Senior Business Analyst interview:
  • Insurance
  • Requirement Analysis
  • Stakeholder Management
Interview preparation tips for other job seekers - Regular Business Analyst questions as found on the web, be yourself, answer what you know and tell you don't if you can't answer.

Skills evaluated in this interview

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. Coalesce, SQL Order of Execution
  • Q2. Given a table with fields(id, name, salary, managerId) find out the managers who have atleast 5 reportees under him/her.
  • Ans. 

    Use SQL query to count number of reportees for each manager and filter out those with atleast 5 reportees.

    • Write a SQL query to count number of reportees for each manager using GROUP BY clause

    • Add HAVING clause to filter out managers with atleast 5 reportees

    • Example: SELECT managerId, COUNT(id) AS num_reportees FROM table_name GROUP BY managerId HAVING num_reportees >= 5

  • Answered by AI
  • Q3. How to manage large datasets in python
  • Ans. 

    Use libraries like pandas and dask to efficiently manage large datasets in Python.

    • Use pandas library for data manipulation and analysis.

    • Use dask library for parallel computing and out-of-core processing.

    • Optimize memory usage by loading data in chunks or using data types efficiently.

    • Consider using cloud services like AWS S3 or Google BigQuery for storing and processing large datasets.

  • Answered by AI
  • Q4. Name few of the commonly used python libraries used by DA
  • Ans. 

    Some commonly used Python libraries for Data Analysts are Pandas, NumPy, Matplotlib, and Scikit-learn.

    • Pandas - used for data manipulation and analysis

    • NumPy - used for numerical computing and working with arrays

    • Matplotlib - used for data visualization

    • Scikit-learn - used for machine learning and data mining

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Nineleaps Technology Solutions Data Analyst interview:
  • SQL
  • Python
Interview preparation tips for other job seekers - Focus on basics of SQL, Python and practice tricky SQL interview questions.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Scenario based leadership questions
  • Q2. Revenue, margin, leadership skills
  • Q3. Conflict management, stakeholder management
Round 2 - One-on-one 

(3 Questions)

  • Q1. Portfolio management
  • Q2. CI CD pipeline based questions, some other technical questions
  • Q3. Stakeholder management, project metrics, leadership, team upskilling, resource management, risk management
Round 3 - One-on-one 

(2 Questions)

  • Q1. Solution architecture questions scenario based
  • Q2. DR activity scenario based questions
Round 4 - HR 

(2 Questions)

  • Q1. Cultural fit related
  • Q2. Leadership and team handling related questions

Architect Interview Questions & Answers

Mavenir Systems user image Sashi Bhusan Prasad

posted on 12 Feb 2025

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

(2 Questions)

  • Q1. Questions about kubernetes and 5gc
  • Q2. Containers and implementation of pods for 5gc
Round 2 - HR 

(1 Question)

  • Q1. Previous company and package negotiation
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    Experienced Senior Product Manager with a background in tech industry and a passion for driving product innovation.

    • Over 8 years of experience in product management roles

    • Strong background in the tech industry, with a focus on software development

    • Proven track record of successfully launching and managing products from concept to market

    • Passionate about driving product innovation and improving user experiences

    • Skilled in cr...

  • Answered by AI
  • Q2. Aptitude Question
Round 2 - One-on-one 

(2 Questions)

  • Q1. Experience Questions
  • Q2. Hobbies and Passion
Round 3 - One-on-one 

(2 Questions)

  • Q1. Assignment Round with Review at the end
  • Q2. Pitch GoComet to the founder
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

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

Round 1 - Coding Test 

1 python question and 1 sql question for coding and rest were the mcqs based on sql and python.

Round 2 - Technical 

(2 Questions)

  • Q1. Python code was asked for checking the anagrams
  • Q2. Sql code asked to solve on screen share using various use cases like group by, having, count
Round 3 - Technical 

(2 Questions)

  • Q1. Python code was asked for swaping any number but without using python libraries
  • Q2. Sql code was asked using concepts of rank dense,rank, partition by

Haspaces It And Hospitality Interview FAQs

How many rounds are there in Haspaces It And Hospitality interview?
Haspaces It And Hospitality interview process usually has 1 rounds. The most common rounds in the Haspaces It And Hospitality interview process are One-on-one Round, Technical and HR.
How to prepare for Haspaces It And Hospitality 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 Haspaces It And Hospitality. The most common topics and skills that interviewers at Haspaces It And Hospitality expect are Java, Hibernate, Web Services, Javascript and Python.

Tell us how to improve this page.

Haspaces It And Hospitality Interview Process

based on 3 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Brillio Interview Questions
3.4
 • 131 Interviews
CMS IT Services Interview Questions
3.1
 • 131 Interviews
iMerit Interview Questions
3.5
 • 92 Interviews
Arcesium Interview Questions
3.6
 • 79 Interviews
Mavenir Systems Interview Questions
3.5
 • 55 Interviews
DotPe Interview Questions
3.2
 • 37 Interviews
Junglee Games Interview Questions
3.1
 • 32 Interviews
Hike Interview Questions
3.7
 • 31 Interviews
View all

Haspaces It And Hospitality Reviews and Ratings

based on 8 reviews

4.5/5

Rating in categories

4.6

Skill development

4.5

Work-life balance

4.6

Salary

3.8

Job security

4.5

Company culture

4.5

Promotions

4.3

Work satisfaction

Explore 8 Reviews and Ratings
Senior Java Developer

Thiruvananthapuram

5-8 Yrs

Not Disclosed

Senior Software Engineer

Thiruvananthapuram

5-10 Yrs

Not Disclosed

Senior QA Engineer [Trivandrum / Remote Working]

Thiruvananthapuram

4-9 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
5 salaries
unlock blur

₹12 L/yr - ₹23 L/yr

Senior QA Engineer
4 salaries
unlock blur

₹7.4 L/yr - ₹13 L/yr

Software Engineer
3 salaries
unlock blur

₹5.9 L/yr - ₹12 L/yr

Finance Manager
3 salaries
unlock blur

₹8.5 L/yr - ₹13 L/yr

Lead Software Engineer
3 salaries
unlock blur

₹14.5 L/yr - ₹25 L/yr

Explore more salaries
Compare Haspaces It And Hospitality with

CMS IT Services

3.1
Compare

iMerit

3.5
Compare

Brillio

3.4
Compare

Quantiphi Analytics Solutions Private Limited

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