Upload Button Icon Add office photos

Filter interviews by

HHA eXchange Interview Questions and Answers

Updated 29 Nov 2024

HHA eXchange Interview Experiences

Popular Designations

12 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain OOp with example
  • Ans. 

    OOP is a programming paradigm where objects represent real-world entities and interact with each other through methods and properties.

    • OOP focuses on creating objects that encapsulate data and behavior

    • Objects communicate with each other by sending messages

    • Inheritance allows objects to inherit properties and methods from parent classes

    • Polymorphism allows objects to be treated as instances of their parent class

    • Encapsulati...

  • Answered by AI
  • Q2. Write sql query for given data
  • Ans. 

    SQL query to retrieve data from a given dataset

    • Use SELECT statement to specify the columns you want to retrieve

    • Use FROM statement to specify the table where the data is stored

    • Use WHERE statement to filter the data based on specific conditions

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How to integrate 2 database in one application
  • Ans. 

    Integrating two databases in one application involves setting up a connection between the databases and managing data synchronization.

    • Use a common data model to map data between the two databases

    • Establish a connection using database connectors or APIs

    • Implement data synchronization processes to ensure consistency

    • Consider data migration strategies if needed

  • Answered by AI
  • Q2. Project explanation and its feature
  • Ans. 

    Developed a web application for managing inventory in a retail store.

    • Implemented user authentication for secure access.

    • Designed a user-friendly interface for easy navigation.

    • Integrated barcode scanning functionality for quick inventory updates.

  • Answered by AI

Skills evaluated in this interview

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Case Study 

Bluff but join. Job hhh. Numb

Round 2 - Coding Test 

Gh high going yydc h heh

Round 3 - Coding Test 

Bmkbkuu it d jobs Hlo

Round 4 - One-on-one 

(2 Questions)

  • Q1. BjkkGikjnkk join hjjjb hugs
  • Q2. Bbjnkkkkijjh uuijbf

Interview Preparation Tips

Interview preparation tips for other job seekers - Bnk

Test Engineer Interview Questions & Answers

user image Gaurav Patil

posted on 26 Sep 2024

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

Q1>reverse a String
Q2>Duplicate String
Q3>Sorting String

Test Engineer Interview Questions asked at other Companies

Q1. 1. What is the frame work u have worked and explain the framework with folder structure? 2. purely based on testing, different testing types like functional and non functional tests 3. real time scenarios like last min bugs before release? ... read more
View answer (4)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Coding Test 

Basic mcqs on Angular, OOP, .NET MVC, .NET Core, AWS

Round 2 - Technical 

(2 Questions)

  • Q1. OOP Questions, C# Serialization, Access modifiers
  • Q2. Angular questions
Round 3 - Case Study 

Design a system having multiple transactions using Angular, dotent and PostgreSQL

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (211)

HHA eXchange interview questions for popular designations

 Associate Software Engineer

 (4)

 Software Engineer

 (2)

 Software Developer

 (2)

 Test Engineer

 (1)

 Senior Software Engineer

 (1)

 Bharatanatyam Dance Teacher

 (1)

 Senior Test Engineer

 (1)

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. SQL joins and examples
  • Ans. 

    SQL joins are used to combine rows from two or more tables based on a related column between them.

    • Types of SQL joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN returns rows when there is at least one match in both tables.

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table.

    • RIGHT JOIN returns all rows from the right table and the matched rows from the left tab...

  • Answered by AI

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(7 Questions)

  • Q1. Tell me about oops concepts?
  • Ans. 

    OOPs concepts are the fundamental principles of object-oriented programming.

    • Encapsulation - bundling of data and methods that operate on that data

    • Inheritance - ability of a class to inherit properties and characteristics from its parent class

    • Polymorphism - ability of an object to take on many forms

    • Abstraction - hiding of complex implementation details from the user

  • Answered by AI
  • Q2. Tell me about Web api routing?
  • Ans. 

    Web API routing is the process of mapping incoming HTTP requests to specific actions or methods in the API.

    • Routing is defined in the WebApiConfig.cs file in the App_Start folder.

    • Routes are defined using the HttpRouteCollection class.

    • Routes can include parameters, constraints, and defaults.

    • Attribute routing can also be used to define routes directly on controller actions.

    • Routing can be used to handle different HTTP meth

  • Answered by AI
  • Q3. Stored procedure and functions difference?
  • Ans. 

    Stored procedures are precompiled SQL statements that can be called by name, while functions return a single value.

    • Stored procedures can modify data, while functions cannot

    • Functions can be used in SQL statements, while stored procedures cannot

    • Stored procedures can have output parameters, while functions cannot

    • Functions can be called from within stored procedures, while stored procedures cannot be called from within fun

  • Answered by AI
  • Q4. What is CTE in SQL server?
  • Ans. 

    CTE stands for Common Table Expression in SQL Server.

    • CTE is a temporary named result set that can be referenced within a SELECT, INSERT, UPDATE, or DELETE statement.

    • It helps to simplify complex queries and improve performance.

    • It can be recursive, allowing a query to reference itself.

    • It starts with the WITH keyword followed by the name of the CTE and the SELECT statement that defines it.

  • Answered by AI
  • Q5. Ref vs out difference
  • Q6. Types of routing in asp .net
  • Ans. 

    ASP.NET supports two types of routing: convention-based routing and attribute routing.

    • Convention-based routing uses a set of predefined rules to map incoming URLs to controller actions.

    • Attribute routing allows developers to define routes directly on the controller actions using attributes.

    • Both types of routing can be used together in the same application.

    • Example: [Route("api/products/{id}")] public IHttpActionResult Ge

  • Answered by AI
  • Q7. What is filters and types of filters in MVC?
  • Ans. 

    Filters are used to intercept and modify HTTP requests and responses in MVC.

    • Filters are used to add functionality to MVC applications.

    • There are five types of filters in MVC: Authorization, Action, Result, Exception, and Resource.

    • Authorization filters are used to authenticate users and restrict access to certain actions.

    • Action filters are used to modify the behavior of an action method before and after execution.

    • Result ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for.net technologies and mostly SQL server.

Skills evaluated in this interview

Top HHA eXchange Software Developer Interview Questions and Answers

Q1. What is filters and types of filters in MVC?
View answer (1)

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 (43)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Simple questions regarding arrays and matrix

Round 2 - Technical 

(2 Questions)

  • Q1. What js .net core
  • Ans. 

    ASP.NET Core is a cross-platform, high-performance framework for building modern, cloud-based, internet-connected applications.

    • Open-source framework developed by Microsoft

    • Supports multiple platforms including Windows, macOS, and Linux

    • Used for building web applications, APIs, and microservices

    • Provides high performance and scalability

    • Includes features like dependency injection, middleware, and MVC pattern

  • Answered by AI
  • Q2. What is promise in JS
  • Ans. 

    Promise in JS is an object representing the eventual completion (or failure) of an asynchronous operation.

    • A promise can be in one of three states: pending, fulfilled, or rejected.

    • Promises help in handling asynchronous operations in a more organized and readable way.

    • Example: const myPromise = new Promise((resolve, reject) => { // async operation });

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (211)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Quants verbal technical etc

Round 2 - Coding Test 

Tricky dsa probs on arrays,stacks

Round 3 - One-on-one 

(1 Question)

  • Q1. Tell me bout urself

Top HHA eXchange Software Developer Interview Questions and Answers

Q1. What is filters and types of filters in MVC?
View answer (1)

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 (43)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

Basic attitude, Verbal, reasoning

Round 2 - Technical 

(1 Question)

  • Q1. OOPS, DBMS, DSA, CN, OS
Round 3 - Technical 

(1 Question)

  • Q1. Advanced Concepts of DBMS, DSA asp. net mvc asp. net core web services docker
Round 4 - HR 

(1 Question)

  • Q1. Tellme about you self?

Interview Preparation Tips

Interview preparation tips for other job seekers - Feel free and don't panic...
and please go for interview with preparation.

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2022. 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 - One-on-one 

(3 Questions)

  • Q1. First round based on OOPS,DBMS and other basic questions.it was easy one in my case.
  • Q2. They told me to explain about my project and asked me some questions on that it was basic one
  • Q3. Difference between NoSQL and SQL,etc...
  • Ans. 

    NoSQL is a non-relational database while SQL is a relational database.

    • NoSQL databases are schema-less and flexible while SQL databases have a fixed schema.

    • NoSQL databases are horizontally scalable while SQL databases are vertically scalable.

    • NoSQL databases are better suited for handling unstructured data while SQL databases are better suited for structured data.

    • Examples of NoSQL databases include MongoDB, Cassandra, an...

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

(2 Questions)

  • Q1. In this they asked me about some questions on react and other js questions and other basic questions.
  • Q2. Difference between overloading and overriding,React questions like props and others

Interview Preparation Tips

Interview preparation tips for other job seekers - they mostly worked on .NET technology so try to learn .NET if you have some days and also they work in angular so try to read questions related on that if its possible it give you extra edge.

Skills evaluated in this interview

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)

HHA eXchange Interview FAQs

How many rounds are there in HHA eXchange interview?
HHA eXchange interview process usually has 2-3 rounds. The most common rounds in the HHA eXchange interview process are Technical, Coding Test and Resume Shortlist.
What are the top questions asked in HHA eXchange interview?

Some of the top questions asked at the HHA eXchange interview -

  1. What is filters and types of filters in M...read more
  2. how to integrate 2 database in one applicat...read more
  3. Tell me about Web api routi...read more
How long is the HHA eXchange interview process?

The duration of HHA eXchange interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

HHA eXchange Interview Process

based on 13 interviews

Interview experience

3.6
  
Good
View more

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.2k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Teleperformance Interview Questions
3.9
 • 1.8k Interviews
Portea Medical Interview Questions
3.8
 • 28 Interviews
Care24 Interview Questions
4.5
 • 2 Interviews
View all

HHA eXchange Reviews and Ratings

based on 42 reviews

3.4/5

Rating in categories

2.8

Skill development

3.1

Work-life balance

3.5

Salary

2.1

Job security

3.1

Company culture

2.9

Promotions

3.1

Work satisfaction

Explore 42 Reviews and Ratings
Software Engineer
52 salaries
unlock blur

₹6 L/yr - ₹20 L/yr

Associate Software Engineer
28 salaries
unlock blur

₹6.6 L/yr - ₹10.6 L/yr

Senior Software Engineer
17 salaries
unlock blur

₹10.6 L/yr - ₹22.8 L/yr

Test Engineer
14 salaries
unlock blur

₹7 L/yr - ₹10.5 L/yr

Senior Test Engineer
12 salaries
unlock blur

₹12 L/yr - ₹14.2 L/yr

Explore more salaries
Compare HHA eXchange with

Accenture

3.8
Compare

Capgemini

3.7
Compare

HCLTech

3.5
Compare

Teleperformance

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