Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Oracle Team. If you also belong to the team, you can get access from here

Oracle Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Oracle Devops Engineer Interview Questions and Answers

Updated 29 Jul 2024

Oracle Devops Engineer Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

I appeared for an interview in Jan 2024.

Round 1 - Assignment 

They first gave me a project to be implemented in Go language, then was called for tefchnival round

Interview Preparation Tips

Interview preparation tips for other job seekers - long process

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Scenario based questions about AWS services
  • Q2. Working of Terraform , Packer ,Puppet
  • Ans. 

    Terraform, Packer, and Puppet are tools used in DevOps for infrastructure automation and configuration management.

    • Terraform is used for infrastructure as code and automates the provisioning of infrastructure resources.

    • Packer is used for creating machine images for multiple platforms from a single source configuration.

    • Puppet is used for configuration management and automates the deployment and management of software and

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. About EKS in AWS
  • Q2. About ECS in AWS

I applied via Referral and was interviewed in Jul 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Python Programs in Strings and arrays to check logic
  • Ans. 

    Python programs to check logic in strings and arrays

    • Use string and array methods to manipulate and check data

    • Write test cases to ensure correct logic

    • Use regular expressions to search for patterns in strings

    • Use conditional statements to check for specific conditions

  • Answered by AI
  • Q2. DevOps related questions on Jenkins, Groovy, Docker etc
  • Q3. Puzzles. Behavioral and Leadership based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview consisted of 5 rounds. Started with a online coding round. Followed by 2 technical rounds, 1 techno managerial round, 1 LOB Managarial round and finally HR round.
Be prepared on programming basics and expect programming throught the process.
Be thorough with DevOps concepts

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(1 Question)

  • Q1. What is your Strength?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Generic Questions to check basic skills

Round 2 - Technical 

(1 Question)

  • Q1. Latest Tech in the market
  • Ans. 

    Some of the latest technologies in the market include AI, blockchain, edge computing, and serverless computing.

    • Artificial Intelligence (AI) - used for automation, predictive analytics, and natural language processing

    • Blockchain - for secure and transparent transactions in various industries

    • Edge Computing - processing data closer to the source for faster response times

    • Serverless Computing - allows developers to focus on ...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary Negotiation

Skills evaluated in this interview

I applied via Naukri.com

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 

Basic quant is asked which is easy to crack

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard and be bold. Get clean shaved and well dressed before attending an interview
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Overall ok It was 30 min duration

Devops Engineer Interview Questions & Answers

Zoho user image thulasinadh bathala

posted on 28 Feb 2024

Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Feb 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

They will provide 10-20 aptitude questions and 10-20 coding outputs or flowchart related questions

Round 2 - Coding Test 

They will give 5 coding questions, you can write in any programming language, irrespective of output they check how you are thinking and which logic you are using and efficiency of the code

Round 3 - Coding Test 

In this round they will give bulk application programme no need to finish it but they will check your thought process and depth in oops concepts,

Round 4 - Technical 

(3 Questions)

  • Q1. In this round they will ask technical questions, you have to explain use case with live examples
  • Q2. What is static key word where can we use
  • Ans. 

    The static keyword in Java is used to create variables and methods that belong to the class itself, rather than instances of the class.

    • Static variables are shared among all instances of a class

    • Static methods can be called without creating an instance of the class

    • Static blocks are used to initialize static variables

  • Answered by AI
  • Q3. Why public static void main
  • Ans. 

    The public static void main method is the entry point for a Java program.

    • public: Access modifier indicating that the method can be accessed from any other class.

    • static: Indicates that the method belongs to the class itself, not an instance of the class.

    • void: Indicates that the method does not return any value.

    • main: The name of the method that serves as the entry point for the program.

    • String[] args: An array of strings ...

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Will ask casual questions

Interview Preparation Tips

Interview preparation tips for other job seekers - write a efficient code, use minimum variables, no need of scanners to read variables just concentrate on logic.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
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 

(2 Questions)

  • Q1. Explain the Kubernetes architecture
  • Ans. 

    Kubernetes architecture is a container orchestration platform that manages containerized applications across a cluster of nodes.

    • Kubernetes follows a master-slave architecture with a master node and multiple worker nodes.

    • Master node components include API server, scheduler, controller manager, and etcd.

    • Worker node components include kubelet, kube-proxy, and container runtime (e.g. Docker).

    • Nodes communicate with each oth...

  • Answered by AI
  • Q2. Write the terraform script
  • Ans. 

    Writing a terraform script for infrastructure provisioning

    • Define provider and required variables

    • Create resources like instances, networks, and storage

    • Use modules for reusable code

    • Implement variables and outputs for flexibility

    • Leverage terraform state for tracking changes

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Write the dockerfile
  • Ans. 

    A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image.

    • Start with a base image

    • Use the RUN instruction to execute commands

    • Use the COPY instruction to add files from your Docker client’s current directory

    • Use the CMD instruction to specify the command to run when the container starts

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. What are your salary expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard

Skills evaluated in this interview

Oracle Interview FAQs

How many rounds are there in Oracle Devops Engineer interview?
Oracle interview process usually has 1 rounds. The most common rounds in the Oracle interview process are Assignment.
How to prepare for Oracle Devops 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. The most common topics and skills that interviewers at Oracle expect are Devops, Docker, Python, Jenkins and Ansible.

Tell us how to improve this page.

Oracle Devops Engineer Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more
Oracle Devops Engineer Salary
based on 276 salaries
₹5.7 L/yr - ₹20.7 L/yr
59% more than the average Devops Engineer Salary in India
View more details

Oracle Devops Engineer Reviews and Ratings

based on 17 reviews

3.6/5

Rating in categories

3.4

Skill development

4.0

Work-life balance

3.0

Salary

3.6

Job security

3.7

Company culture

2.6

Promotions

3.6

Work satisfaction

Explore 17 Reviews and Ratings
Senior Software Engineer
2.5k salaries
unlock blur

₹10.3 L/yr - ₹40 L/yr

Principal Consultant
2.1k salaries
unlock blur

₹14.4 L/yr - ₹36 L/yr

Senior Consultant
2.1k salaries
unlock blur

₹8.9 L/yr - ₹28 L/yr

Senior Member of Technical Staff
1.8k salaries
unlock blur

₹12 L/yr - ₹45 L/yr

Senior Application Engineer
1.4k salaries
unlock blur

₹9.7 L/yr - ₹30 L/yr

Explore more salaries
Compare Oracle with

SAP

4.2
Compare

MongoDB

3.7
Compare

Salesforce

4.0
Compare

IBM

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