Upload Button Icon Add office photos

Filter interviews by

Oracle Cerner Mern Full Stack Developer Interview Questions and Answers

Updated 18 Oct 2023

Oracle Cerner Mern Full Stack Developer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in Apr 2023. 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 - Technical 

(1 Question)

  • Q1. Questions from JavaScript, React and Node. 1st round. 2 coding questions on String and Array. Questions on Past employment experiece.
Round 3 - Technical 

(2 Questions)

  • Q1. Event Loop, SQL queries. 2 coding questions on Array and Strings.
  • Q2. JavaScript and Node questions
Round 4 - HR 

(1 Question)

  • Q1. Why Oracle Cerner etc....

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare on medium leetcode and theory questions on javascript, node and react

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Very basic top 50 questions on internet, basic java, inheritance, oops, solid, collections
  • Q2. Diff between abstract and interface, method overloading, overriding, microservices, how do microservice communicate
  • Ans. 

    Abstract class is a class that cannot be instantiated, while an interface is a blueprint of a class with only abstract methods.

    • Abstract class cannot be instantiated, but can have both abstract and non-abstract methods.

    • Interface can only have abstract methods and cannot have method implementations.

    • Method overloading is having multiple methods in the same class with the same name but different parameters.

    • Method overridin...

  • Answered by AI
  • Q3. Spring boot annotations, DI, hibernate, bean scopes
  • Q4. Fibonacci series print

Interview Preparation Tips

Interview preparation tips for other job seekers - HR is very rude, they want to schedule interview in same day within 1 hour of notice. they just want to complete their daily interview list i guess. because interview was so so easy, just top 50 java interview questions on internet. but they just rejected after 5 mins of finishing interview.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. Singliton class
  • Q2. Immutable class
  • Q3. Most occured letter in string ? Problem to code
  • Ans. 

    Find the most occurred letter in a given string.

    • Iterate through the string and count the occurrences of each letter

    • Store the counts in a map or array

    • Find the letter with the highest count

  • Answered by AI
  • Q4. Global exception handler ?
  • Q5. Design principle?
  • Ans. 

    Design principle is a set of guidelines that help software developers create maintainable and scalable code.

    • Design principles help in creating code that is easy to understand, modify, and maintain.

    • Examples of design principles include SOLID principles, DRY (Don't Repeat Yourself), KISS (Keep It Simple, Stupid), and YAGNI (You Aren't Gonna Need It).

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare with basic terms.

Skills evaluated in this interview

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

Few coding tasks asked like palindrome number
Factorial
Basic concept tests based on DSA
Like prove that set is unordered

Round 2 - One-on-one 

(1 Question)

  • Q1. If a glass is started filling with water by 1ml at 0sec and gets doubled at every successive second, at what second the glass is half full
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. Questions about Nestjs, React and AI
  • Q2. Singlet pattern of NestJS
  • Ans. 

    Singleton pattern in NestJS ensures a class has only one instance and provides a global point of access to it.

    • Use the @Injectable() decorator to mark a class as a singleton in NestJS.

    • Inject the singleton class into other classes using the constructor.

    • The instance of the singleton class will be shared across the application.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response
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 

Java assessment with core java mcq, coding and text answers

Round 3 - Technical 

(2 Questions)

  • Q1. Technical interview on java and resume based questions with some riddles
  • Q2. Technical questions
Round 4 - HR 

(1 Question)

  • Q1. Managerial round
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Project, Oops Concept, Java , which technology u have used ? Framework
  • Q2. Framework, Explain Long Polling ,
  • Ans. 

    Long polling is a web technique where the client sends a request to the server and the server holds the connection open until new data is available.

    • Long polling is a variation of the traditional polling technique where the client sends a request to the server and the server keeps the connection open until new data is available.

    • It is often used in web applications to simulate real-time updates without the need for const...

  • Answered by AI
  • Q3. GraphQL Vs Rest
  • Ans. 

    GraphQL is a query language for APIs that allows clients to request only the data they need, while REST is an architectural style for designing networked applications.

    • GraphQL allows clients to request specific data in a single request, reducing over-fetching and under-fetching of data.

    • REST uses multiple endpoints for different resources, leading to multiple requests for related data.

    • GraphQL provides a strongly typed sc...

  • Answered by AI

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Oct 2021. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

Binary tree fin the no of leaf node

  • Q1. System design on Netflix
  • Ans. 

    System design for Netflix

    • Use microservices architecture

    • Implement a distributed caching system

    • Utilize content delivery networks (CDNs)

    • Implement recommendation algorithms

    • Ensure high availability and fault tolerance

    • Implement user authentication and authorization

    • Handle large-scale data storage and processing

    • Implement efficient search functionality

  • Answered by AI
  • Q2. Talk about hld design
  • Ans. 

    HLD design refers to high-level design, which involves creating an architectural blueprint for a software system.

    • HLD design focuses on the overall structure and components of a system.

    • It includes defining the system's modules, interfaces, and interactions.

    • HLD design helps in understanding the system's functionality and how different components work together.

    • It provides a roadmap for the development process and helps in...

  • Answered by AI
  • Q3. Talk aboit lld design
  • Q4. Da algo for queue

Skills evaluated in this interview

I applied via Company Website and was interviewed in Dec 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is LinkedList ?
  • Ans. 

    LinkedList is a linear data structure where each element is a separate object with a pointer to the next element.

    • LinkedList is a collection of nodes that contain data and a reference to the next node.

    • It allows dynamic memory allocation and efficient insertion/deletion of elements.

    • Traversal in LinkedList is slower than arrays as it requires sequential access.

    • Examples include Singly LinkedList, Doubly LinkedList, and Cir

  • Answered by AI
  • Q2. Explain stack and queue
  • Ans. 

    Stack is a data structure that follows LIFO (Last In First Out) principle. Queue is a data structure that follows FIFO (First In First Out) principle.

    • Stack is like a stack of plates where the last plate added is the first one to be removed

    • Push and pop operations are used to add and remove elements from the stack

    • Examples of stack include browser history, undo-redo operations

    • Queue is like a queue of people waiting in lin...

  • Answered by AI
  • Q3. Binary tree

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare Ds Algo & System design

Skills evaluated in this interview

Oracle Cerner Interview FAQs

How many rounds are there in Oracle Cerner Mern Full Stack Developer interview?
Oracle Cerner interview process usually has 4 rounds. The most common rounds in the Oracle Cerner interview process are Technical, HR and Resume Shortlist.
What are the top questions asked in Oracle Cerner Mern Full Stack Developer interview?

Some of the top questions asked at the Oracle Cerner Mern Full Stack Developer interview -

  1. Why Oracle Cerner etc....read more
  2. Questions from JavaScript, React and Node. 1st round. 2 coding questions on St...read more
  3. Event Loop, SQL queries. 2 coding questions on Array and Strin...read more

Tell us how to improve this page.

Oracle Cerner Mern Full Stack Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Cognizant Interview Questions
3.8
 • 5.6k Interviews
Amdocs Interview Questions
3.8
 • 530 Interviews
Salesforce Interview Questions
4.1
 • 271 Interviews
Adobe Interview Questions
4.0
 • 249 Interviews
24/7 Customer Interview Questions
3.5
 • 175 Interviews
Globant Interview Questions
3.9
 • 169 Interviews
Chetu Interview Questions
3.3
 • 166 Interviews
Dassault Systemes Interview Questions
4.0
 • 158 Interviews
View all
Software Engineer
1.1k salaries
unlock blur

₹5 L/yr - ₹10.2 L/yr

System Engineer
458 salaries
unlock blur

₹5 L/yr - ₹9.5 L/yr

Senior Software Engineer
419 salaries
unlock blur

₹6.7 L/yr - ₹26.1 L/yr

Automation Test Engineer
359 salaries
unlock blur

₹5.2 L/yr - ₹10 L/yr

Software Engineer II
300 salaries
unlock blur

₹7.5 L/yr - ₹13.3 L/yr

Explore more salaries
Compare Oracle Cerner with

Siemens

4.1
Compare

Veradigm

4.1
Compare

McKesson

4.5
Compare

Siemens Healthineers

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