Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by HealthAsyst Team. If you also belong to the team, you can get access from here

HealthAsyst Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

HealthAsyst SQL Developer Interview Questions and Answers

Updated 23 Oct 2023

HealthAsyst SQL Developer Interview Experiences

2 interviews found

SQL Developer Interview Questions & Answers

user image Anonymous

posted on 23 Oct 2023

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

I applied via Naukri.com and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(4 Questions)

  • Q1. Keys, truncate delete etc
  • Q2. Basic qustions on triggers, indexes, stored procedure, log files and querry on stored procedure
  • Q3. Majorly they asked on Performemce tuning and querry optimisation
  • Q4. 1.Given 3 tables asked to fetch the data using joins 2 more query based qustions

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up the basic concepts

Interview Questionnaire 

1 Question

  • Q1. All basic of SQL like indexes, difference between indexes, keys, trigger.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and technical skills basic to intermediate.

SQL Developer Interview Questions Asked at Other Companies

asked in BNP Paribas
Q1. How is a change request in application serviced by development te ... read more
asked in BNP Paribas
Q2. Write down a procedure to return a certain series (99, 96, 93, .. ... read more
asked in BNP Paribas
Q3. Given sample data on two tables, write down the result sets of al ... read more
asked in Capgemini
Q4. 2. Query optimization techniques? 3. Types of schemas and differe ... read more
asked in HCLTech
Q5. Difference between truncate and drop with more details. eg: 'A' t ... read more

Interview questions from similar companies

Interview Preparation Tips

Round: Technical Interview
Experience: this was a telephonic round : There I was asked basics of web development (e.g Session, hidden variable difference between POST and GET etc. ) and basics of PHP e.g global variables etc , little bit of mysql e.g joins , difference between left and right joins.

Round: Technical Interview
Experience: This was pretty much about interview rounds. I got the offer.

Skills: Core java, OOP, PHP
College Name: na
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 - Technical 

(2 Questions)

  • Q1. Write a program to check if string is a anagram
  • Ans. 

    Program to check if a string is an anagram

    • Create a function that takes in two strings as input

    • Remove all spaces and convert both strings to lowercase

    • Sort both strings and compare if they are equal to determine if they are anagrams

  • Answered by AI
  • Q2. What is react lifecycle method
  • Ans. 

    React lifecycle methods are special methods that are automatically called by React at specific points in a component's life cycle.

    • React components have several lifecycle methods such as componentDidMount, componentDidUpdate, componentWillUnmount, etc.

    • These methods allow developers to perform actions at specific points in a component's life cycle, such as fetching data, updating the UI, or cleaning up resources.

    • Understa...

  • Answered by AI
Round 3 - Coding Test 

Create a web app to perform cred operation

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Jan 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

General aptitude questions

Round 2 - Group Discussion 

Abstract topic group discussion

Round 3 - Technical 

(1 Question)

  • Q1. Technical interview covering topics on oops , data structures , conditional statements.
Round 4 - HR 

(1 Question)

  • Q1. General questions- introduction , how previous rounds went ,hobbies , what do you know about our company , situation based questions.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Few questions that would involve problem solving. Basic 10th std math would suffice

Round 2 - Coding Test 

Had few DSA questions.

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical interview
Round 4 - HR 

(1 Question)

  • Q1. About job, expection etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and inspire trust. Be curious.
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 Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Simple question on maths

Round 2 - Technical 

(2 Questions)

  • Q1. Explain OOPS concept
  • Ans. 

    OOPS (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on creating objects that interact with each other to solve complex problems

    • Key principles include encapsulation, inheritance, polymorphism, and abstraction

    • Encapsulation ensures that the internal state of an object is hidden from the outside world

    • Inheritance allows a class to inherit...

  • Answered by AI
  • Q2. Coding array questions
Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Coding Test 

Easy to medium leetcode questions

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 Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Question related to oops
  • Q2. Question related to coding
  • Q3. I was rejected after 2nd round
Round 2 - Technical 

(2 Questions)

  • Q1. Question related to advanced topic in oops
  • Q2. Question related to coding
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in

Round 1 - Technical 

(2 Questions)

  • Q1. How make a queue using a stack
  • Ans. 

    To implement a queue using a stack, use two stacks and simulate the queue operations.

    • Use two stacks, one for enqueue operation and one for dequeue operation.

    • For enqueue operation, simply push elements onto the stack used for enqueueing.

    • For dequeue operation, if the dequeue stack is empty, pop all elements from enqueue stack and push onto dequeue stack.

    • Then pop from the dequeue stack to simulate dequeue operation.

  • Answered by AI
  • Q2. Create a linked list
  • Ans. 

    A linked list is a data structure consisting of nodes where each node points to the next node in the sequence.

    • Create a Node class with data and next pointer

    • Initialize a head pointer to null

    • Add nodes by updating next pointers

    • Traverse the list by following next pointers

  • Answered by AI

Skills evaluated in this interview

HealthAsyst Interview FAQs

How many rounds are there in HealthAsyst SQL Developer interview?
HealthAsyst interview process usually has 2 rounds. The most common rounds in the HealthAsyst interview process are Technical and Resume Shortlist.
How to prepare for HealthAsyst SQL Developer 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 HealthAsyst. The most common topics and skills that interviewers at HealthAsyst expect are C#, MS SQL Server DBA, SAP Data Migration and SQL.
What are the top questions asked in HealthAsyst SQL Developer interview?

Some of the top questions asked at the HealthAsyst SQL Developer interview -

  1. 1.Given 3 tables asked to fetch the data using joins 2 more query based qustion...read more
  2. Basic qustions on triggers, indexes, stored procedure, log files and querry on ...read more
  3. All basic of SQL like indexes, difference between indexes, keys, trigg...read more

Tell us how to improve this page.

HealthAsyst SQL Developer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Oracle Cerner Interview Questions
3.7
 • 157 Interviews
Philips Interview Questions
3.8
 • 157 Interviews
GE Healthcare Interview Questions
4.0
 • 72 Interviews
eClinicalWorks Interview Questions
3.8
 • 68 Interviews
Magic Edtech Interview Questions
3.1
 • 50 Interviews
View all
Senior Software Engineer
81 salaries
unlock blur

₹10.9 L/yr - ₹23 L/yr

Software Engineer
77 salaries
unlock blur

₹4.5 L/yr - ₹15.3 L/yr

Technical Lead
46 salaries
unlock blur

₹16.9 L/yr - ₹30 L/yr

Software Developer
37 salaries
unlock blur

₹4 L/yr - ₹12.5 L/yr

Senior Software Developer
30 salaries
unlock blur

₹10.6 L/yr - ₹23 L/yr

Explore more salaries
Compare HealthAsyst with

Maxgen Technologies

4.5
Compare

Value Point Systems

3.6
Compare

JoulestoWatts Business Solutions

2.9
Compare

F1 Info Solutions and Services

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