Upload Button Icon Add office photos

Oracle Cerner

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Oracle Cerner SDE-2 Interview Questions, Process, and Tips

Updated 24 Feb 2022

Oracle Cerner SDE-2 Interview Experiences

1 interview found

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 24 Feb 2022

Round 1 - Technical 

(4 Questions)

  • Q1. What is React Context?
  • Ans. 

    React Context is a feature in React that allows data to be passed down the component tree without having to pass props manually.

    • Context provides a way to share values like themes, user data, etc. across the component tree.

    • It avoids prop drilling, where props are passed down multiple levels to reach a component that needs them.

    • Context consists of two parts: a Provider component that provides the data and a Consumer comp...

  • Answered by AI
  • Q2. What is meant by closure in javascript?
  • Ans. 

    Closure is a function that has access to its parent scope, even after the parent function has closed.

    • Closure is created when a function is defined inside another function.

    • The inner function has access to the outer function's variables and parameters.

    • The outer function returns the inner function, which can be called later with the parent scope still accessible.

    • Closures are used for data privacy, event handlers, and call

  • Answered by AI
  • Q3. What are the complicated tasks you've done exceeding everyone's expectation?
  • Q4. Algorithm to convert roman numeral to numbers?
  • Ans. 

    Algorithm to convert roman numeral to numbers

    • Create a dictionary to map roman numerals to their corresponding values

    • Iterate through the roman numeral string from right to left

    • If the current value is less than the previous value, subtract it from the total

    • If the current value is greater than or equal to the previous value, add it to the total

    • Return the total

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. What is React context?
  • Ans. 

    React context is a way to pass data through the component tree without having to pass props down manually at every level.

    • Context provides a way to share values like a theme or user data across the component tree.

    • It avoids prop drilling and makes the code cleaner and more maintainable.

    • Context consists of two parts: a Provider component that provides the data and a Consumer component that consumes the data.

    • Context can be...

  • Answered by AI
  • Q2. What is abstract class in javascript?
  • Ans. 

    There is no abstract class in JavaScript.

    • JavaScript does not have a built-in abstract class concept.

    • However, it is possible to create abstract classes using functions and prototypes.

    • Abstract classes are used as blueprints for other classes to inherit from.

    • They cannot be instantiated on their own and must be extended by a subclass.

    • Abstract methods can be defined in the abstract class and must be implemented in the subcl

  • Answered by AI
  • Q3. What is meant by function overloading and function overriding?
  • Ans. 

    Function overloading is when multiple functions have the same name but different parameters. Function overriding is when a subclass provides its own implementation of a method that is already present in the parent class.

    • Function overloading is used to provide multiple ways to call a function with different parameters.

    • Function overriding is used to provide a specific implementation of a method in a subclass.

    • Function ove...

  • Answered by AI
  • Q4. Implement counter in react app
  • Ans. 

    Implement a counter in a React app

    • Create a state variable to hold the count

    • Render the count in the UI

    • Add buttons to increment and decrement the count

    • Update the state variable on button click

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic concepts in js was asked. JS classes questions was also asked

Skills evaluated in this interview

Interview questions from similar companies

I was interviewed before Mar 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

10 Aptitude questions with difficulty level hard were asked in this test.

  • Q1. What is the minimum number of planes required to go around the world?
  • Ans. 

    The minimum number of planes required to go around the world is one.

    • One plane can fly around the world without needing to stop.

    • The plane can refuel mid-air or carry enough fuel for the entire journey.

    • Examples: Non-stop flights like the Boeing 787 Dreamliner or Airbus A350 can circumnavigate the globe with one plane.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round with questions based on data structures and algorithms. Questions about previous projects done and my roles on it and my leadership capabilities. Few technical questions from Threads and multi-processing.

  • Q1. 

    Search in a Row-wise and Column-wise Sorted Matrix Problem Statement

    You are given an N * N matrix of integers where each row and each column is sorted in increasing order. Your task is to find the positi...

  • Ans. 

    Given a sorted N * N matrix, find the position of a target integer 'X'.

    • Start from the top-right corner of the matrix and compare the target with the element at that position.

    • Based on the comparison, move left or down in the matrix to narrow down the search.

    • Repeat the process until the target is found or the search goes out of bounds.

    • Return the position of the target if found, else return {-1, -1}.

  • Answered by AI
  • Q2. 

    Rectangular Numbers Problem Statement

    Ninja has a number 'N'. Your task is to generate a pattern where the outer rectangle is filled with the number 'N', and as you move inward, the numbers decrease conse...

  • Ans. 

    Generate a pattern with outer rectangle filled with number 'N' and decreasing consecutively inward.

    • Start by filling the outermost rectangle with the number 'N'.

    • Decrease the numbers consecutively as you move inward towards the center.

    • Continue this pattern until you reach the center of the rectangle.

  • Answered by AI
Round 3 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

DSA based questions were asked in this round. Questions on implementation of Linux directory structure were also asked.

  • Q1. 

    Binary Array Sorting Problem Statement

    You are provided with a binary array, i.e., an array containing only 0s and 1s. Your task is to sort this binary array and return it after sorting.

    Input:

     The fir...
  • Ans. 

    Yes, the binary array sorting problem can be solved in linear time and constant space using a single traversal.

    • Use two pointers approach to swap 0s to the left and 1s to the right.

    • Maintain two pointers, one for 0s and one for 1s, and swap elements accordingly.

    • Example: Input: [1, 0, 1, 0, 1], Output: [0, 0, 1, 1, 1]

  • Answered by AI
  • Q2. 

    Next Greater Element Problem Statement

    You are given an array arr of length N. For each element in the array, find the next greater element (NGE) that appears to the right. If there is no such greater ele...

  • Ans. 

    The task is to find the next greater element for each element in an array to its right, if no greater element exists, return -1.

    • Iterate through the array from right to left and use a stack to keep track of elements.

    • Pop elements from the stack until a greater element is found or the stack is empty.

    • Store the next greater element for each element in the output array.

  • Answered by AI
  • Q3. What is the difference between Binary Search Trees (BST) and Tries?
  • Ans. 

    BST is a binary tree structure where each node has at most two children, while Tries are tree structures used for storing strings.

    • BST is used for searching, inserting, and deleting elements in a sorted manner.

    • Tries are used for storing and searching strings efficiently.

    • BST has a hierarchical structure with left and right child nodes.

    • Tries have nodes representing characters, forming a tree-like structure for strings.

    • Exa...

  • Answered by AI
Round 4 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical round. Questions about previous projects and current one were asked. I was also asked about aptitude problems from the first round and how I understood and approached towards solution?

  • Q1. 

    N Queens Problem

    Given an integer N, find all possible placements of N queens on an N x N chessboard such that no two queens threaten each other.

    Explanation:

    A queen can attack another queen if they ar...

  • Ans. 

    The N Queens Problem involves finding all possible placements of N queens on an N x N chessboard without threatening each other.

    • Use backtracking algorithm to explore all possible configurations.

    • Keep track of rows, columns, and diagonals to ensure queens do not threaten each other.

    • Generate valid configurations recursively and backtrack when a solution is not possible.

  • Answered by AI
  • Q2. 

    Form a Triangle Problem Statement

    You are provided with an integer array/list ARR of length N. Your task is to determine if it is possible to construct at least one non-degenerate triangle using the value...

  • Ans. 

    Check if it is possible to form a non-degenerate triangle using the sides provided in the array.

    • Check if the sum of any two sides is greater than the third side for all combinations.

    • If any such combination exists, return true; otherwise, return false.

    • Handle multiple test cases as per the constraints provided.

  • Answered by AI
Round 5 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Behavioral questions and team skills were discussed in this round.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAAthenahealth interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Sep 2016.

Interview Questionnaire 

4 Questions

  • Q1. Tell me about the Summer Project
  • Ans. 

    Developed a web application for tracking student attendance and performance

    • Used React.js for front-end development

    • Implemented RESTful APIs using Node.js and Express for back-end

    • Utilized MongoDB for database storage

    • Integrated authentication and authorization features for secure access

  • Answered by AI
  • Q2. Questions on Sql Dbms Java C
  • Q3. Basic Programming Question
  • Q4. Questions on hobbies and CV related

Interview Preparation Tips

Round: Technical Interview
Experience: Use diagrams to describe your project and the interviewer should fully understand your project
Tips: Be Clear and say things which you know

Round: HR Interview
Experience: She asked me about everything related to my hobbies.
Tips: Don't lie about your Interests and Hobbies in CV. Know everything there is to know about the hobbies which you have specified.

Skills: C Programming, Java Programming, SQL, Basic Knowledge Of DBMS, Problem Solving Abilties
College Name: BP Poddar Institute OF Management & Technology

I was interviewed before Jun 2016.

Interview Preparation Tips

Round: Video interview
Experience: Tell about why to join cognizant

Skills: Communication Networks, Communication

Interview Questionnaire 

16 Questions

  • Q1. Tell me something about yourself
  • Ans. 

    I am a passionate software engineer with experience in developing web applications using various technologies.

    • Experienced in developing web applications using HTML, CSS, JavaScript, and frameworks like React and Angular

    • Proficient in backend development with Node.js and databases like MongoDB and MySQL

    • Familiar with version control systems like Git and deployment tools like Docker

    • Strong problem-solving skills and ability

  • Answered by AI
  • Q2. What are your hobbies?
  • Ans. 

    My hobbies include hiking, playing guitar, and reading science fiction novels.

    • Hiking in local trails and national parks

    • Playing acoustic and electric guitar in a band

    • Reading books by authors like Isaac Asimov and Philip K. Dick

  • Answered by AI
  • Q3. Why cognizant over other companies?
  • Ans. 

    Cognizant offers diverse projects, global exposure, and a strong focus on employee growth and development.

    • Cognizant provides opportunities to work on diverse projects, allowing for a broad range of experience.

    • The company has a global presence, offering exposure to different cultures and markets.

    • Cognizant emphasizes employee growth and development through training programs and career advancement opportunities.

  • Answered by AI
  • Q4. Why engineering?
  • Ans. 

    Engineering allows me to solve complex problems, innovate, and create solutions that have a real impact on society.

    • Engineering provides a platform to apply scientific knowledge to practical problems.

    • It involves critical thinking, problem-solving, and creativity.

    • Engineers have the opportunity to work on cutting-edge technologies and make a tangible difference in the world.

    • For example, designing software systems to impro...

  • Answered by AI
  • Q5. Draw pin diagram of 8085 microprocessor
  • Ans. 

    Pin diagram of 8085 microprocessor

    • 8085 has 40 pins in total

    • Pins are grouped into 5 categories: power supply, address bus, data bus, control and status signals

    • Pin 1 is the reset pin, Pin 40 is the Vcc pin

    • Examples of control signals: RD, WR, ALE, INT, HOLD

    • Examples of status signals: S0, S1, IO/M, HLDA

  • Answered by AI
  • Q6. Difference between 8085 and 8086 microprocessor
  • Ans. 

    8086 is an advanced version of 8085 with more features and capabilities.

    • 8086 has a 16-bit data bus while 8085 has an 8-bit data bus.

    • 8086 has more registers than 8085.

    • 8086 has a higher clock speed than 8085.

    • 8086 supports virtual memory while 8085 does not.

    • 8086 has a more advanced instruction set than 8085.

    • Example: 8086 can perform multiplication and division operations while 8085 cannot.

  • Answered by AI
  • Q7. What is opamp?
  • Ans. 

    Opamp stands for operational amplifier. It is an electronic device used to amplify and process signals.

    • Opamps have high gain and can amplify signals to a very high degree.

    • They are commonly used in audio amplifiers, filters, and signal processing circuits.

    • Opamps have two input terminals and one output terminal.

    • They can be configured in different ways to perform various functions such as amplification, filtering, and osc...

  • Answered by AI
  • Q8. What are different phases of waterfall model?
  • Ans. 

    Waterfall model has five phases: requirements, design, implementation, testing, and maintenance.

    • Requirements phase: gathering and documenting requirements

    • Design phase: creating a detailed design based on requirements

    • Implementation phase: coding and integrating components

    • Testing phase: verifying that the system meets requirements

    • Maintenance phase: making changes and updates to the system

    • Example: building a website using...

  • Answered by AI
  • Q9. Types of testing
  • Ans. 

    Types of testing include unit, integration, system, acceptance, regression, performance, and security testing.

    • Unit testing: testing individual units or components of the software

    • Integration testing: testing how different units or components work together

    • System testing: testing the entire system as a whole

    • Acceptance testing: testing to ensure the software meets the requirements and is ready for release

    • Regression testing...

  • Answered by AI
  • Q10. Practical question related to normalization and its theory
  • Q11. What extra curricular activities you are interested in?
  • Ans. 

    I enjoy participating in coding competitions, volunteering at tech events, and attending hackathons.

    • Participating in coding competitions such as Codeforces or Topcoder

    • Volunteering at tech events like hackathons or coding workshops

    • Attending hackathons to collaborate with other developers and work on innovative projects

  • Answered by AI
  • Q12. What is your goal in life?
  • Ans. 

    My goal in life is to continuously learn and grow, while making a positive impact on the world around me.

    • Continuous learning and personal growth

    • Making a positive impact on the world

    • Achieving work-life balance

    • Building meaningful relationships

    • Contributing to the community

  • Answered by AI
  • Q13. Do you have any problem in relocation?
  • Ans. 

    I am open to relocation for the right opportunity.

    • I am willing to relocate for the job.

    • I have no issues moving to a new location for work.

    • I am excited about the possibility of experiencing a new city or country.

    • I have relocated for previous jobs and have found it to be a positive experience.

  • Answered by AI
  • Q14. Reasons why you want to and why you don't want to relocate?
  • Ans. 

    I want to relocate for career growth and new experiences, but I am hesitant due to leaving behind family and friends.

    • Career growth opportunities in new location

    • Desire for new experiences and challenges

    • Concerns about leaving behind family and friends

  • Answered by AI
  • Q15. What do you watch ion tv?
  • Ans. 

    I enjoy watching a variety of shows on TV, including dramas, comedies, and documentaries.

    • I watch dramas like Grey's Anatomy and This Is Us

    • I enjoy comedies such as The Office and Brooklyn Nine-Nine

    • I also like watching documentaries on topics like nature and history

  • Answered by AI
  • Q16. Which movie did you last see
  • Ans. 

    I last saw the movie Inception.

    • Directed by Christopher Nolan

    • Released in 2010

    • Genre: Sci-Fi/Thriller

    • Starring Leonardo DiCaprio

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: On 1st September 2016, Cognizant held this round at our college. We were initially told that it would be an adaptive paper but it was not so. We could not navigate between questions (both intra and inter section). There was a minimum number of questions which had to be attempted from each section else we would disqualify. The questions were easy and I found many questions common from AMCAT papers.
Tips: Practice as much as you can. Try to learn shortcut tricks to solve the questions quickly and easily. Try to solve questions within certain time limit. Give online tests so that you are familiar with giving tests on machine. Do not waste time in a particular question. If you can't solve it then leave it( if there is negative marking) or answer randomly( if there is no negative marking).
Duration: 55 mins minutes
Total Questions: 55

Round: Technical Interview
Experience: The interviewer asked me to introduce myself. I was nervous and so i fumbled in 2 or 3 sentences but then i took the pace. he chit chatted with me to release my pressure . he went through my resume and my marksheets. he asked a few HR questions and then started the technical interview. He asked me questions regarding microprocessors and electronics but I had prepared software subjects I being a CS student could not remember most of it. But I sill answered them with best of my knowledge. i told him that I would rather be comfortable with CS core subjects. then he shifted his focus to DBMS and Software Engineering I did not lose my calm although I was very nervous. I thought I would be rejected but finally I got selected.
Tips: Don't be nervous as most of the interviewers are really friendly and they give ample chances to prove yourself. Try to practice the your introduction. They may ask your questions that are not from your domain but try to answer them with your presence of mind and previous knowledge. you may be nervous but don't show that on your face. Try to have basic concepts of your core subjects.

Round: HR Interview
Experience: It is the best round. You can voice your own views. The interviewers are mostly friendly and you seem to have a discussion with your friends.
If you manage to appear for this round most probably you will be selected.
Tips: Just be simple and be frank. Answer to the point and do not sound arrogant.

Skill Tips: Try to clear the aptitude and half of your job is done. For technical interview try to learn the basics of c,OOPS,DBMS. Try to know about the company .
Be calm .
All the best..!!
Skills: software engineering, Basic Electronics, Basic Knowledge Of DBMS
College Name: St. Thomas' College Of Engineering & Technology

Skills evaluated in this interview

Interview Preparation Tips

Round: Group Discussion
Duration: 15 minutes

Round: Test
Duration: 50 minutes

Skills: Communication, Clear Communication
College Name: Tkr college of engineering and technology

I was interviewed in Sep 2016.

Interview Questionnaire 

10 Questions

  • Q1. Tell me about yourself ?
  • Ans. 

    I am a passionate software engineer with experience in developing web applications and a strong background in computer science.

    • Experienced in developing web applications using technologies like HTML, CSS, JavaScript, and React

    • Strong background in computer science with knowledge in algorithms and data structures

    • Passionate about learning new technologies and solving complex problems

  • Answered by AI
  • Q2. What is your fav subject ?
  • Ans. 

    My favorite subject is computer science because I enjoy problem-solving and creating innovative solutions.

    • Computer science allows me to work on challenging problems and develop new technologies.

    • I enjoy coding and building software applications.

    • I find the intersection of technology and creativity fascinating.

    • Computer science offers endless opportunities for learning and growth.

  • Answered by AI
  • Q3. Write a query to find the employee name who earns maximum salary
  • Ans. 

    The query finds the employee name who earns the maximum salary.

    • Use the SELECT statement to retrieve the employee name and salary from the database table.

    • Use the ORDER BY clause to sort the results in descending order based on salary.

    • Use the LIMIT clause to limit the result to only one row.

    • Return the employee name from the query result.

  • Answered by AI
  • Q4. Another simple query
  • Q5. Introduce yourself
  • Ans. 

    I am a passionate software engineer with experience in developing web applications using various technologies.

    • Experienced in front-end development using HTML, CSS, and JavaScript

    • Proficient in back-end development with Node.js and Express

    • Familiar with database management systems like MySQL and MongoDB

  • Answered by AI
  • Q6. Favorite Game and Player ?
  • Ans. 

    Favorite Game: The Legend of Zelda: Breath of the Wild, Favorite Player: Lionel Messi

    • Favorite Game: The Legend of Zelda: Breath of the Wild

    • Favorite Player: Lionel Messi

  • Answered by AI
  • Q7. Why him ?
  • Q8. Do you have problem in night shift ?
  • Ans. 

    I am comfortable working night shifts and have no problem with it.

    • I have experience working night shifts in previous roles.

    • I am able to adjust my sleep schedule accordingly to accommodate night shifts.

    • I am aware of the potential challenges of working night shifts and have strategies to overcome them.

  • Answered by AI
  • Q9. Comfortable working outside kolkata ?
  • Ans. 

    Yes, I am comfortable working outside Kolkata.

    • I am open to new opportunities and experiences in different locations.

    • I am adaptable and can easily adjust to new environments.

    • I have previous experience working in different cities, such as Delhi and Bangalore.

  • Answered by AI
  • Q10. Then asked to read terms and condition and signed

Interview Preparation Tips

Round: Test
Experience: Reading Comprehennsion in Verbal needs time, rest was easy. Finished the test in 40 minutes and each section has a time limit with no negative marking and the test was adaptive you cannot vist a question twice and you cannot leave a question you must attempt and move to
Tips: Test vendor is amcat for many years. Practice as many questions you can get of Amcat .
Total Questions: 55

Round: Technical Interview
Experience: The interview was too short around 3-4 minutes as i was interviewed towards the end then next was HR.I had a certificates .
Design and Analysis of Algorithm-NPTEL. The ignored it
Tips: Things depend on luck I was asked favorite subject I said C he asked from DBMS :) . Some people were asked from Microprocessor :( also. Some were asked programs like reverse a number then prime number vowel count etc

Round: HR Interview
Experience: I was getting nervous HR said you have cleared the interview this is just a discussion why being tensed ? General conception is every one clears Technical clears HR . Around 5-6 didn't clear HR
Tips: Just talk always with a smile in face in HR nothing more

Skill Tips: Be calm that's it in mass recruitment luck often plays a vital role.
Skills: Communication, SQL
College Name: st.thomas college of engineering and technology

Skills evaluated in this interview

Interview Questionnaire 

11 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I am a software engineer with experience in developing web applications and a passion for learning new technologies.

    • Experienced in developing web applications using technologies such as React, Node.js, and MongoDB

    • Passionate about learning new technologies and keeping up with industry trends

    • Strong problem-solving skills and ability to work well in a team environment

  • Answered by AI
  • Q2. Questions on SQL(as mentioned in my resume)
  • Q3. Questions on all the projects done including their practical utility, my role in particular
  • Q4. What all extra curriculars were you involved in
  • Ans. 

    I was involved in various extracurricular activities such as volunteering, sports, and coding clubs.

    • Volunteered at local animal shelter

    • Played on intramural basketball team

    • Participated in coding competitions

    • Organized and led coding club at school

  • Answered by AI
  • Q5. Two puzzles: 1. how can you cut a cake in 8 pieces in minimum number of cuts(answered) ,2.make 4 equilateral triangles using 6 matchsticks(answered)
  • Q6. What do you do in your lab courses in college(explained in detail a particular experiment i had performed recently)
  • Q7. Do you have any questions
  • Q8. How was the technical interview
  • Q9. Asked me about my AIEEE rank and branch performance
  • Q10. What do you want to do in future that you have not attempted yet( I mentioned social service and music)
  • Q11. What are your location preferences
  • Ans. 

    I am open to working in any location, but I prefer cities with a vibrant tech community.

    • Open to any location

    • Prefer cities with a vibrant tech community

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: clearly cgpa based (>6.5). Around 900 students were shortlisted.

Round: Test
Experience: aptitude questions were quite easy and a person with average qaunt skills can easily make through. there was a question to be answered in a paragraph form to judge your english proficiency. around 450 students made it to the next round.
Tips: follow R.S. Agarwal for aptitude part and rest is an application of little bit of common sense.

Round: Technical Interview
Experience: technical round is not tough to crack if you are clear with your basics. this round also comprises HR questions. The questions depend on your branch and CV.
Tips: stay calm and confident. be thorough with your resume. do not leave any loopholes. focus on your strengths during the interview. they mainly look for a confident person with good communication skills. you may clearly say a no if you are not well versed with a topic but do not beat around the bush.

Round: HR Interview
Experience: there were also some absurd questions like do you know cooking & driving etc. but that made me all the more comfortable. the interview was very light and seemed like a casual conversation. the interviewer also shared her experiences and was very jovial. made me read and sign a document which concluded my interview.
Tips: if you have cleared the tech round..more than half the job is done unless you dun make some major blunder here. just maintain a smile and answer all questions honestly. you will surely make it. I was informed regarding my selection a week later. good luck to the future aspirants.

Skills: Verbal Ability, Logical Reasoning, Aptitude, 1)communication
College Name: BIT Mesra

Interview Preparation Tips

Round: Test
Experience: Very easy test.It is conducted by amcat.You can go through the amcat material before appearing for the exam.
Tips: Practice from indiabix.com

Round: Technical Interview
Experience: Ask questions related to your projects in resume.Some simple C programs(to print the prime numbers between 1 to 100).Some basic questions on sdlc.
Tips: Don't be panic.Listen to the questions carefully

Round: HR Interview
Experience: General questions.They will ask you to sign on one agreement type i.e regarding relocation problems.
Tips: Stay cool and focussed.

General Tips: S
Skill Tips: Whatever branch you are be perfect in the basics
Skills:
College Name: VIT Vellore

Interview Questionnaire 

2 Questions

  • Q1. Pre-increment and post-increment
  • Q2. Why IT company being a non CSE and IT student?

Interview Preparation Tips

Round: Test
Experience: This is one of the most easiest round as it does not involve any complicated maths and only involves logical thinking
Tips: Prepare easy questions such as direction and syllorgism
Duration: 30 minutes
Total Questions: 25

Round: Technical Interview
Experience: Though it is an IT company questions will be mainly asked from your own stream. Still they would ask a basic C or C++ question.
Tips: No need to panic. It is always best to know your subject along with some basic ideas about programming language.

Round: HR Interview
Experience: This is one of the very frequent question they would ask in an interview. Well you can convince the interviewer that you are mouldable and readily working for any sort of company.
Tips: Here the main thing or aspect that is checked is your communication skill.

General Tips: Your resume speaks more than anything else. Please do make sure that your resume is proper and put all your plus points in it. Please do maintain a good English as they give a huge value for this and always try to keep a smile on your face.
Skill Tips: Mainly apart from your technical skill, your communication skill is checked and at times when you go attend a stress interview please make sure that you answer in an intelligent way and also always have a smile on your face.
Skills: communication skill, ability to handle your frustrations
College Name: SATHYABAMA UNIVERSITY
Motivation: Definitely one of the best IT company. Always cool with their staff and less rules
Funny Moments: This happened during Wipro interview. The interviewer was never really interested to listen to my answers as he picked up the phone and started talking to his wife about that day's lunch :P.
Contribute & help others!
anonymous
You can choose to be anonymous

Oracle Cerner Interview FAQs

How many rounds are there in Oracle Cerner SDE-2 interview?
Oracle Cerner interview process usually has 2 rounds. The most common rounds in the Oracle Cerner interview process are Technical.
What are the top questions asked in Oracle Cerner SDE-2 interview?

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

  1. What is meant by function overloading and function overridi...read more
  2. What is meant by closure in javascri...read more
  3. What is abstract class in javascri...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

JOBS

Digital Aquatech Services

No Jobs

SALARIES

EbixCash Limited

INTERVIEWS

Hero MotoCorp

No Interviews

INTERVIEWS

Hero MotoCorp

No Interviews

JOBS

MORACEAE PHARMACEUTICALS

No Jobs

INTERVIEWS

Hero MotoCorp

No Interviews

REVIEWS

Oracle Cerner

No Reviews

INTERVIEWS

Hero MotoCorp

No Interviews

Tell us how to improve this page.

Interview Questions from Similar Companies

Cognizant Interview Questions
3.8
 • 5.6k Interviews
Oracle Interview Questions
3.7
 • 846 Interviews
Amdocs Interview Questions
3.7
 • 512 Interviews
Adobe Interview Questions
3.9
 • 233 Interviews
Salesforce Interview Questions
4.0
 • 221 Interviews
24/7 Customer Interview Questions
3.5
 • 175 Interviews
Globant Interview Questions
3.8
 • 172 Interviews
Chetu Interview Questions
3.3
 • 172 Interviews
Dassault Systemes Interview Questions
4.0
 • 160 Interviews
View all
Software Engineer
1.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

System Engineer
533 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
402 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Automation Test Engineer
362 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer II
300 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Oracle Cerner with

Siemens

4.1
Compare

Veradigm

4.0
Compare

McKesson

4.5
Compare

Siemens Healthineers

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