Upload Button Icon Add office photos

eClinicalWorks

Compare button icon Compare button icon Compare

Filter interviews by

eClinicalWorks Developer Interview Questions and Answers for Experienced

Updated 17 Jan 2021

eClinicalWorks Developer Interview Experiences for Experienced

1 interview found

Developer Interview Questions & Answers

user image Anonymous

posted on 17 Jan 2021

I applied via Referral and was interviewed before Jan 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Write programme for hashcode and equal implementation?
  • Ans. 

    Program for hashcode and equal implementation

    • Override hashCode() method to generate unique hashcode for each object

    • Override equals() method to compare two objects based on their attributes

    • Ensure that if two objects are equal, their hashcodes should also be equal

    • Use Objects.hash() method to generate hashcode for multiple attributes

    • Example: public int hashCode() { return Objects.hash(attribute1, attribute2); }

    • Example: pu...

  • Answered by AI
  • Q2. How hashmap works?
  • Ans. 

    HashMap is a data structure that stores key-value pairs and provides constant time complexity for basic operations.

    • Hashmap uses hashing to store and retrieve values based on keys.

    • It uses an array of buckets to store key-value pairs.

    • The hash function maps the key to an index in the array.

    • If multiple keys map to the same index, a linked list is used to store them.

    • Basic operations like put, get, and remove have constant t...

  • Answered by AI
  • Q3. What is difference between synchronized and concurrent?
  • Ans. 

    Synchronized ensures only one thread can access a resource at a time, while concurrent allows multiple threads to access it simultaneously.

    • Synchronized is used for thread safety and mutual exclusion.

    • Concurrent is used for improving performance and scalability.

    • Synchronized can cause performance issues due to locking.

    • Concurrent can cause race conditions and requires careful synchronization.

    • Examples of synchronized: synch...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on Java Oops concepts and collection framework

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed in May 2019. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. First round was Aptitude, then written programming, then Technical and then Technical+ HR

Interview Preparation Tips

Interview preparation tips for other job seekers - I had very nice interview and I had faced 4 rounds and assumed that I have selected but they have not announce my result :(.

Advice - Whenever you guys take interviews, please announce the results.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. About project of previous company
  • Q2. Check palindrome and odd of given number
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Some Collections questions
  • Q2. One to codding questions on Stream API

Interview Preparation Tips

Topics to prepare for NICE Java Developer interview:
  • CoreJava
  • Collections
  • Java 8 Features
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Oct 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 - Coding Test 

Reverse string code and reverse array code

Round 3 - Technical 

(5 Questions)

  • Q1. Basic of java, pillar of oops, collection, exception handling etc.
  • Q2. What isinheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a class inherits properties and behaviors from another class.

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Creates a parent-child relationship between classes

    • Example: Class 'Car' can inherit from class 'Vehicle' and inherit properties like 'speed' and methods like 'drive()'

  • Answered by AI
  • Q3. What is encapsulation
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data into a single unit, known as a class.

    • Encapsulation helps in hiding the internal state of an object and restricting access to it.

    • It allows for better control over the data by preventing direct modification from outside the class.

    • Access to the data is provided through methods, which can enforce validation rules and ensure data integrity.

    • Ex...

  • Answered by AI
  • Q4. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: Animal superclass with Dog and Cat subclasses. Both Dog and Cat can be treated as Animals.

  • Answered by AI
  • Q5. What is abstraction
  • Ans. 

    Abstraction is the concept of hiding complex implementation details and showing only the necessary features to the user.

    • Abstraction allows developers to focus on what an object does rather than how it does it

    • It helps in reducing complexity and improving code readability

    • Example: In Java, abstract classes and interfaces are used to achieve abstraction

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Java, sql ,springboot
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Oops ,sql,MySQL, written test
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Dsa question, I don’t remember
  • Q2. Check if the sentence is palindrome or not
  • Ans. 

    To check if a sentence is a palindrome, compare it with its reverse form.

    • Remove all non-alphanumeric characters and convert the sentence to lowercase.

    • Reverse the sentence and compare it with the original sentence to check for palindrome.

    • Example: 'A man, a plan, a canal, Panama' becomes 'amanaplanacanalpanama' after removing non-alphanumeric characters and converting to lowercase.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Discussion was on Binary tree and tree traversal. Asked me to write binary tree complete program to insert amd traversal of binary tree with few changes on how to insert.
  • Q2. In depth discussion on my experience my projects.

Interview Preparation Tips

Topics to prepare for ServiceNow Java Developer interview:
  • Dsa and core java, System design
Interview preparation tips for other job seekers - Overall my both rounds went really good but after the second round, I followed with hr for 2 weeks to get the update initially she said she will schedule 3 rd round later she said I am not selected.
Overall my experience wasn’t great.

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Mar 2023. 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 - Voice Processing -English check 

(1 Question)

  • Q1. Easy Questions - Oops Concept . real life examples Abstract Class Inheritance difference Final vs immutable Spring Concepts - dependency injection,about @autowired
Round 3 - Technical 

(1 Question)

  • Q1. English Test - Speaking Fluent Eglish

Interview Preparation Tips

General Tips: General Aptitude is very important, don't ignore it no matter how good your coding or c skills are.
Unless you qualify the first round, your skills of no use for that company.
Exhausting, going to ppts and interview again and again is very stressful and a real pain.
Skill Tips: Books -
Data Structures and Algorithms Made Easy - Narsimha Karumachi
Websites -
geeksforgeeks
indiabixs
stackoverflow
Skills:
College Name: NIT Surathkal

eClinicalWorks Interview FAQs

How to prepare for eClinicalWorks Developer interview for experienced candidates?
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 eClinicalWorks. The most common topics and skills that interviewers at eClinicalWorks expect are Ansible, SVN, Java, NAGIOS and Performance Testing.
What are the top questions asked in eClinicalWorks Developer interview for experienced candidates?

Some of the top questions asked at the eClinicalWorks Developer interview for experienced candidates -

  1. what is difference between synchronized and concurre...read more
  2. Write programme for hashcode and equal implementati...read more
  3. how hashmap wor...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

24/7 Customer Interview Questions
3.5
 • 176 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
ServiceNow Interview Questions
4.1
 • 121 Interviews
Thomson Reuters Interview Questions
4.1
 • 114 Interviews
Amadeus Interview Questions
3.9
 • 108 Interviews
UKG Interview Questions
3.0
 • 103 Interviews
Atlassian Interview Questions
3.5
 • 89 Interviews
Temenos Interview Questions
3.1
 • 85 Interviews
NICE Interview Questions
3.6
 • 82 Interviews
Wolters Kluwer Interview Questions
3.9
 • 80 Interviews
View all

eClinicalWorks Developer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

3.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Software Specialist
490 salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Strategic Account Manager
224 salaries
unlock blur

₹3.2 L/yr - ₹10.5 L/yr

Project Manager
173 salaries
unlock blur

₹4.7 L/yr - ₹16.5 L/yr

Technical Support Engineer
149 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Implementation Specialist
139 salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Explore more salaries
Compare eClinicalWorks with

24/7 Customer

3.5
Compare

Thomson Reuters

4.1
Compare

Oracle Cerner

3.7
Compare

NextComm Corporation

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