Upload Button Icon Add office photos

Oracle Cerner

Compare button icon Compare button icon Compare

Filter interviews by

Oracle Cerner Interview Questions and Answers

Updated 27 Jun 2025
Popular Designations

76 Interview questions

An Interface Engineer was asked 7mo ago
Q. Convert odd occurrences of 'is' to 'at' in a string.
Ans. 

Replace odd occurrences of 'is' with 'at' in a given string.

  • Identify occurrences of 'is' in the string.

  • Count each occurrence and track if it's odd or even.

  • Replace 'is' with 'at' only for odd occurrences.

  • Example: 'This is a test. Is this it?' becomes 'That at a test. Is that it?'

View all Interface Engineer interview questions
A Senior Technical Staff Member 1 was asked 7mo ago
Q. Given a binary tree, find its maximum depth (or height).
Ans. 

Height of a binary tree is the maximum number of edges on the longest path from the root node to a leaf node.

  • Height of an empty tree is -1

  • Height of a tree with only one node is 0

  • Height of a binary tree can be calculated recursively by finding the height of left and right subtrees and adding 1 to the maximum of the two heights

View all Senior Technical Staff Member 1 interview questions
A Senior Technical Staff Member 1 was asked 7mo ago
Q. Given a binary tree, print the top view of it. The top view of a binary tree is the set of nodes visible when the tree is viewed from the top. Assume that the left and right child of a node make a 45-degree...
Ans. 

A top view of a binary tree shows the nodes visible when looking at the tree from the top.

  • The top view of a binary tree is the set of nodes visible when looking at the tree from the top.

  • Nodes at the same horizontal distance from the root are considered at the same level.

  • Use a map to store the horizontal distance of each node and only keep the first node encountered at each horizontal distance.

View all Senior Technical Staff Member 1 interview questions
A Senior Technical Staff Member 1 was asked 7mo ago
Q. Explain the internal workings of a hashmap.
Ans. 

HashMap is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values based on keys.

  • HashMap internally uses an array of linked lists to store key-value pairs.

  • When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.

  • If multiple keys hash to the same index, a linked list is used to handle collisions.

  • To retrieve a value, the key is...

View all Senior Technical Staff Member 1 interview questions
A Senior Technical Staff Member 1 was asked 7mo ago
Q. Given an array of strings, return all groups of strings that are anagrams.
Ans. 

Find anagrams from a string array

  • Iterate through each string in the array

  • Sort the characters of each string to create a key for comparison

  • Use a hashmap to group anagrams together

  • Return the grouped anagrams as arrays

View all Senior Technical Staff Member 1 interview questions
A Software Engineer was asked 7mo ago
Q. Have you worked on AWS technology?
Ans. 

Yes, I have experience working with AWS technology.

  • I have worked on deploying applications on AWS EC2 instances.

  • I have experience setting up and managing AWS S3 buckets for storing data.

  • I have used AWS Lambda functions for serverless computing.

  • I have configured and managed AWS RDS for database hosting.

View all Software Engineer interview questions
A Softwaretest Engineer was asked 7mo ago
Q. Describe a real-life scenario for testing a web application.
Ans. 

Testing a web application for an online shopping platform

  • Testing the functionality of adding items to the cart and checking out

  • Testing the payment gateway integration for secure transactions

  • Testing the search functionality to ensure accurate results are displayed

  • Testing the responsiveness of the website on different devices and browsers

View all Softwaretest Engineer interview questions
Are these interview questions helpful?
A Softwaretest Engineer was asked 7mo ago
Q. What is the importance of manual testing compared to automation testing?
Ans. 

Manual testing is important for exploratory testing, usability testing, and ad-hoc testing.

  • Manual testing allows for exploratory testing where testers can explore the application and identify unexpected issues.

  • Usability testing, which involves real users interacting with the software, is best done manually to capture user experience.

  • Ad-hoc testing, where testers randomly test the application without predefined tes...

View all Softwaretest Engineer interview questions
A Software Engineer was asked 8mo ago
Q. What is big data?
Ans. 

Big data refers to large volumes of structured and unstructured data that is too complex for traditional data processing applications.

  • Big data involves processing and analyzing large volumes of data to uncover patterns, trends, and insights.

  • It can come from various sources such as social media, sensors, devices, and business transactions.

  • Examples of big data technologies include Hadoop, Spark, and NoSQL databases.

  • ...

View all Software Engineer interview questions
A Product Owner was asked 12mo ago
Q. How do you manage the requirements?
Ans. 

I manage requirements by prioritizing, documenting, and communicating effectively with stakeholders.

  • Prioritize requirements based on business value and impact

  • Document requirements clearly using user stories, acceptance criteria, and wireframes

  • Communicate effectively with stakeholders to ensure alignment and understanding

View all Product Owner interview questions

Oracle Cerner Interview Experiences

162 interviews found

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

(2 Questions)

  • Q1. Internal working of hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values based on keys.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.

    • If multiple keys hash to the same index, a linked list is used to handle collisions.

    • To retrieve a value, the key is hash...

  • Answered by AI
  • Q2. Find Anagram from string array
  • Ans. 

    Find anagrams from a string array

    • Iterate through each string in the array

    • Sort the characters of each string to create a key for comparison

    • Use a hashmap to group anagrams together

    • Return the grouped anagrams as arrays

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

(2 Questions)

  • Q1. Top view of binary Tree
  • Ans. 

    A top view of a binary tree shows the nodes visible when looking at the tree from the top.

    • The top view of a binary tree is the set of nodes visible when looking at the tree from the top.

    • Nodes at the same horizontal distance from the root are considered at the same level.

    • Use a map to store the horizontal distance of each node and only keep the first node encountered at each horizontal distance.

  • Answered by AI
  • Q2. Java based questions
Round 3 - One-on-one 

(2 Questions)

  • Q1. Hight of binary tree
  • Ans. 

    Height of a binary tree is the maximum number of edges on the longest path from the root node to a leaf node.

    • Height of an empty tree is -1

    • Height of a tree with only one node is 0

    • Height of a binary tree can be calculated recursively by finding the height of left and right subtrees and adding 1 to the maximum of the two heights

  • Answered by AI
  • Q2. Garbage Collector
Round 4 - One-on-one 

(1 Question)

  • Q1. Library Management System

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Software Testing
  • Q2. Application based QA questions
Round 2 - Technical 

(2 Questions)

  • Q1. Software testing, QA and Resume based questions
  • Q2. Automation and programming related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well
Instead of going in depth, focus on a basic and primary questions and be thorough on it
Know everything mentioned in the resume
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the importance of manual testing when compared to automation testing
  • Ans. 

    Manual testing is important for exploratory testing, usability testing, and ad-hoc testing.

    • Manual testing allows for exploratory testing where testers can explore the application and identify unexpected issues.

    • Usability testing, which involves real users interacting with the software, is best done manually to capture user experience.

    • Ad-hoc testing, where testers randomly test the application without predefined test cas...

  • Answered by AI
  • Q2. Real life scenario on web application testing
  • Ans. 

    Testing a web application for an online shopping platform

    • Testing the functionality of adding items to the cart and checking out

    • Testing the payment gateway integration for secure transactions

    • Testing the search functionality to ensure accurate results are displayed

    • Testing the responsiveness of the website on different devices and browsers

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If some one want to apply any of the job in this company then please do have some experience even though they mentioned for freshers bsc, however you do your interview as best as possible at last they gonna reject bsc of lack of experience. Same happened to me.So plzz only attened any Oracle company interview if you have experience.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Linkedlist , array, stack
  • Q2. What is big data

Skills evaluated in this interview

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

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Citrix Admin questions
  • Q2. Network DHCP Questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Rest Apis questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Core java and OOPS and LLD

Interview Preparation Tips

Interview preparation tips for other job seekers - Good understanding of Core language and its framework
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. React based question
  • Q2. Auto complete component
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Clear and general to the point questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic why you are leaving your previous job
  • Q2. What are you looking for
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectation
  • Q2. Basic about your background details earlier experience
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Moderate level questions on java

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on promises
  • Q2. Basic js questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There were 6 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 2 DSA questions
Round 2 - Technical 

(1 Question)

  • Q1. Half an hour of behavioral questions and 1 DSA question
Round 3 - Behavioral 

(1 Question)

  • Q1. One hour discussion of the work that I have done till now
Round 4 - Technical 

(1 Question)

  • Q1. 1 Hard DSA question
Round 5 - Technical 

(1 Question)

  • Q1. 1 Hard DSA question
Round 6 - Technical 

(1 Question)

  • Q1. Design round for HLD
  • Ans. 

    Design a High-Level Design (HLD) for a scalable online bookstore application.

    • Identify key components: User interface, backend services, database, and payment gateway.

    • Use microservices architecture for scalability: Separate services for user management, inventory, and orders.

    • Implement a RESTful API for communication between frontend and backend.

    • Consider using a cloud provider for hosting and scalability, e.g., AWS or Az...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for high level DSA questions

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Oracle Cerner?
Ask anonymously on communities.

Oracle Cerner Interview FAQs

How many rounds are there in Oracle Cerner interview?
Oracle Cerner interview process usually has 2-3 rounds. The most common rounds in the Oracle Cerner interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for Oracle Cerner 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 Oracle Cerner. The most common topics and skills that interviewers at Oracle Cerner expect are Healthcare, Computer science, Information Technology, SQL and Troubleshooting.
What are the top questions asked in Oracle Cerner interview?

Some of the top questions asked at the Oracle Cerner interview -

  1. What was the cost price? How much apples are needed by seller for whole day if ...read more
  2. What is the difference between a hardworker and a smartwork...read more
  3. 1. What is the difference between post 8.2 and pre 8.2 versions firewall 2. ...read more
What are the most common questions asked in Oracle Cerner HR round?

The most common HR questions asked in Oracle Cerner interview are -

  1. Why are you looking for a chan...read more
  2. Where do you see yourself in 5 yea...read more
  3. What is your family backgrou...read more
How long is the Oracle Cerner interview process?

The duration of Oracle Cerner interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 115 interview experiences

Difficulty level

Easy 20%
Moderate 77%
Hard 3%

Duration

Less than 2 weeks 59%
2-4 weeks 32%
4-6 weeks 4%
6-8 weeks 1%
More than 8 weeks 3%
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 894 Interviews
Amdocs Interview Questions
3.7
 • 532 Interviews
Adobe Interview Questions
3.9
 • 247 Interviews
Salesforce Interview Questions
4.0
 • 234 Interviews
Chetu Interview Questions
3.3
 • 198 Interviews
24/7 Customer Interview Questions
3.5
 • 179 Interviews
Dassault Systemes Interview Questions
3.9
 • 177 Interviews
AVASOFT Interview Questions
2.8
 • 174 Interviews
Freshworks Interview Questions
3.5
 • 171 Interviews
View all

Oracle Cerner Reviews and Ratings

based on 1.4k reviews

3.6/5

Rating in categories

3.2

Skill development

4.0

Work-life balance

3.2

Salary

3.6

Job security

3.6

Company culture

2.7

Promotions

3.3

Work satisfaction

Explore 1.4k Reviews and Ratings
Software Engineer
1k salaries
unlock blur

₹5 L/yr - ₹15.5 L/yr

System Engineer
430 salaries
unlock blur

₹5 L/yr - ₹10 L/yr

Senior Software Engineer
382 salaries
unlock blur

₹12.7 L/yr - ₹21.4 L/yr

Automation Test Engineer
353 salaries
unlock blur

₹5 L/yr - ₹10 L/yr

Software Engineer II
302 salaries
unlock blur

₹8 L/yr - ₹13.5 L/yr

Explore more salaries
Compare Oracle Cerner with

Siemens

4.0
Compare

Oracle

3.7
Compare

Amdocs

3.7
Compare

Automatic Data Processing (ADP)

4.0
Compare
write
Share an Interview