Upload Button Icon Add office photos

eClinicalWorks

Compare button icon Compare button icon Compare

Filter interviews by

eClinicalWorks Technical Support Engineer Interview Questions, Process, and Tips

Updated 1 Jul 2024

Top eClinicalWorks Technical Support Engineer Interview Questions and Answers

View all 6 questions

eClinicalWorks Technical Support Engineer Interview Experiences

4 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(3 Questions)

  • Q1. Write a SQL join query
  • Ans. 

    A SQL join query combines rows from two or more tables based on a related column between them.

    • Use keywords like INNER JOIN, LEFT JOIN, RIGHT JOIN, or FULL JOIN to specify the type of join

    • Specify the columns to join on using ON keyword

    • Include the table names and column names in the query

  • Answered by AI
  • Q2. What is telnet ?
  • Ans. 

    Telnet is a network protocol used to access and manage devices remotely over a network.

    • Telnet allows users to connect to a remote device or server using a command-line interface.

    • It is commonly used for troubleshooting network issues, configuring devices, and accessing remote servers.

    • Telnet operates on port 23 and transmits data in plain text, making it less secure compared to SSH.

    • Example: telnet 192.168.1.1 23

  • Answered by AI
  • Q3. What are vpns and working
  • Ans. 

    VPNs are Virtual Private Networks that allow users to securely access a private network over a public network.

    • VPNs encrypt data to ensure privacy and security

    • They can be used to access region-restricted websites or bypass censorship

    • Common VPN protocols include OpenVPN, L2TP/IPsec, and IKEv2

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How to do technical troubleshooting
  • Ans. 

    Technical troubleshooting involves identifying, isolating, and resolving technical issues to ensure systems are functioning properly.

    • Identify the problem by gathering information from the user or system logs

    • Isolate the issue by testing different components or configurations

    • Resolve the problem by applying solutions based on the root cause

    • Document the troubleshooting process and solution for future reference

  • Answered by AI
  • Q2. Write left join query
  • Ans. 

    A left join query combines rows from two tables based on a related column, including all rows from the left table.

    • Use the LEFT JOIN keyword in your query

    • Specify the columns you want to select from both tables

    • Specify the join condition using ON clause

    • Example: SELECT * FROM table1 LEFT JOIN table2 ON table1.id = table2.id

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Sql basic optimization
  • Q2. Java exception and oops

Interview Preparation Tips

Interview preparation tips for other job seekers - Esay just study basic

Technical Support Engineer Interview Questions Asked at Other Companies

asked in Salesforce
Q1. Admin Questions :- What is Relationships what are types of relati ... read more
asked in Zoho
Q2. Send an email to customer apologising the mistake made by the rep ... read more
asked in Salesforce
Q3. How you will get contact of account with name starting with abc.
Q4. What are the steps which you will follow if a customer calls and ... read more
Q5. How to release previous IP which assign to your device?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is telnet,ping and sql
  • Ans. 

    Telnet is a network protocol used to connect to remote devices, ping is a network utility used to test connectivity, and SQL is a language used for managing databases.

    • Telnet is a protocol that allows you to connect to a remote device over a network.

    • Ping is a utility used to test the reachability of a host on an IP network.

    • SQL (Structured Query Language) is a language used for managing and querying databases.

    • Examples: T...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Jan 2023. There were 5 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 - Group Discussion 

Topic: should india go cashless

Round 3 - HR 

(1 Question)

  • Q1. Hr interview had basic sql and network based questions
Round 4 - Technical 

(1 Question)

  • Q1. Detailed sql , networking and java related questions
Round 5 - Behavioral 

(1 Question)

  • Q1. Basic questions related to you and your interests

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself with sql properly and communicate skills should be proper

eClinicalWorks interview questions for designations

 Technical Support

 (1)

 Technical Support Executive

 (1)

 Technical Writer

 (1)

 Technical Account Manager

 (1)

 Automation Engineer

 (2)

 Software Engineer

 (2)

 Performance Engineer

 (1)

 Softwaretest Engineer

 (1)

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Questions on java8
  • Q2. Questions on multithreading
  • Q3. Questions on exception handling

Interview Preparation Tips

Interview preparation tips for other job seekers - First round was a coding round where interviewer asked questions randomly and were asked to optimise our code. Next round was a technical round where everyone needs to be thorough with their technical skills

I applied via Campus Placement and was interviewed before Sep 2021. There were 4 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 - Aptitude Test 

Math and verbal round .

Round 3 - Group Discussion 

General topics to speak

Round 4 - Technical 

(1 Question)

  • Q1. Duplicates in array College Projects Hashmap implementation
  • Ans. 

    Implement a function to find duplicates in an array of strings using Hashmap.

    • Create a Hashmap to store the frequency of each string in the array

    • Iterate through the array and check if the frequency of any string is greater than 1

    • If yes, add it to the list of duplicates

    • Return the list of duplicates

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer what you know, be genuine and honest

Skills evaluated in this interview

Interview Questionnaire 

21 Questions

  • Q1. AVL tree balance checking
  • Q2. Median of 2 sorted arrays in O(log N) time complexity and O(1) space complexity
  • Ans. 

    Find median of 2 sorted arrays in O(log N) time complexity and O(1) space complexity

    • Use binary search to find the partition point in both arrays

    • Calculate the median based on the partition point and array sizes

    • Adjust the partition points based on the median value

    • Repeat until the partition points are at the median

    • Handle edge cases such as empty arrays and uneven array sizes

  • Answered by AI
  • Q3. Strings Anagram in O(1) space complexity
  • Ans. 

    Anagram of strings in O(1) space complexity

    • Use a fixed size array of integers to store the frequency of characters in the first string

    • Iterate through the second string and decrement the frequency of each character in the array

    • If all the frequencies are zero, then the strings are anagrams

    • Return true or false accordingly

  • Answered by AI
  • Q4. Level order traversal of a tree using Queue
  • Ans. 

    Level order traversal of a tree using Queue

    • Create a queue and add the root node to it

    • While the queue is not empty, remove the front node and print its value

    • Add the left and right child nodes of the removed node to the queue

    • Repeat until the queue is empty

  • Answered by AI
  • Q5. Reverse level order traversal of a tree using Queue
  • Ans. 

    Reverse level order traversal of a tree using Queue

    • Create a queue and push the root node into it

    • While the queue is not empty, pop the front node and push its children into the queue

    • Add the popped node to a stack

    • Once the queue is empty, pop elements from the stack and print them

  • Answered by AI
  • Q6. BFS and DFS Difference
  • Ans. 

    BFS and DFS are graph traversal algorithms. BFS explores nodes level by level while DFS explores nodes depth by depth.

    • BFS uses a queue while DFS uses a stack or recursion.

    • BFS is optimal for finding shortest path while DFS is optimal for finding a path between two nodes.

    • BFS requires more memory as it stores all the nodes at each level while DFS requires less memory.

    • BFS can be used to find connected components while DFS

  • Answered by AI
  • Q7. OS Concepts – Starvation, Demand Paging, Virtual Memory, Deadlocks
  • Q8. Parenthesis Balance Checking
  • Q9. Three Jars - 1 with apples, 1 with oranges, 1 with apples and oranges. All of them wrongly labelled. Find min no of attempts to find the correct nature of boxes
  • Q10. Find product of each element of an array except that element in O(N) time complexity without using / operation
  • Ans. 

    Find product of each element of an array except that element in O(N) time complexity without using / operation

    • Use prefix and suffix products

    • Multiply prefix and suffix products for each element to get the final product

    • Handle edge cases where array has 0 or 1 element separately

  • Answered by AI
  • Q11. Recursively deleting linked list
  • Ans. 

    Recursively delete a linked list

    • Create a recursive function that takes the head of the linked list as input

    • Base case: if the head is null, return

    • Recursively call the function with the next node as input

    • Delete the current node

  • Answered by AI
  • Q12. Recursively deleting linked list from end
  • Ans. 

    Recursively delete a linked list from the end.

    • Start from the head and recursively traverse to the end of the list.

    • Delete the last node and set the second last node's next pointer to null.

    • Repeat until the entire list is deleted.

    • Use a recursive function to implement the deletion process.

  • Answered by AI
  • Q13. Recursively deleting tree
  • Ans. 

    Recursively delete a tree by deleting all its child nodes and then the parent node.

    • Start from the leaf nodes and delete them first.

    • Then move up to the parent nodes and delete them.

    • Repeat until the root node is deleted.

    • Use post-order traversal to ensure child nodes are deleted before parent nodes.

  • Answered by AI
  • Q14. Recursively deleting from end
  • Ans. 

    Recursively delete elements from the end of an array.

    • Create a recursive function that removes the last element of the array.

    • Call the function recursively until the desired number of elements are removed.

    • Handle edge cases such as empty arrays and removing more elements than the array contains.

  • Answered by AI
  • Q15. Difference between Floyd Warshall and Djikstra
  • Ans. 

    Floyd Warshall finds shortest path between all pairs of vertices while Djikstra finds shortest path from a single source.

    • Floyd Warshall is used for dense graphs while Djikstra is used for sparse graphs.

    • Floyd Warshall has a time complexity of O(n^3) while Djikstra has a time complexity of O((n+m)logn).

    • Floyd Warshall can handle negative edge weights while Djikstra cannot.

    • Floyd Warshall can detect negative cycles while Dj

  • Answered by AI
  • Q16. Shortest path between 2 points in 2-D space in O(log N) time
  • Ans. 

    There is no known algorithm to find shortest path in 2-D space in O(log N) time.

    • The best known algorithm for finding shortest path in 2-D space is Dijkstra's algorithm which has a time complexity of O(N^2).

    • Other algorithms like A* and Bellman-Ford have better time complexity but still not O(log N).

    • If the points are on a grid, Lee algorithm can be used which has a time complexity of O(N).

  • Answered by AI
  • Q17. Design a system for putting newspapers using classes and functions taking different aspects into account
  • Ans. 

    Design a system for putting newspapers using classes and functions

    • Create a Newspaper class with attributes like title, date, and content

    • Create a Publisher class with methods to publish and distribute newspapers

    • Create a Subscriber class with methods to subscribe and receive newspapers

    • Use inheritance to create different types of newspapers like daily, weekly, etc.

    • Implement a database to store newspaper information and ha

  • Answered by AI
  • Q18. SQL commands
  • Q19. Career Prospects - Long Term Plans
  • Q20. Why not higher studies?
  • Ans. 

    I believe practical experience is more valuable than higher studies.

    • I have gained valuable experience through internships and projects.

    • I prefer hands-on learning and problem-solving over theoretical knowledge.

    • I am constantly learning and improving my skills through online courses and workshops.

  • Answered by AI
  • Q21. Machine Learning Concepts - Based on my projects

Interview Preparation Tips

Round: Test
Experience: All Computer Science Topics Covered: Data Structures, Algorithms, Object Oriented Systems, C, C++, Operating Systems, Computer Architectures, Databases, SQL, Basic Quantitative Aptitude
Tips: Solve all of them. Cut off's generally go high.
Duration: 30 minutes
Total Questions: 30

Round: Interview
Experience: Nice Experience. Interviewer was friendly. He wanted exact solutions.
Tips: Be thorough with everything and your projects.

Round: Interview
Experience: Nice Experience. Interviewer was friendly. He wanted exact solutions.
Tips: Be thorough with everything and your projects.

Round: Interview
Experience: Nice Experience. Interviewer was friendly.
Tips: Do not fake yourself.

General Tips: Be thorough with all CS related concepts and projects.
Skill Tips: ""Be thorough.""
Skills: Algorithms, Data Structures, Operating Systems, Machine Learning, SQL, Operating Systems, Computer Architecture, Data Analytics
College Name: IIT Kharagpur
Motivation: Kind of application oriented work and the rising nature of the company. Obviously money also.
Funny Moments: Many funny questions and answers like did you have lunch, when did you last eat, etc

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: The selections process started with a presentation by the company where they introduced you to the environment of the company. It was followed by a written subjective test which basically tested your programming skills. Questions were based on arrays, classes and OOP concepts. Last part of the paper was an essay asking about the city you live. Total 3 questions were asked which had to answered in 25 minutes time. Total no. of students appeared for the test was around 30.

Round: Technical Interview
Experience: After the test only 5 students were shortlisted for interview. Interview for each candidate began with a technical round where they asked us to pick one programming language we are comfortable with. I picked C++. They asked me very basic concepts example Function overloading, Operator overloading, 2-D array concepts other OOP concepts.

Round: HR Interview
Experience: It went very smooth for me. They asked me what I know about the company. Though i couldn't remembered much I told them two points and then smiled. Then they asked me to tell me about myself and our NITK campus. I answered that aptly. Then they started asking serious questions i.e. if I want to go for higher studies, why am I not joining ARMY (I told them my father is in armed forces). Then they asked me if I want to work in Chennai or Bangalore, I told them Bangalore and also the reason behind it. After that, it was a casual interaction and I became quite sure about my selection.

General Tips: I think one thing which matters the most is your self-confidence. Hard-work and dedication are very important of-course but it is your confidence that separates you from other individuals. Also for most of the interviews they do not ask very big concepts, they will assess you on basic concepts, how much you know about the subject. So, be it any language, have your basic concept clear first and while giving interviews speak confidently.
This was my first campus interview I got selected and I cleared it. So yes, I was in a little shock and surprise to clear the interview.
Also one thing I forgot to mention was that the pointer cut-off for this company was 7.5 while I had only 7.11. Still I got selected. It does not matters much how much pointer you have. What matters at last is how much thorough you are with the subject. Well till morning I was not even sure if I am sitting for this company and by I got placed.
Skill Tips: Though there are huge resources of materials lying online and market, don’t run in all directions. Choose one book and an online source and start preparing it.
In my case I studied Sumita Arora for C++ and it proved to be quite beneficial for me. Also solve aptitude questions for programming available online like indiabix.com. It provides a lot of help in understanding and applying your concepts and also for time limit.
For aptitude question the best book available is "Quantitative aptitude by Arun Sharma".
For C++ language focus mainly on OOPS concepts, its features and basic building blocks like arrays, pointers etc.

Skills:
College Name: NIT Surathkal

Software Engineer Interview Questions & Answers

Amadeus user image Varun Thopucherla

posted on 11 Mar 2015

Interview Questionnaire 

10 Questions

  • Q1. Tell about yourself?
  • Ans. 

    I am a software engineer with experience in developing web applications and mobile apps.

    • Proficient in programming languages such as Java, Python, and JavaScript

    • Experience in developing RESTful APIs and integrating third-party APIs

    • Familiarity with front-end frameworks such as React and Angular

    • Strong understanding of database management systems such as MySQL and MongoDB

    • Passionate about learning new technologies and keepi

  • Answered by AI
  • Q2. Why Software industry? why not core?
  • Ans. 

    Software industry offers endless opportunities for innovation and growth.

    • Software industry is constantly evolving and offers opportunities to work on cutting-edge technologies.

    • It provides a platform to solve complex problems and create innovative solutions.

    • The demand for software engineers is high and the industry offers competitive salaries.

    • Core industries may have limited scope for growth and innovation compared to s...

  • Answered by AI
  • Q3. Write a program to print the given string in reverse
  • Ans. 

    Program to print a given string in reverse

    • Create a character array of the given string

    • Loop through the array from end to start and print each character

  • Answered by AI
  • Q4. Some questions about computer networks and Digital electronics
  • Q5. What is Mux? what are its real life applications?
  • Ans. 

    Mux is a device that selects one of several input signals and forwards the selected input into a single output line.

    • Mux stands for Multiplexer.

    • It is used in digital circuits to select one of several input signals and forward the selected input into a single output line.

    • It is used in communication systems to combine multiple signals into a single channel for transmission.

    • It is used in video and audio systems to switch b...

  • Answered by AI
  • Q6. What is DeMux? what are its real life applications?
  • Ans. 

    DeMux is short for Demultiplexer. It is a digital circuit that takes one input and directs it to multiple outputs.

    • DeMux is used in digital communication systems to separate signals that have been combined for transmission.

    • It is also used in computer memory systems to select a specific memory location.

    • DeMux is used in video and audio systems to separate different channels of information.

    • It is used in automation systems ...

  • Answered by AI
  • Q7. Difference between decoder and Demux
  • Ans. 

    Decoder converts encoded data into a readable format while Demux separates a single input into multiple outputs.

    • Decoder is used to decode encoded data such as binary data into a readable format.

    • Demux is used to separate a single input into multiple outputs based on the control signals.

    • Decoder is a combinational circuit while Demux is a sequential circuit.

    • Decoder is used in applications such as remote controls, computer...

  • Answered by AI
  • Q8. Why amadeus labs?
  • Ans. 

    Amadeus Labs is a leading technology company in the travel industry.

    • Amadeus Labs provides opportunities to work on cutting-edge technologies.

    • The company has a strong focus on innovation and research.

    • Amadeus Labs has a global presence and offers a diverse and inclusive work environment.

    • Working at Amadeus Labs provides the opportunity to make a real impact on the travel industry.

    • The company values work-life balance and o

  • Answered by AI
  • Q9. Are you comfortable in working for Testing?
  • Ans. 

    Yes, I am comfortable working for Testing.

    • I have experience in testing and understand its importance in software development.

    • I am willing to learn new testing techniques and tools.

    • I am comfortable working with testing teams and collaborating with them to ensure quality software.

    • I understand the importance of testing in ensuring customer satisfaction and reducing costs.

    • Examples: I have experience in manual and automated...

  • Answered by AI
  • Q10. Why do you consider yourself suitable for developer role?
  • Ans. 

    I have the necessary skills and experience to excel in the developer role.

    • I have a degree in computer science and have completed multiple coding projects.

    • I am proficient in programming languages such as Java, Python, and C++.

    • I have experience working with databases and web development frameworks.

    • I am a quick learner and enjoy solving complex problems.

    • I am a team player and have collaborated with other developers on var

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The test was conducted online. All the questions were of medium standard and easy to crack if we have patience for thinking.

English comprehension level is slightly below the standard of CAT. Those who have the habit of reading English news paper can easily crack the test.

Data analysis questions were also of medium standard. Those who have knowledge about graphs, bar & pie charts can easily crack the exam.
Tips: Practice Aptitude questions from R S Agarwaal book and CAT material.

Round: Technical Interview
Experience: Over all interview experience is cool. Interviewers never grilled on anything. In many cases they have helped me to arrive at answers.
Tips: Read C++ and Oops concepts from E Balaguruswamy text book.
For Data structures and algorithms read 'Data structures' by Yeshwant kanethkar.
Minimum knowledge about all the courses of your department will be an added advantage. This will help you to depict you are sincere in your studies and don't have any personal constraints in learning a new thing.

General Tips: Just be confident and believe in yourself. You will get through.
Skills: Programming skill in C++
College Name: NIT Warangal
Motivation: No special motivation. It is a rapidly growing company offering good package.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Networking, Recording

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, be technically sound and crisp, be honest

eClinicalWorks Interview FAQs

How many rounds are there in eClinicalWorks Technical Support Engineer interview?
eClinicalWorks interview process usually has 2-3 rounds. The most common rounds in the eClinicalWorks interview process are Technical, Resume Shortlist and Group Discussion.
How to prepare for eClinicalWorks Technical Support Engineer 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 eClinicalWorks. The most common topics and skills that interviewers at eClinicalWorks expect are Java, MySQL, Networking, Communication Skills and SQL.
What are the top questions asked in eClinicalWorks Technical Support Engineer interview?

Some of the top questions asked at the eClinicalWorks Technical Support Engineer interview -

  1. How to do technical troubleshoot...read more
  2. What are vpns and work...read more
  3. What is telne...read more

Tell us how to improve this page.

eClinicalWorks Technical Support Engineer Interview Process

based on 4 interviews

1 Interview rounds

  • Technical Round
View more
eClinicalWorks Technical Support Engineer Salary
based on 126 salaries
₹3 L/yr - ₹10 L/yr
36% more than the average Technical Support Engineer Salary in India
View more details

eClinicalWorks Technical Support Engineer Reviews and Ratings

based on 24 reviews

3.6/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

3.8

Salary

3.8

Job security

3.3

Company culture

3.1

Promotions

3.0

Work satisfaction

Explore 24 Reviews and Ratings
Software Specialist
492 salaries
unlock blur

₹2 L/yr - ₹10.3 L/yr

Strategic Account Manager
222 salaries
unlock blur

₹3.2 L/yr - ₹11.5 L/yr

Project Manager
199 salaries
unlock blur

₹4.2 L/yr - ₹13 L/yr

Implementation Specialist
139 salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Technical Support Engineer
126 salaries
unlock blur

₹3 L/yr - ₹10 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