Upload Button Icon Add office photos

Filter interviews by

Oracle Cerner Software Developer Intern Interview Questions, Process, and Tips

Updated 16 Sep 2021

Oracle Cerner Software Developer Intern Interview Experiences

1 interview found

I was interviewed in Oct 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

This round was scheduled for 9am in the morning. The test environment was pretty good . I didn't face any issues on the HireVeu platform. The first test was of Aptitude and then in next section it was Technical MCQ's. The level of questions were mid to high level of difficulty.

  • Q1. DBMS Questions

    What is DML and DDL?
    Write an SQL query to print the FIRST_NAME from Worker table after replacing ‘a’ with ‘A’.
    Write an SQL query to print details of the Workers whose FIRST_NAME contains ‘a’.
    ...

  • Ans. 

    Tip 1: Do practice SQL Queries
    Tip 2: Read Database Normalisation and Transaction.
    Tip 3: Read Raghu Ram Krishnan thoroughly

  • Answered by CodingNinjas
Round 2 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

The exam was on the same Platform. The first question was about the most difficult Project I've worked on. I have to record a video in that particular platform and then move to the next questions. There was option for a demo video of 1 minute in which you can practice your answers and then can record your answer in the next video of max 5 minutes. The next 2 question were Coding Problems of moderate difficulty and you've to record your approach and then proceed towards solving the code and then record a video stating if you succeed or not and what better could you've done to make it work.

  • Q1. Sum Of N Digit Palindromes

    You are given an integer 'N'. Your task is to return the sum of all N-digit numbers which are palindrome. A number is said to be palindrome if the number formed by reve...

  • Ans. 

    Run a loop from 10^(n-1) to 10^(n) – 1 and check when the current number is palindrome or not. If it is, adds its value to answer.

  • Answered by CodingNinjas
Round 3 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

This round was scheduled for 3pm. The interviewer was quite friendly. He asked about me and told me to relax and then answer. He started with asking questions from my Project and how the ideas behind the Project. My Project was related to Deadlock So he asked whether I can implement my Project on any environment. I answered . Then one of my internship Project was related to Web development so He asked me about the backend of the Project. He gave me a few SQL queries and some general DBMS concepts based on the response about using Mysql in the Project. He asked me a few things about AWS and Cloud Computing which I answered. At last he asked some LINUX commands and corrected me once and was satisfied with my answers.

  • Q1. OS Questions

    1) What is Kernel?
    2) What is Deadlock?
    3) Why you use Binary semaphores instead of Counting Semaphores?
    4) What is threads? What is hardware thread?
    5) What is TLB?

  • Ans. 

    Tip 1 : Read Galvin for OS thoroughly
    Tip 2 : Practice MCQ's from GFG OS QUIZ Section

  • Answered by CodingNinjas
  • Q2. DBMS & Trees Questions

    1) Explain DDL VS DML.
    2) Explain Normalization
    3) B+ Trees and it's working.

  • Ans. 

    Tip 1 : Do practice SQL queries
    Tip 2 : Give answers to Normalisation questions with examples for each
    Tip 3 : Keep a paper with you while giving interview from home. Comes handy when I tried explaining B+ trees to him.

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Vellore Institute of Technology. I applied for the job as SDE - Intern in BangaloreEligibility criteria8.5 CGPACerner Corporation interview preparation:Topics to prepare for the interview - Data Structures, OOPS , Computer Networking , OS , SQL Queries , Cyber SecurityTime required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 5-7 Codes daily from the beginning of preparation.
Tip 2 : Be thoroughly prepared with concepts of Data Structure, Database and Operating System
Tip 3 : Always go through the Company's Job description and About the Company and prepare your answers according to that
Tip 4 : Only mention Projects that you've complete idea about.

Application resume tips for other job seekers

Tip 1 : Have a few Projects on your resume and make sure you know it all about your Projects.
Tip 2 : Only mention the Skills you feel you are confident about. Never lie on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via campus placement at Dayananda Sagar College of Engineering, Bangalore and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Coding Test 

3 coding dsa question
Difficulty is On your luck
My friends got easy level
I got medium level
Some got hard questions as well

Round 2 - Aptitude Test 

Ssh round , quant and logical
Tip: bring your calculator

Round 3 - Technical 

(3 Questions)

  • Q1. Two Puzzle : bulb switching and candle
  • Q2. Dsa questions such as string reverse, binary search
  • Q3. Dbms and os core subject questions
Round 4 - HR 

(2 Questions)

  • Q1. How are you better than others
  • Q2. Why should we hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are a girl, the interview rounds will be much easier for you as this company promotes diversity hiring.
The main differing factor is technical round interview which totally depends on the interviewer's mood .
Girls do get priority in this round, they are asked easier questions and will be selected if able to answer 60-70% of the questions.
Note:- it's not like they will hire any girl but a bit easier comparatively
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Hackerrank 3 questions were given of binary search dp and a math coding question

Round 2 - Technical 

(2 Questions)

  • Q1. Heap hard question
  • Q2. Nothing only one question was asked

Interview Preparation Tips

Interview preparation tips for other job seekers - I was not up to the mark

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Round 1  was a coding round of 60 min which started around 5:30PM in which 2 problem statements were given. The questions were based on Array and linked list. The platform used for test was coding which was user friendly and which use to display number of test cases passed and some test cases were hidden.

  • Q1. Deletion in Circular Linked List

    You are given a Circular Linked List of integers, and an integer, 'key'.

    You have to write a function that finds the given key in the list and deletes it. If no s...

  • Ans. Recursion

    The idea is to use a recursive approach to find the given key and then remove that node. The recursive idea is very clear that we will traverse through the circular linked list, and we will check if the value of the node is equal to the given key. 
     

    We will define a function deleteNodeHelper(root, key, head) to remove the key in which the head is the starting node of the linked list, and we will send ...

  • Answered by CodingNinjas
  • Q2. Move All Negative Numbers To Beginning And Positive To End

    You are given an array 'ARR' consisting of 'N' integers. You need to rearrange the array elements such that all negative numbers a...

  • Ans. Using Sorting

    Approach: A brute force approach could be to just sort the given array in ascending order. This will result in all negative numbers to appear at the beginning and positive number at the end.

    Space Complexity: O(1)Explanation:

    O(1)

     

    Because no extra space is required.

    Time Complexity: O(nlogn)Explanation:

    O(N*logN), where N is the number of elements in the array.

     

    In the worst case, sorting requires O...

  • Answered by CodingNinjas
Round 2 - Video Call 

(1 Question)

Round duration - 30-35 minutes
Round difficulty - Medium

This round was of technical interview and they asked me various concepts

  • Q1. Basic Interview Questions

    They given me 2 table containing names of different cities and told me to apply left join on them.

    1) Asked me about the Languages known. 
    2) OOPS concepts. 
    3) SQL concepts...

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Cummins College Of Engineering For Women, Nagpur. I applied for the job as SDE - Intern in PuneEligibility criteriaAbove 65% in 10th,12th, degreeWolters Kluwer interview preparation:Topics to prepare for the interview - Java, Data Structure, OPPS, SQL, SDLC, Networking, TestingTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Read well the job profile, company background and skill requirements and prepare accordingly. 
Tip 2 : Whatever topic you are preparing don't just study to finish the topic but study to understand it because interviewers often deep dive and ask questions, make sure you basics are getting cleared.
Tip 3 : Solve Aptitude questions, coding problems as much as possible.

Application resume tips for other job seekers

Tip 1 : Write optimal yet powerful summary. 
Tip 2 : Highlight your education,internships, projects, certifications.
Tip 3 : Do mention technologies in which you worked on in your internship, projects. 
Tip 4 : If you don't have any internship/project(any one will work fine but both are big plus) done go and get some work done and make your hands dirty and then put it in your resume. 
Tip 6 : Avoid writing long statements.
Tip 7 : Honesty is the best policy.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 150 minutes
Round difficulty - Medium

It was an online round consisting of 2 programming questions restricted to C++, Java, and C# and 10 MCQ's on Data structures, Algorithms, etc..

  • Q1. Prime Time Again

    You have been given two integers ‘DAY_HOURS’ and ‘PARTS’. Where ‘DAY_HOURS’ is the number of hours in a day and a day can be divided into ‘PARTS’ equal parts. Your task is to find total in...

  • Ans. Brute Force
    • This is a Naive/Brute Force approach
    • Create a 2-d array of size ‘P’ rows and ‘D/P’ columns and assign 1 to ‘D’ value in each cell.
    • Take an example with ‘D’ being 12 and ‘P’ being 2, then create an array [  [1,2,3,4,5,6]  [7,8,9,10,11,12]  ]
    • Keep track of the number of prime group instances using a ‘PRIME_GROUP’ variable, which would be initialized to 0.
    • We can easily observe that each column in th...
  • Answered by CodingNinjas
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. Puzzle

    There is a room with a door (closed) and three light bulbs. Outside the room, there are three switches, connected to the bulbs. You may manipulate the switches as you wish, but once you open the door...

  • Q2. Third greatest element

    Given an array/list 'ARR' of ‘N’ distinct integers, you are supposed to find the third largest element in the given array 'ARR'.

    Input Format :
    The first line conta...
  • Ans. Sorting Based Approach

    The idea is to sort the array in non-decreasing order, and then return the third element from the back of the array.

     

    The steps are as follows :

    1. Sort the array in non-decreasing order.
    2. Return the third element from the back of the array.
    Space Complexity: O(logn)Explanation:

    O(1)

     

    We are not using any extra space. Thus, the overall space complexity will be O(1).

    Time Complexity: O(nlogn)Explan...
  • Answered by CodingNinjas
  • Q3. OOPS Questions

    Basic concepts on OOPS was asked like:
    Friend Function
    Inheritance
    Polymorphism
    Abstraction
    Encapsulation.

Round 3 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. Technical Questions

    This round was mainly based on my Projects and Tech Stack I used in my Projects.

  • Q2. OOPS Questions

    Basic concepts of OOPS were asked like Inheritance, Polymorphism, Abstraction, and Encapsulation.

Round 4 - HR 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. Basic HR Questions

    What are your hobbies? or What are you passionate about? 

    What are your biggest achievements till date? 

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in HyderabadEligibility criteriaNo criteriaNCR Corporation interview preparation:Topics to prepare for the interview - OOPS, Aptitude, Data Structures, DBMS, Recursion, Dynamic Programming, PuzzlesTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice Data Structures and Algorithms.
Tip 2 : Practice Puzzles from GFG. 
Tip 3 : Should have good knowledge of OOPS.

Application resume tips for other job seekers

Tip 1 : Have some good projects on your resume.
Tip 2 : Do not anything false in your resume.
Tip 3 : Mention your coding profiles in your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Jan 2021.

Round 1 - Telephonic Call 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Easy

It was a telephonic round. The interview asked me these questions.
 

  • Q1. Puzzle

    You have two ropes coated in oil to help them burn. Each rope will take exactly 1 hour to burn all the way through. However, the ropes do not burn at constant rates—there are spots where they burn a ...

  • Q2. Technical Questions

    1. Dynamic memory allocation for 2d array
    2. How polymorphism works in C++(Vptr and Vtable implementation)
     

Round 2 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

The interviewer started asking me questions. He gave me 2 problems. He was giving hints in case of any issues.
 

  • Q1. Maximum Frequency Number

    Ninja is given an array of integers that contain numbers in random order. He needs to write a program to find and return the number which occurs the maximum times in the given inpu...

  • Ans. Brute Force Approach

    Here, we can simply run two loops. The outer loop picks all elements one by one and the inner loop finds the frequency of the picked element and compares it with the maximum present so far.

     

    Algorithm:

     

    • Declare 4 variables as ‘maxFrequency’ , ‘currentFrequency’ , ‘maxElement’ , ‘currentElement’ and initialize them with 0
    • Run a loop from ‘i’ = ‘0’ to ‘N’
      • Set ‘currentElement’ as arr[i] and ‘curr...
  • Answered by CodingNinjas
  • Q2. System Design Question

    There is an online catalog of songs (Like Saavn or Gaana). How you will show favorite songs every day to users. An efficient algorithm required. (K max solution/ Min heap solution)

Round 3 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This was a technical interview. He gave me these questions one by one.
1. Again, how polymorphism works. Draw vtable and vptr
2. Producer consumer problem with synchronization
3. Difference between mutex, semaphore, and condition_variable.
4. Design parking lot system
5. Zigzag traversal of binary tree

  • Q1. System Design Question

    Design parking lot system

  • Q2. Zigzag Binary Tree Traversal

    Given a binary tree, return the zigzag level order traversal of the nodes' values of the given tree. Zigzag traversal means starting from left to right, then right to left ...

  • Ans. Iterative Approach

    Our very basic intuition is that we are going to traverse the given binary tree using level order traversal where we just need to modify one thing that for every alternate level we need to reverse the order that level. 

     

    Steps are as follows:

     

    1. Create an empty queue.
    2. For each node, first, the node is visited and then it’s child nodes are added in the queue if they exist(First in first out).
    3. ...
  • Answered by CodingNinjas
Round 4 - Video Call 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

1. He asked about the producer-consumer problem but I told him that the same question is asked in the previous round.
Then interviewer went asking lots of questions related to producer and consumer. Lots of discussions like what is a writer is not there and the only reader is there and you need to find out how many readers are currently reading from the buffer.
2. Discussions about C++11 features. How thread and async is different
3. Design your own shared_ptr(How you will handle ownership)
4. Check If the binary tree is symmetrical.
5. Find elements in a rotated sorted array and then optimize it.

  • Q1. Tree Symmetricity

    You are given a binary tree, where the data present in each node is an integer. You have to find whether the given tree is symmetric or not.

    Symmetric tree is a binary tree, whose mirro...

  • Ans. Inorder And Reverse Inorder

    We do two inorder traversals recursively of the tree simultaneously. For the first traversal, we traverse the left child first and then the right child, and in the second traversal, we traverse the right child first and then the left child. Let cur1 and cur2 be the current nodes of the first and second traversals respectively and initially both of them are passed as root. Then the algorithm f...

  • Answered by CodingNinjas
  • Q2. Search In Rotated Sorted Array

    You have been given a sorted array/list ARR consisting of ‘N’ elements. You are also given an integer ‘K’.

    Now the array is rotated at some pivot point unknown to you. For ...

  • Ans. Naive Approach

    Naively traverse the array and find if ‘K’ is present in ARR or not. If ‘K’ is present in ARR return its index else return -1.

    Space Complexity: O(1)Explanation:

    O(1), i.e. constant space complexity. 

    Time Complexity: O(n)Explanation:

    O(N), where N is the length of the array/list. 

     

    We are iterating over the array/list ARR once. Hence, the time complexity is O(N).


    Java (SE 1.8)
    /*
    
    Time Compl...
  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in NoidaEligibility criteriaNo criteriaAdobe interview preparation:Topics to prepare for the interview - Data Structures, Computer Networks, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 12 MonthsInterview preparation tips for other job seekers

Tip 1 : Don't lie on your resume.
Tip 2 : Practice at least 400 different types of coding problems.
Tip 3 : Work on your communication skills.

Application resume tips for other job seekers

Tip 1 : Don't put false things on your resume.
Tip 2 : Mention some good projects on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 mintues
Round difficulty - Easy

Timing it is around 11 am and Environment is good .

  • Q1. Reverse Stack Using Recursion

    Reverse a given stack of integers using recursion.

    Note:

    You are not allowed to use any extra space other than the internal stack space used due to recursion.
    You are not a...
  • Ans. Recursive Approach

    We will be using two recursive methods:

    1. To Reverse the Stack: We will use recursion to iterate through the stack. For each top element, we will pop it and use recursion to reverse the remaining stack. After getting the stack reversed by recursion we can simply push the popped element to the bottom of the stack. The procedure to push the element at the bottom of stack is explained in following paragraph...
  • Answered by CodingNinjas
Round 2 - Face to Face 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Environment was very friendly but questions asked are very hard.

  • Q1. Maximum subarray

    Ninjas has been given an array. He wants to find a subarray such that the sum of all elements in the subarray is maximum.

    Subarray 'A' is greater than sub-array 'B' if su...

  • Ans. Brute Force Approach

    Our Brute force approach will figure out all the possible combinations possible. To find a subarray, we need to know both the starting point and the ending out of the array. We can make a loop that would iterate through the array. During each iteration, we will make another nested loop inside which will take all possible combinations where the starting index will be the pointer of the parent loop an...

  • Answered by CodingNinjas
  • Q2. Intersection of Linked List

    You are given two Singly Linked List of integers, which are merging at some node of a third linked list.

    Your task is to find the data of the node at which merging starts. If ...

  • Ans. Brute Force
    • For each node in the first list, traverse the entire second list
    • Check if any node in the second list coincides with the first list
      • If it does, return that node’s data
      • If it doesn’t, return -1
    Space Complexity: O(1)Explanation:

    O(1)

     

    Since we only use constant space.

    Time Complexity: O(m*n) - For 2d arraysExplanation:

    O(N * M), where N and M are the lengths of the first and second linked lists respectively.&n...

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in HyderabadEligibility criteriaAbove 5 CGPA[24]7.ai interview preparation:Topics to prepare for the interview - Linked List, Binary Search Tree ,Queue, Array ,DP ,Graph ,RecursionTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 500 Questions
Tip 2 : Do atleast 1 good projects
Tip 3 : You should be able to explain your project

Application resume tips for other job seekers

Tip 1 : Do not put false things on resume.
Tip 2 : Have some projects on resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Aug 2017.

Interview Preparation Tips

Round: Resume Shortlist
Experience: Resumes were shortlisted on the basis of pointer criteria(8.5 +)

Skills: Technical Skill And Speaking Skill, Technical Skill
College Name: Nit bhopal
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

3 coding question in 1:30 hr
2 medium + 1 hard
1- greedy
2- binary search, prefix sum
3- dp (too hard)

Round 2 - One-on-one 

(1 Question)

  • Q1. Low level design type question
Round 3 - One-on-one 

(1 Question)

  • Q1. Hiring manager round. Asked project related questions plus basic hr questions

Interview Preparation Tips

Interview preparation tips for other job seekers - confident, clear concept, project knowledge

I was interviewed in Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 150 Minutes
Round difficulty - Easy

2 programming questions restricted to C++, Java, and C#
10 MCQ's on Data structures, Algorithms, etc.

  • Q1. Partition a set into two subsets such that the difference of subset sums is minimum.

    You are given an array containing N non-negative integers. Your task is to partition this array into two subsets such th...

  • Ans. 

    The task is to partition an array into two subsets such that the absolute difference between subset sums is minimum.

    • Iterate through all possible subsets of the array

    • Calculate the sum of each subset

    • Find the minimum absolute difference between the subset sums

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 80 Minutes
Round difficulty - Medium

The round was conducted on FaceCode(HackerEarth) in the afternoon time. The OOPS features of CPP were asked. The SQL queries (Joins) were also asked. Two easy programming questions were asked - one array-based implementation and other one from the doubly linked list. Two puzzles were also asked. The interviewers were very nice and they gave me enough time to think about the solution.

  • Q1. Sort elements by frequency

    You are given a list of a repeated set of integers. Your task for the problem is to return a list of the given elements in decreasing sorted order of their frequency of repetitio...

  • Ans. 

    The task is to sort a list of integers based on their frequency of repetition, with the element with the highest frequency first.

    • Count the frequency of each element in the list using a dictionary.

    • Sort the elements based on their frequency in descending order.

    • If two elements have the same frequency, maintain their original order.

    • Return the sorted list.

  • Answered by AI
  • Q2. Reverse A Doubly Linked List

    You are given a doubly-linked list of size 'N', consisting of positive integers. Now your task is to reverse it and return the head to the modified list.

    Note:
    A doub...
  • Ans. 

    The task is to reverse a given doubly linked list and return the head of the modified list.

    • Create three pointers: prev, current, and next.

    • Iterate through the linked list and update the next and prev pointers for each node.

    • Finally, update the head pointer to the last node visited and return it as the head of the reversed list.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

In this round, I was asked simple questions from core subjects.
 

  • Q1. Technical Questions

    OS - Process Scheduling, Deadlock, Memory Management
    DBMS - Normalisation, Joins, Foreign key

  • Ans. 

    The question covers topics related to operating systems and database management systems.

    • Process scheduling in operating systems involves determining the order in which processes are executed.

    • Deadlock refers to a situation where two or more processes are unable to proceed because each is waiting for the other to release a resource.

    • Memory management in operating systems involves allocating and managing memory resources f...

  • Answered by AI
Round 4 - HR 

(1 Question)

Round duration - 10 Minutes
Round difficulty - Easy

It was in the evening on the same day after Techno Managerial round. HR asked me about my family background. 
 

  • Q1. Basic HR Questions

    1)Do you have friends? Why we have friends?
    2)Whether I have any other offer letters? 
    3)Do I have any issues relocating to Hyderabad?

    At last, he said I am selected and the company has...

  • Ans. 

    Answering basic HR questions in an interview for SDE - Intern position.

    • 1) Friends are important for social support, companionship, and emotional well-being.

    • 2) No other offer letters at the moment.

    • 3) No issues relocating to Hyderabad.

    • Selected for the position with an increased package from 7lpa to 8lpa.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in HyderabadEligibility criteriaFinal year student of B.Tech or B.E.NCR Corporation interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, C++, OOPS, Operating System, DBMS, Computer NetworkTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Competitive coding and good knowledge of Data Structures and Algorithms is important
Tip 2 : Have very good knowledge of atleast one Programming Language
Tip 3 : Do atleast 2 projects, having an internship in your resume will be bonus

Application resume tips for other job seekers

Tip 1 : Do not put false things, quantity is not important but the quality is. Have few things but you should have good knowledge of them.
Tip 2 : Keep it of 1 page with all the relevant details.

Final outcome of the interviewSelected

Skills evaluated in this interview

Tell us how to improve this page.

Oracle Cerner Software Developer Intern Reviews and Ratings

based on 2 reviews

1.2/5

Rating in categories

3.0

Skill development

2.1

Work-Life balance

2.1

Salary & Benefits

1.3

Job Security

1.2

Company culture

1.1

Promotions/Appraisal

3.0

Work Satisfaction

Explore 2 Reviews and Ratings
Software Engineer
1.1k salaries
unlock blur

₹5 L/yr - ₹15 L/yr

System Engineer
468 salaries
unlock blur

₹5 L/yr - ₹9.5 L/yr

Senior Software Engineer
428 salaries
unlock blur

₹6.7 L/yr - ₹25.9 L/yr

Automation Test Engineer
357 salaries
unlock blur

₹5.2 L/yr - ₹10 L/yr

Software Engineer II
301 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

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview