Upload Button Icon Add office photos

Filter interviews by

Hamsa Soham Healthcare Software Engineer Interview Questions and Answers

Updated 27 Mar 2023

Hamsa Soham Healthcare Software Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - HR 

(1 Question)

  • Q1. Introduce yourself . Do you know java nad MySQL .
  • Ans. 

    I am a software engineer with expertise in Java and MySQL.

    • Proficient in Java programming language and MySQL database management system

    • Experience in developing web applications using Java and MySQL

    • Familiarity with Java frameworks such as Spring and Hibernate

    • Knowledge of SQL and database design principles

    • Ability to write efficient and optimized code

    • Examples: Developed a web-based inventory management system using Java an...

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

(1 Question)

  • Q1. Java related questions and jdbc and MySQL

Interview Preparation Tips

Interview preparation tips for other job seekers - It's not a big deal to get job in hamsa soham health care Pvt Ltd.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(1 Question)

  • Q1. Basic questions on java
Round 2 - One-on-one 

(1 Question)

  • Q1. Basics of sql and java
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Anagram of two strings in java
  • Ans. 

    Java program to check if two strings are anagrams

    • Create a function that takes two strings as input

    • Convert both strings to character arrays and sort them

    • Check if the sorted arrays are equal to determine if they are anagrams

  • Answered by AI
  • Q2. Insert and select query in MySQL
  • Ans. 

    Insert and select data in MySQL using SQL queries

    • Use INSERT INTO table_name (column1, column2, ...) VALUES (value1, value2, ...); to insert data

    • Use SELECT * FROM table_name; to select all data from a table

    • Use SELECT column1, column2 FROM table_name WHERE condition; to select specific data based on a condition

  • Answered by AI
  • Q3. Get and Post APIs in rest
  • Ans. 

    GET and POST are HTTP methods used in REST APIs for retrieving and sending data.

    • GET method is used to retrieve data from a server

    • POST method is used to send data to a server

    • GET requests are idempotent, while POST requests are not

    • GET requests should only be used for retrieving data, not for modifying data

    • Example: GET request to retrieve a list of users - GET /users

    • Example: POST request to create a new user - POST /users

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was technical round and there were three panelists. Started with alot of database questions and core java question. Prepare well about your project working in the company. I couldn't clear this round recieved rejection mail after two weeks.

Skills evaluated in this interview

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

I applied via campus placement at National Institute of Engineering (NIE) and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

They were very strict about the test and asked various questions from various topics from java, python, oops etc.

Round 2 - Coding Test 

Covered all topics from DBMS, Data Structures and Algorithmes, Debugging, error detection, code output etc.

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

(3 Questions)

  • Q1. SQL interview question
  • Q2. Stored Procedure and function differences
  • Ans. 

    Stored procedures are precompiled and stored in the database, while functions are compiled and stored in memory.

    • Stored procedures are precompiled and stored in the database for reuse.

    • Functions are compiled and stored in memory for faster execution.

    • Stored procedures can return multiple values, while functions return a single value.

    • Functions can be called from within a stored procedure, but stored procedures cannot be ca

  • Answered by AI
  • Q3. SQL query flow and window function they will ask

Interview Preparation Tips

Interview preparation tips for other job seekers - Good hands on SQL is required
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Indeed and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

The interview session took 30 minutes

Round 2 - Technical 

(1 Question)

  • Q1. Implement java code to filter given data from a list using the Java Stream API
  • Ans. 

    Implement Java code to filter data from a list using Java Stream API

    • Use Stream.filter() method to filter data based on a given condition

    • Use lambda expressions to define the filtering condition

    • Collect the filtered data using Collectors.toList() method

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for core Java, and React concepts for full stack role. You must consider capability to demonstrate your knowledge and skills with RESTful APIs.

Skills evaluated in this interview

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

(1 Question)

  • Q1. What is difference between inner join and full join
  • Ans. 

    Inner join returns only the matching rows between two tables, while full join returns all rows from both tables.

    • Inner join only includes rows that have a match in both tables

    • Full join includes all rows from both tables, filling in NULL values for non-matching rows

    • Inner join is more commonly used than full join in practice

    • Example: Inner join - SELECT * FROM table1 INNER JOIN table2 ON table1.id = table2.id

    • Example: Full ...

  • Answered by AI

Skills evaluated in this interview

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

(3 Questions)

  • Q1. Write a program to check given input is palindrome or not
  • Ans. 

    Program to check if input is a palindrome or not

    • Create a function that takes a string input

    • Remove all non-alphanumeric characters and convert to lowercase

    • Compare the original string with its reverse to check if it's a palindrome

  • Answered by AI
  • Q2. What is the difference between HashMap and HashSet.
  • Ans. 

    HashMap is a key-value pair data structure while HashSet is a collection of unique elements.

    • HashMap stores key-value pairs while HashSet stores unique elements

    • HashMap allows duplicate values but keys must be unique, HashSet does not allow duplicates

    • Example: HashMap map = new HashMap<>(); HashSet set = new HashSet<>()

Answered by AI
  • Q3. Difference between path param and request param.
  • Ans. 

    Path param is part of the URL path, while request param is part of the query string in the URL.

    • Path param is used to identify a specific resource in the URL path, while request param is used to provide additional data to the server.

    • Path param is defined in the URL path itself, like /users/{id}, while request param is appended to the URL as key-value pairs, like ?name=John&age=30.

    • Path param is typically used for mandato...

  • Answered by AI

    Skills evaluated in this interview

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

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

    Round 1 - One-on-one 

    (2 Questions)

    • Q1. Questions on my projects
    • Q2. C++ stl and OOPs
    Round 2 - One-on-one 

    (2 Questions)

    • Q1. Git, svn version control tools
    • Q2. Jira and confluence ticketing tools
    Round 3 - HR 

    (2 Questions)

    • Q1. My previous experience
    • Ans. 

      I have 5 years of experience working as a software engineer in various tech companies.

      • Worked on developing web applications using Java, Spring, and Angular

      • Experience with database management systems like MySQL and MongoDB

      • Collaborated with cross-functional teams to deliver projects on time and within budget

    • Answered by AI
    • Q2. Salary discussion
    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    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 

    (2 Questions)

    • Q1. Self and other tools
    • Q2. Jenkins Linux Ansible git AWS

    Hamsa Soham Healthcare Interview FAQs

    How many rounds are there in Hamsa Soham Healthcare Software Engineer interview?
    Hamsa Soham Healthcare interview process usually has 3 rounds. The most common rounds in the Hamsa Soham Healthcare interview process are Resume Shortlist, HR and One-on-one Round.
    What are the top questions asked in Hamsa Soham Healthcare Software Engineer interview?

    Some of the top questions asked at the Hamsa Soham Healthcare Software Engineer interview -

    1. Introduce yourself . Do you know java nad MySQ...read more
    2. Java related questions and jdbc and My...read more

    Tell us how to improve this page.

    Hamsa Soham Healthcare Software Engineer Reviews and Ratings

    based on 2 reviews

    3.0/5

    Rating in categories

    1.2

    Skill development

    3.8

    Work-Life balance

    1.2

    Salary & Benefits

    4.3

    Job Security

    1.2

    Company culture

    1.2

    Promotions/Appraisal

    1.5

    Work Satisfaction

    Explore 2 Reviews and Ratings
    Software Developer
    4 salaries
    unlock blur

    ₹2.2 L/yr - ₹4.7 L/yr

    Java Developer
    3 salaries
    unlock blur

    ₹3.3 L/yr - ₹3.7 L/yr

    Explore more salaries
    Compare Hamsa Soham Healthcare with

    Wipro

    3.7
    Compare

    Sun Pharmaceutical Industries

    4.1
    Compare

    Aurobindo Pharma

    4.0
    Compare

    IQVIA

    3.9
    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