Upload Button Icon Add office photos

Oracle Cerner

Compare button icon Compare button icon Compare

Filter interviews by

Oracle Cerner Automation Test Engineer Interview Questions and Answers

Updated 4 Nov 2024

Oracle Cerner Automation Test Engineer Interview Experiences

8 interviews found

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
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Question related to playwright and selenium
Round 2 - HR 

(1 Question)

  • Q1. Behavioural questions

Automation Test Engineer Interview Questions Asked at Other Companies

asked in TCS
Q1. How to handle scrollbar and mouse activities Jenkins and Github S ... read more
asked in Infosys
Q2. Introduce yourself 1.What is STLC 2. difference between Test plan ... read more
asked in LTIMindtree
Q3. 1. diff b/w findelements vs findelement? 2. set vs map? 3. wap fo ... read more
asked in Capgemini
Q4. 1] Introduction 2] Sanity Vs Smoke testing 3] Waits in selenium a ... read more
asked in Capgemini
Q5. What is assertion? What is soft assertion? What is hard assertion ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Online Versant round 

(2 Questions)

  • Q1. English fluency test
  • Ans. 

    Effective communication is crucial for an Automation Test Engineer to collaborate and report findings clearly.

    • Clarity in writing test cases and documentation is essential.

    • Regular communication with developers to discuss bugs and issues.

    • Ability to explain complex technical concepts to non-technical stakeholders.

    • Participating in team meetings and providing updates on testing progress.

  • Answered by AI
  • Q2. English written test
Round 2 - Technical 

(2 Questions)

  • Q1. Java inheritance
  • Q2. Selenium related questions

I applied via LinkedIn and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. For my interview ,the interviewers are cool &they taken interview very smoothly manner.
  • Q2. They asked questions on java oops concepts ,manual on BBT ,SQL on SQL languages , automation on xpath locators and some personal questions related on us
  • Q3. They conducted two rounds of interviews first is versant then technical 1 and technical 2

Interview Preparation Tips

Interview preparation tips for other job seekers - I liked the interview rounds and interviewers they handled very smooth manner
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Aug 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

All objective questions of Basic aptitude questions, English, and any relevant language like java, python

Round 3 - Group Discussion 

Some topic will be given in a group of 6-10 people and need to speak on that for a min or two.

Round 4 - One-on-one 

(1 Question)

  • Q1. About your projects and skill. Some coding questions.
Round 5 - Versant Test 

(1 Question)

  • Q1. To check English compatibility.

I applied via Naukri.com and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Few questions regarding my role, experience.
  • Q2. Few questions on selenium
Round 2 - Technical 

(2 Questions)

  • Q1. Question related to API testing
  • Q2. Manual testing related questions
Round 3 - English test 

(1 Question)

  • Q1. Some questions to test on the ability of speaking, listening and writing

Interview Preparation Tips

Interview preparation tips for other job seekers - you can prepare selenium and API related stuff

Oracle Cerner HR Interview Questions

13 questions and answers

Q. How do you maintain relationships with engineers?
Q. Tell me something about yourself.
Q. What is your current working role?

I applied via Naukri.com and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. 1)Program to read/write data using eggplant
  • Q2. 2)Basic programs using Java
  • Q3. 3) Different methods to identify an object using eggplant
  • Q4. Etc...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with the basics of any programming language(java/python)
Have a basic understanding of SQL

Skills evaluated in this interview

Are these interview questions helpful?

I applied via Naukri.com and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java and selenium

Interview Preparation Tips

Interview preparation tips for other job seekers - Good got offer and accepted

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Oracle Cerner?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Monster and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic java

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared

Software Engineer Interview Questions & Answers

Adobe user image Devendra Bendkhale

posted on 4 Dec 2015

Interview Questionnaire 

8 Questions

  • Q1. WRITE A GENERIC SWAP FUNCTION
  • Ans. 

    A generic swap function swaps two values of any data type.

    • The function should take two parameters of any data type.

    • Use a temporary variable to store the value of one parameter.

    • Assign the value of the second parameter to the first parameter.

    • Assign the value of the temporary variable to the second parameter.

  • Answered by AI
  • Q2. SEARCH AN ELEMENT IN ROTATED SORTED LINKLIST .
  • Ans. 

    Search for an element in a rotated sorted linked list.

    • Find the pivot point where the list is rotated.

    • Divide the list into two sublists based on the pivot point.

    • Perform binary search on the appropriate sublist.

    • Handle edge cases such as empty list and list with only one element.

  • Answered by AI
  • Q3. SEARCH AN ELEMENT IN ROTATED SORTED ARRAY. WRITED A CODE FOR IT
  • Ans. 

    Search an element in a rotated sorted array

    • Find the pivot point where the array is rotated

    • Divide the array into two sub-arrays based on pivot point

    • Perform binary search on the appropriate sub-array

    • Repeat until element is found or sub-array size is 1

  • Answered by AI
  • Q4. In an Array of size 95 contain numbers in range 1 to 100. each number is at max once in the array. find the 5 missing numbers in array between 1-100
  • Q5. Given sudoku as id array of size . in a given empty cell find the possible numbers that could be possible. Asked me to write code for it
  • Ans. 

    Given a Sudoku board, find possible numbers for an empty cell.

    • Iterate through empty cells and check possible numbers using row, column, and box constraints.

    • Use a set to keep track of possible numbers for each empty cell.

    • Return the set of possible numbers for the given empty cell.

  • Answered by AI
  • Q6. Given 4 unsigned integers find their integer average (eg. (2,2,2,3) => (2+2+2+3)/4 = 2) consider integer division ) without typecasting
  • Ans. 

    Find integer average of 4 unsigned integers without typecasting

    • Add all the integers and divide by 4

    • Use bit shifting to divide by 4

    • Handle overflow by using long long data type

    • Use unsigned int data type for input

  • Answered by AI
  • Q7. Write a code to identify wheter given processor is of 32 bit architecture or 64 bit architecture
  • Ans. 

    Code to identify 32 bit or 64 bit architecture of a processor

    • Check if the operating system is 32 bit or 64 bit

    • If OS is 32 bit, processor is 32 bit

    • If OS is 64 bit, check if processor supports 64 bit architecture

    • Use CPUID instruction to check if processor supports 64 bit architecture

  • Answered by AI
  • Q8. Convert a binary number into base 64 integer
  • Ans. 

    Convert binary number to base 64 integer

    • Divide the binary number into groups of 6 bits

    • Convert each group of 6 bits to decimal

    • Map the decimal value to the corresponding base 64 character

    • Concatenate the base 64 characters to form the final integer

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: SIMPLE CODING QUESTIONS SPEED MATTERS.
Duration: 60 minutes
Total Questions: 3

Skills: Analytics And Coding
College Name: IIT Guwahati

Skills evaluated in this interview

Oracle Cerner Interview FAQs

How many rounds are there in Oracle Cerner Automation Test Engineer 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 Aptitude Test.
How to prepare for Oracle Cerner Automation Test Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Oracle Cerner. The most common topics and skills that interviewers at Oracle Cerner expect are Automation Testing, Test execution, Healthcare, Computer science and Continuous Integration.
What are the top questions asked in Oracle Cerner Automation Test Engineer interview?

Some of the top questions asked at the Oracle Cerner Automation Test Engineer interview -

  1. 3) Different methods to identify an object using eggpl...read more
  2. They asked questions on java oops concepts ,manual on BBT ,SQL on SQL languages...read more
  3. 1)Program to read/write data using eggpl...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 4 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 50%
2-4 weeks 50%
View more
Oracle Cerner Automation Test Engineer Salary
based on 370 salaries
₹5 L/yr - ₹10 L/yr
At par with the average Automation Test Engineer Salary in India
View more details

Oracle Cerner Automation Test Engineer Reviews and Ratings

based on 57 reviews

3.3/5

Rating in categories

2.5

Skill development

3.6

Work-life balance

2.9

Salary

3.1

Job security

3.1

Company culture

2.4

Promotions

2.8

Work satisfaction

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

₹6 L/yr - ₹14.2 L/yr

System Engineer
430 salaries
unlock blur

₹5 L/yr - ₹10 L/yr

Senior Software Engineer
415 salaries
unlock blur

₹13 L/yr - ₹22 L/yr

Automation Test Engineer
370 salaries
unlock blur

₹5 L/yr - ₹10 L/yr

Software Engineer II
304 salaries
unlock blur

₹8 L/yr - ₹14 L/yr

Explore more salaries
Compare Oracle Cerner with

Siemens

4.0
Compare

Oracle

3.6
Compare

Amdocs

3.7
Compare

Automatic Data Processing (ADP)

4.0
Compare
write
Share an Interview