Upload Button Icon Add office photos

HBSS

Compare button icon Compare button icon Compare
3.3

based on 7 Reviews

Filter interviews by

HBSS Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I was interviewed in Jan 2025.

Round 1 - Case Study 

A case study in an Optum interview typically revolves around solving a real-world problem related to healthcare, data analysis, technology, or business strategy, given Optum’s focus on healthcare services and technology solutions. Here are some tips on how to approach a case study interview at Optum and a sample example:

Steps to Approach an Optum Case Study:

1. Understand the Problem Statement:

Take time to read the case study carefully and make sure you understand the key issue or question.

Identify the stakeholders involved (patients, healthcare providers, insurance companies, etc.) and the objective (cost reduction, improving patient outcomes, increasing efficiency, etc.).



2. Clarify Assumptions:

If there are any ambiguous elements, ask questions to clarify the problem.

You can also state your assumptions if you're making any, but be clear that these are assumptions.



3. Break Down the Problem:

Identify key data points you would need to analyze.

Break the problem into smaller pieces that can be addressed step-by-step.



4. Analyze:

Use frameworks like SWOT analysis, PESTLE analysis, or Porter’s Five Forces if applicable to the case.

In case of a data-related problem, try to identify key metrics (such as patient satisfaction, cost, quality of care, etc.) and how they can be improved or measured.

For technology-related cases, consider aspects like scalability, security, user experience, and integration with existing systems.



5. Propose a Solution:

Present your findings logically and suggest a solution based on your analysis.

Make sure to consider both short-term and long-term impacts on patient

Round 2 - HR 

(2 Questions)

  • Q1. When interviewing with Optum, you can expect a mix of technical, behavioral, and situational questions, especially considering their focus on healthcare services, technology, and data analysis. Here are so...
  • Q2. Done
Round 3 - Aptitude Test 

Computer typing should be 40 wpm. And optional question answer multiple choice questions

Interview Preparation Tips

Interview preparation tips for other job seekers - If you're looking to land a job at Optum, here’s a detailed guide on how to effectively position yourself for success in your job search:

1. Understand Optum’s Mission and Values

Optum is all about improving healthcare through technology and data analytics. Understanding this core mission is crucial, as you’ll need to demonstrate how your skills align with their vision of enhancing patient outcomes and driving efficiency in healthcare
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Tell about yourself
  • Q2. Explain your experience in finacle
Round 2 - Technical 

(2 Questions)

  • Q1. Tell about yourself
  • Q2. Explain your experience in finacle

Interview Preparation Tips

Interview preparation tips for other job seekers - Their Job description keeps changing, while conducting interviews and after conducting interviews. They will put candidate in hold and waste the time
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
No response

I was interviewed in Dec 2024.

Round 1 - Aptitude Test 

Basic quant and reasoning questions
Selenium MCQ
Java programs with MCQ

Round 2 - Technical 

(23 Questions)

  • Q1. Tell me about yourself
  • Q2. Where you initialise driver
  • Ans. 

    The driver is typically initialized in the setup method of a test automation framework.

    • Driver initialization is usually done in a setup method before test execution.

    • Commonly used methods for driver initialization include WebDriverManager, System.setProperty, and driver instantiation.

    • Example: WebDriverManager.chromedriver().setup();

  • Answered by AI
  • Q3. Driver is static or non static
  • Ans. 

    Driver can be both static and non-static depending on the context of its usage.

    • Driver class can be static if it is used to initiate the WebDriver instance in a test automation framework.

    • Driver class can be non-static if it is used as an instance variable within a test class.

    • Static driver can be accessed directly without creating an object of the class.

    • Non-static driver requires an object of the class to be created befo

  • Answered by AI
  • Q4. Difference between static and non static
  • Ans. 

    Static variables belong to the class itself, while non-static variables belong to instances of the class.

    • Static variables are shared among all instances of a class

    • Non-static variables are unique to each instance of a class

    • Static variables are initialized only once, at the start of the program

    • Non-static variables are initialized separately for each instance of the class

  • Answered by AI
  • Q5. Disadvantages of static and non static
  • Ans. 

    Static and non-static have their own disadvantages in QA automation testing.

    • Static methods cannot be overridden or inherited, making it difficult to create flexible test cases.

    • Non-static methods require an instance of the class to be created, which can lead to increased memory usage.

    • Static methods can lead to tight coupling between classes, making it harder to maintain and update the code.

    • Non-static methods may have de...

  • Answered by AI
  • Q6. Parallel execution in TestNG
  • Ans. 

    TestNG allows parallel execution of test cases to save time and improve efficiency.

    • TestNG provides the 'parallel' attribute in the testng.xml file to specify the level of parallelism for test execution.

    • Parallel execution can be achieved at the test level, class level, method level, or suite level.

    • TestNG also supports parallel execution of tests across multiple classes or suites using the 'parallel' attribute in the sui...

  • Answered by AI
  • Q7. Write the code for Parallel testing in TestNG
  • Ans. 

    Parallel testing in TestNG allows running tests concurrently for faster execution.

    • Use 'parallel' attribute in testng.xml file to specify parallel execution mode.

    • Set 'parallel' attribute to 'methods', 'classes', or 'tests' based on the level of parallelism needed.

    • Example: <suite name='MySuite' parallel='tests'>

    • Use 'thread-count' attribute to specify the number of threads to use for parallel execution.

  • Answered by AI
  • Q8. Difference between parallel methods and parallel tests
  • Ans. 

    Parallel methods run multiple methods concurrently within a single test, while parallel tests run multiple tests concurrently.

    • Parallel methods execute multiple methods within a single test class concurrently.

    • Parallel tests execute multiple test classes concurrently.

    • Parallel methods are useful for speeding up the execution of a single test, while parallel tests are useful for running multiple tests faster.

    • Example: Runni...

  • Answered by AI
  • Q9. Upload file using rest assured
  • Ans. 

    Use Rest Assured to upload a file

    • Use the given file path to create a File object

    • Use MultiPartSpecBuilder to build the request with the file

    • Send the request using Rest Assured's given(), when(), and post() methods

  • Answered by AI
  • Q10. Postman basic questions
  • Q11. Parameter for post method in postman
  • Ans. 

    The parameter for a POST method in Postman is typically sent in the request body.

    • Parameters are sent in the request body in key-value pairs

    • Parameters can be sent as form-data, x-www-form-urlencoded, or raw JSON

    • Example: {"key": "value"}

  • Answered by AI
  • Q12. BDD Framework cucumber
  • Q13. Cucumber execution process
  • Q14. How cucumber know step defination file placed
  • Ans. 

    Cucumber knows the step definition file based on the annotations provided in the feature files.

    • Cucumber uses annotations like @Given, @When, @Then to map steps in feature files to corresponding step definition methods.

    • Step definition files are typically placed in a separate package or directory within the project structure.

    • Cucumber scans the project directory for step definition files based on the package structure and

  • Answered by AI
  • Q15. Parameters used in cucumber
  • Ans. 

    Parameters used in cucumber are used to pass values to the step definitions in feature files.

    • Parameters are defined in feature files using < > syntax

    • Parameters can be passed to step definitions using Regular Expressions

    • Parameters can be used to make scenarios more reusable and dynamic

  • Answered by AI
  • Q16. Datatable in cucumber
  • Ans. 

    Datatable in Cucumber is used to pass multiple sets of data to a step definition in a scenario.

    • Datatables are defined using pipes (|) to separate values

    • Each row in the datatable represents a set of data passed to the step definition

    • Datatables can be used for parameterization and data-driven testing

  • Answered by AI
  • Q17. Have u created the testplan document when porject was started
  • Ans. 

    Yes, I have created the test plan document at the start of the project.

    • Yes, I always create a test plan document at the beginning of a project to outline the testing approach and strategy.

    • The test plan document includes details on scope, objectives, resources, schedule, and test cases.

    • It helps in ensuring that all stakeholders are aligned on the testing process and expectations.

    • For example, in my previous project, I cr...

  • Answered by AI
  • Q18. Testing cycle when project was on initial level
  • Ans. 

    During the initial testing cycle of a project, focus is on establishing test cases, setting up test environments, and identifying potential issues.

    • Creating test cases based on requirements

    • Setting up test environments

    • Identifying potential issues and risks

    • Executing test cases and reporting defects

    • Collaborating with developers to resolve issues

  • Answered by AI
  • Q19. Risk management and risk based testing
  • Q20. Which estimate technique you follow , if fibonacci then why it is in 1 2 3 5 8 13 ?? Not in 12345678
  • Ans. 

    Fibonacci sequence is a mathematical pattern where each number is the sum of the two preceding ones.

    • Fibonacci sequence is a series of numbers where each number is the sum of the two preceding ones.

    • The sequence starts with 1, 2, then each subsequent number is the sum of the two previous numbers (1+2=3, 2+3=5, 3+5=8, and so on).

    • This sequence is used in estimating because it reflects natural growth patterns found in natur

  • Answered by AI
  • Q21. What is testing matrix and automation ROI
  • Ans. 

    Testing matrix is a tool used to track test coverage and automation ROI is the return on investment from implementing automation testing.

    • Testing matrix is a visual representation of test cases, test scenarios, and their coverage across different platforms, browsers, devices, etc.

    • Automation ROI is the measure of the benefits gained from automation testing compared to the costs incurred in implementing and maintaining th...

  • Answered by AI
  • Q22. Cicd tool
  • Q23. Handle team ?
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

Process planning refers to the methodical approach of determining the best possible way to manufacture a product or deliver a service by considering various aspects such as resources, timelines, and methodologies involved in production or execution.

Round 2 - One-on-one 

(5 Questions)

  • Q1. Explain about previous process
  • Ans. 

    Implemented a new chemical process to increase efficiency and reduce waste.

    • Researched and analyzed current process to identify areas for improvement

    • Designed and tested new process using simulation software

    • Collaborated with production team to implement changes and monitor results

    • Achieved 20% increase in production output and 15% reduction in waste

    • Continuously monitored and optimized process for further improvements

  • Answered by AI
  • Q2. Explain about my work experience
  • Q3. Explain about my work standard
  • Q4. Explain about my managing method
  • Ans. 

    I utilize a combination of project management tools and communication strategies to effectively manage my team and projects.

    • I prioritize tasks based on deadlines and importance

    • I regularly communicate with team members to ensure everyone is on the same page

    • I use project management software such as Trello or Asana to track progress and assign tasks

    • I adapt my management style to fit the needs and preferences of individual

  • Answered by AI
  • Q5. Explain about my working style
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What are the key topics related to Generative AI, specifically focusing on Retrieval-Augmented Generation (RAG) and Large Language Models (LLM)?
  • Q2. What is your understanding of the existing project and the technology stacks used?
Round 2 - Technical 

(3 Questions)

  • Q1. What has been your contribution to existing work and the technologies used in that context?
  • Q2. ML, DL, Gen AI implementation and flow
  • Q3. Python Coding logic and semantics
Round 3 - One-on-one 

(2 Questions)

  • Q1. What are the existing work challenges you face, and what solutions have you implemented to address them?
  • Q2. What is your understanding of Generative AI and Natural Language Processing (NLP), and can you provide examples of their use cases?

Interview Preparation Tips

Interview preparation tips for other job seekers - Genuinely communicate your skills and contributions.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Aug 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Daily activitise, work flow in current organization
  • Q2. Kubernetes, GIT, TERRAFORM, AWS, Jenkins questions
Round 2 - HR 

(2 Questions)

  • Q1. Why do want leave current organization?
  • Q2. What do you know about Quest Global?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Group Discussion 

Difference between soft skills and hard skills

Round 2 - Technical 

(2 Questions)

  • Q1. What is manual testing
  • Q2. What is defect life cycleif
Round 3 - Technical 

(2 Questions)

  • Q1. What is the main thing should have for a test engineer
  • Q2. What's your opinion on testing
Round 4 - HR 

(2 Questions)

  • Q1. Are you ok with rotational shifts?
  • Q2. Are you ok with the work location?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(4 Questions)

  • Q1. What is polymorphism,generator,decorator? List vs tuple?
  • Ans. 

    Polymorphism allows objects of different classes to be treated as objects of a common superclass. Generators produce items one at a time. Decorators add functionality to existing functions or methods.

    • Polymorphism: Enables objects of different classes to be treated as objects of a common superclass. Example: Animal superclass with Dog and Cat subclasses.

    • Generator: Produces items one at a time, allowing for efficient mem...

  • Answered by AI
  • Q2. TFIDF, BOW What is embedding why important how to craete embeddings?
  • Ans. 

    Embeddings are a way to represent words or phrases as vectors in a high-dimensional space, capturing semantic relationships.

    • Embeddings are important for tasks like natural language processing, where words need to be represented in a meaningful way.

    • They can be created using techniques like Word2Vec, GloVe, or using neural networks like Word Embeddings.

    • Embeddings help in capturing semantic relationships between words, al...

  • Answered by AI
  • Q3. What is Encoder decoder explain with example?
  • Ans. 

    Encoder-decoder is a neural network architecture used for tasks like machine translation.

    • Encoder processes input data and generates a fixed-length representation

    • Decoder uses the representation to generate output sequence

    • Example: Seq2Seq model for translating English to French

  • Answered by AI
  • Q4. What is stop word? We need to remove in every application or not tell me example when stop words are importan?
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. Can you describe your previous experience?
  • Q2. What is your expected salary for this position?
Round 2 - One-on-one 

(2 Questions)

  • Q1. Can you describe your previous work experience?
  • Q2. What do you know about inventory management?
Round 3 - One-on-one 

(2 Questions)

  • Q1. Can you describe your previous professional experience?
  • Q2. What are the key principles of inventory management and auditing?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

The test will comprise a total of 60 questions, divided as follows: 70% of the questions will focus on finance and accounting, while the remaining questions will cover aptitude and English.

Round 2 - Technical 

(1 Question)

  • Q1. Zero coupon bonds, long-term liabilities, return on equity, debt-equity ratio, captial budgeting and techniques, bonds and its types, debt instruments meaning, collateral, mortgage, spin off, demerger, mer...

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview panel consists of two members: the team leader and the manager. They specifically asked me detailed questions regarding finance, which included my percentage in my MBA, inquiries related to my projects, and how I learned about the company. While responding to the questions, it is essential to remain confident, and if a question is unfamiliar, we can articulate our response in our own words. We should answer them slowly instead of hurrying. Overall I have a great experience while answering the questions and panel members were polite persons.

Tell us how to improve this page.

HBSS Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Teleperformance Interview Questions
3.9
 • 1.7k Interviews
Mphasis Interview Questions
3.4
 • 794 Interviews
Cyient Interview Questions
3.7
 • 281 Interviews
View all

HBSS Reviews and Ratings

based on 7 reviews

3.3/5

Rating in categories

2.7

Skill development

3.5

Work-life balance

2.6

Salary

4.0

Job security

2.8

Company culture

2.4

Promotions

2.6

Work satisfaction

Explore 7 Reviews and Ratings
Software Developer
5 salaries
unlock blur

₹8 L/yr - ₹16 L/yr

Transport Planner
4 salaries
unlock blur

₹7.2 L/yr - ₹17.5 L/yr

Software Engineer
3 salaries
unlock blur

₹12 L/yr - ₹12.7 L/yr

Quality Analyst
3 salaries
unlock blur

₹3 L/yr - ₹4 L/yr

Explore more salaries
Compare HBSS with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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