Upload Button Icon Add office photos

GE

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

GE Devops Engineer Interview Questions and Answers

Updated 26 Apr 2024

GE Devops Engineer Interview Experiences

1 interview found

Devops Engineer Interview Questions & Answers

user image Rajasekhar Aligi

posted on 26 Apr 2024

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

I applied via Job Portal and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. They mostly asked questions on your resume
Round 2 - Technical 

(1 Question)

  • Q1. A quite difficult round they mostly asked for Kubernetes

Devops Engineer Jobs at GE

View all

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Its a aptitude test and mode was online

Round 2 - Technical 

(2 Questions)

  • Q1. Sorting methods
  • Q2. Given random numbers and wanted to find sum of max 2 numbers is greater than 100 or not

Interview Preparation Tips

Interview preparation tips for other job seekers - Solve gfg , leetcode problems or go for code force contests

I applied via Company Website and was interviewed in Mar 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. What is the VPN port used for UDP
  • Ans. 

    The VPN port used for UDP is typically 500.

    • The VPN port used for UDP is usually port 500.

    • UDP is a protocol that allows for faster transmission of data but does not guarantee delivery or order of packets.

    • Port 500 is commonly used for IPsec VPNs, which provide secure communication over the internet.

    • Other VPN protocols may use different ports for UDP, so it's important to check the specific configuration.

  • Answered by AI
  • Q2. Write a golang program to find furthest number from zero. No this isn't find the greatest number. Because the numbers could be negative so if an array has [ -4 2 24 55 -89 12] then -89 is furthest from zer...
  • Q3. Syntax for grep command and regex
  • Ans. 

    Syntax for grep command and regex

    • grep [options] pattern [file]

    • Regular expression (regex) is used to define the pattern

    • Examples: grep 'hello' file.txt

    • grep -i 'hello' file.txt

    • grep -r 'hello' /path/to/directory

  • Answered by AI
  • Q4. How to run a docker command remotely. i.e. Docker is installed on both your laptop and a remote linux server. You need to run docker command on the linux server but without taking a separate ssh session to...
  • Ans. 

    You can use the Docker API to remotely run Docker commands on a Linux server without taking a separate SSH session.

    • Use the Docker API to interact with the Docker daemon on the remote Linux server.

    • Make sure Docker is installed and running on both your laptop and the remote server.

    • Authenticate with the remote server using appropriate credentials.

    • Establish a connection to the Docker daemon on the remote server using the D...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was for Mendix which is acquired by Siemens. First round is an online test shared by email. They give you a sample test so you can familiarize with the UI and then you can proceed with the actual test which is an hour long(but mostly its 15 min of multiple choice questions and rest of the time for a program to write)

Skills evaluated in this interview

I was interviewed before Mar 2021.

Round 1 - Video Call 

(7 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round started with some basic questions from DevOps followed by some more questions from Docker and Linux.

  • Q1. What is Continuous Testing (CT)?
  • Ans. 

    Continuous Testing (CT) is the process of executing automated tests as part of the software delivery pipeline to obtain immediate feedback on the business risks associated with a software release candidate.

    • CT helps in identifying defects early in the development cycle.

    • It ensures that the software is always in a releasable state.

    • CT integrates testing into the CI/CD pipeline for faster feedback loops.

    • Examples include run...

  • Answered by AI
  • Q2. How does AWS contribute to DevOps?
  • Ans. 

    AWS provides a wide range of services and tools that support the principles and practices of DevOps.

    • AWS offers infrastructure as code tools like CloudFormation and Terraform for automating the provisioning of resources.

    • AWS provides a variety of monitoring and logging services such as CloudWatch and CloudTrail to help with continuous monitoring and feedback loops.

    • AWS supports continuous integration and continuous deploy...

  • Answered by AI
  • Q3. What is a Docker image registry?
  • Ans. 

    A Docker image registry is a repository for storing and managing Docker images.

    • It allows users to push and pull Docker images to and from the registry.

    • Popular Docker image registries include Docker Hub, Amazon ECR, and Google Container Registry.

    • Registries can be public or private, with private registries requiring authentication for access.

  • Answered by AI
  • Q4. How many components are there in Docker?
  • Ans. 

    Docker has 3 main components: Docker Engine, Docker Images, and Docker Containers.

    • Docker Engine is the core component responsible for running and managing Docker containers.

    • Docker Images are read-only templates used to create Docker containers.

    • Docker Containers are lightweight, standalone, and executable packages that include everything needed to run a piece of software.

  • Answered by AI
  • Q5. Can you describe the lifecycle of a Docker container?
  • Ans. 

    The lifecycle of a Docker container involves creation, running, pausing, restarting, and stopping.

    • 1. Creation: A Docker container is created from a Docker image using the 'docker run' command.

    • 2. Running: The container is started and runs the specified application or service.

    • 3. Pausing: The container can be paused using the 'docker pause' command, which temporarily stops its processes.

    • 4. Restarting: The container can be...

  • Answered by AI
  • Q6. What is LVM and why is it required?
  • Ans. 

    LVM stands for Logical Volume Manager, used to manage disk space efficiently by allowing for dynamic resizing of volumes.

    • LVM allows for easy resizing of volumes without the need to unmount the filesystem

    • It provides features like snapshots, striping, mirroring, and thin provisioning

    • LVM can span multiple physical disks to create a single logical volume

  • Answered by AI
  • Q7. What is load average in Linux?
  • Ans. 

    Load average in Linux is a measure of system activity, indicating the average number of processes waiting for CPU time over a period of time.

    • Load average is displayed as three numbers representing the average load over the last 1, 5, and 15 minutes.

    • A load average of 1.0 means the system is at full capacity, while a load average of 0.5 means the system is half as busy.

    • High load averages may indicate that the system is o...

  • Answered by AI
Round 2 - Video Call 

(7 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round started with me first giving a brief intro about my experience in the DevOps sector and then the interviewer switched to asking me questions about Git , Docker and Kubernetes.

  • Q1. What is the command used to delete a branch in Git?
  • Ans. 

    The command used to delete a branch in Git is 'git branch -d <branch_name>'.

    • Use 'git branch -d <branch_name>' to delete a branch in Git.

    • Make sure to switch to a different branch before deleting the branch.

    • If the branch has not been merged, use 'git branch -D <branch_name>' to force delete.

  • Answered by AI
  • Q2. What do you know about git reflog?
  • Ans. 

    Git reflog is a reference log that records changes to the HEAD of the repository.

    • Records all changes to the HEAD reference

    • Useful for recovering lost commits or branches

    • Can be accessed using 'git reflog' command

  • Answered by AI
  • Q3. What is the difference between git revert and git reset?
  • Ans. 

    git revert undoes a specific commit by creating a new commit, while git reset moves the HEAD to a previous commit without creating a new commit.

    • git revert creates a new commit that undoes a specific commit, keeping the commit history intact

    • git reset moves the HEAD to a previous commit, potentially discarding changes made after that commit

    • git revert is safer for shared branches as it does not rewrite history, while git ...

  • Answered by AI
  • Q4. Can you explain the difference between CMD and ENTRYPOINT in Docker?
  • Ans. 

    CMD specifies the default command to run in the container, while ENTRYPOINT specifies the executable to run when the container starts.

    • CMD is often used to provide default arguments for the ENTRYPOINT command

    • ENTRYPOINT is used to specify the executable that will run when the container starts

    • CMD can be overridden at runtime by passing arguments to docker run command

    • ENTRYPOINT cannot be overridden at runtime, but can be c

  • Answered by AI
  • Q5. How can you monitor a Kubernetes cluster?
  • Ans. 

    Monitoring a Kubernetes cluster involves using tools like Prometheus, Grafana, and Kubernetes Dashboard.

    • Use Prometheus for collecting metrics from Kubernetes components and applications running on the cluster.

    • Set up Grafana for visualizing the collected metrics and creating dashboards for monitoring.

    • Utilize Kubernetes Dashboard for a graphical interface to view and manage the cluster resources.

    • Implement alerts and noti...

  • Answered by AI
  • Q6. What is Kubernetes Load Balancing?
  • Ans. 

    Kubernetes Load Balancing is a method to distribute incoming network traffic across multiple pods in a Kubernetes cluster.

    • Kubernetes Load Balancer service type automatically creates a cloud provider load balancer.

    • It helps in scaling applications by distributing traffic evenly across multiple pods.

    • Load balancing ensures high availability and reliability of applications running in a Kubernetes cluster.

  • Answered by AI
  • Q7. Can you explain the architecture of Jenkins?
  • Ans. 

    Jenkins is an open-source automation server that helps to automate the non-human part of the software development process.

    • Jenkins is a Java-based application that runs in a servlet container like Apache Tomcat.

    • It can be installed on a single server or distributed across multiple servers for scalability.

    • Jenkins uses plugins to extend its functionality, allowing integration with various tools and technologies.

    • It follows ...

  • Answered by AI
Round 3 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

This was a typical HR round with some standard Behavioral questions.

  • Q1. Can you tell me something about yourself?
  • Q2. Why should we hire you?

Interview Preparation Tips

Eligibility criteriaAbove 1+ years of experienceSiemens interview preparation:Topics to prepare for the interview - Docker, Kubernetes, AWS, CI/CD, Git, DBMS, LinuxTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 2 : 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 applied via Naukri.com and was interviewed in Nov 2022. There were 2 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 Resume tips
Round 2 - Technical 

(12 Questions)

  • Q1. What is the procedure for .net pipeline build process?
  • Ans. 

    The .NET pipeline build process involves several steps including source code management, building, testing, and deployment.

    • Source code is managed using a version control system like Git.

    • The build process involves compiling the code and creating an executable or library.

    • Unit tests are run to ensure the code is functioning correctly.

    • The application is deployed to a testing or staging environment for further testing.

    • Once ...

  • Answered by AI
  • Q2. How do you install nuget? What is the use of nuget restore?
  • Ans. 

    NuGet is a package manager for .NET that simplifies the process of finding, installing, and using third-party libraries.

    • NuGet can be installed using Visual Studio or the NuGet command-line interface (CLI).

    • NuGet restore is used to restore the packages listed in a project's packages.config file.

    • NuGet packages can be used to add functionality to a project, such as libraries, tools, and frameworks.

    • NuGet also allows for the...

  • Answered by AI
  • Q3. In pipelines, what is the approval request procedure?
  • Ans. 

    Approval request procedure in pipelines involves manual or automated approval process before deployment.

    • Approval request is triggered when a pipeline reaches a certain stage or before deployment.

    • The request can be manual or automated depending on the pipeline configuration.

    • Manual approval requires a designated person to review and approve the request.

    • Automated approval can be based on predefined rules or conditions.

    • App...

  • Answered by AI
  • Q4. If pipeline breaks in production environment, how do you handle it?
  • Ans. 

    I would follow the incident management process to identify the root cause and resolve the issue as quickly as possible.

    • Notify the relevant stakeholders and initiate the incident management process

    • Identify the root cause of the issue and take corrective actions

    • Rollback to the previous stable version if necessary

    • Communicate the status and progress of the incident to stakeholders

    • Conduct a post-incident review to identify

  • Answered by AI
  • Q5. Git - One of your colleague updated code in remote app and want to test the code. He doesnt want to bring it to local and overwrite it in local. How do you suggest he does that
  • Q6. Did you write a Docker file from scratch? What is the syntax for Docker file?
  • Ans. 

    Yes, I have written Docker files from scratch. The syntax for Docker file includes instructions and arguments.

    • Docker file is a script that contains instructions to build a Docker image

    • The syntax includes instructions like FROM, RUN, COPY, CMD, etc.

    • Arguments are used to specify details like the base image, working directory, etc.

    • Example: FROM ubuntu:latest RUN apt-get update && apt-get install -y python3

    • Example: COPY .

  • Answered by AI
  • Q7. What are the Docker commands used inside a Docker file?
  • Ans. 

    Docker commands used inside a Dockerfile

    • FROM - specifies the base image

    • RUN - executes a command in the container

    • COPY - copies files from host to container

    • WORKDIR - sets the working directory for subsequent commands

    • CMD - specifies the command to run when the container starts

  • Answered by AI
  • Q8. How do you run a Docker file?
  • Ans. 

    To run a Docker file, use the 'docker build' command followed by the path to the Dockerfile.

    • Navigate to the directory containing the Dockerfile

    • Run the command 'docker build -t .'

    • The '.' at the end of the command specifies the build context

    • Once the build is complete, run the container using 'docker run '

  • Answered by AI
  • Q9. What is the use of Azure Keyvaults?
  • Ans. 

    Azure Keyvaults are used to securely store and manage cryptographic keys, secrets, and certificates.

    • Keyvaults provide a centralized location for managing secrets and keys used in applications.

    • They allow for secure storage and retrieval of sensitive information such as passwords, API keys, and certificates.

    • Keyvaults can be accessed programmatically through APIs or through the Azure portal.

    • They can also be integrated wit...

  • Answered by AI
  • Q10. How do you give permission to a particular secret to a user or application?
  • Ans. 

    To give permission to a secret, grant access to the user or application in the secret management tool.

    • Access control can be managed through the secret management tool.

    • Users or applications can be granted read or write access to a specific secret.

    • Access can be granted based on roles or individual permissions.

    • Examples of secret management tools include HashiCorp Vault and AWS Secrets Manager.

  • Answered by AI
  • Q11. What is your strategy for Kubernetes cluster?
  • Ans. 

    My strategy for Kubernetes cluster is to ensure high availability, scalability, and efficient resource utilization.

    • Implementing auto-scaling to handle sudden spikes in traffic

    • Using Kubernetes' built-in features like horizontal pod autoscaling and cluster autoscaling

    • Ensuring proper resource allocation and utilization through resource quotas and limits

    • Implementing rolling updates to minimize downtime

    • Using Kubernetes' bui...

  • Answered by AI
  • Q12. How do you autoscale in kubernetes?
  • Ans. 

    Autoscaling in Kubernetes can be achieved through Horizontal Pod Autoscaler (HPA) and Cluster Autoscaler.

    • Horizontal Pod Autoscaler (HPA) scales the number of pods based on CPU utilization or custom metrics.

    • Cluster Autoscaler scales the number of nodes in the cluster based on resource utilization.

    • HPA can be configured using kubectl autoscale command or through YAML file.

    • Cluster Autoscaler can be installed as a Kubernete...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. Explain what you know about it. If you did not work on a particular technology/tool, be honest and tell them you havent got a chance to work on them.

Skills evaluated in this interview

I applied via PLACEMENT

Interview Preparation Tips

Round: Technical Interview
Experience: Good detailed interview in terms of technical knowledge
Tips: Should be thorough with the projects you have done during the course

General Tips: be confident of what you put in your resume
Technical knowledge regarding projects undertaken during engineering should be sound
Be confident
Skills: Communication, Thinking capability, knowledge applying capability
College Name: V.E.S Institute Of Technology
Motivation: Opportunity to work in a renowned and core technical company
Funny Moments: We consider the interview panelists to be as tough as our viva externals. Interviewers are mostly on your side(contrary to viva professors :P)

I was interviewed before Sep 2016.

Interview Questionnaire 

1 Question

  • Q1. Ocampo, basic electronics and C

Interview Preparation Tips

Round: Test
Duration: 1 hour
Total Questions: 50

Skills: Embedded Systems, C Programming
College Name: Sahyadri college of engineering

Interview Questionnaire 

5 Questions

  • Q1. Pertaining to the mentioned roles and responsibilities in your resume
  • Q2. Planning and work order creation
  • Q3. Piling activities
  • Q4. Introduction
  • Q5. Cross checking of documents

Interview Preparation Tips

Round: Resume Shortlist
Experience: On the criteria that I scored atleast 60% overall and had no gap between job/s.

Interview Questionnaire 

5 Questions

  • Q1. Questions about flight mechanics and dynamics and controls
  • Q2. Questions about mechanical engineering
  • Q3. Questions on the thesis one has worked on and various projects and internships
  • Q4. Questions based on practical situations
  • Q5. Questions on basics of material, fundamentals of continuum mechanics, thermal science, parts of engine structure, etc

Interview Preparation Tips

Round: Resume Shortlist
Experience: I was guided by placement office quite appreciably for preparation of resume. First by one to one interaction and second by suggesting to talk to the seniors who are either injob or are hereafter the job. As it is always suggested about resume that, it reflects you in brief, you have to get it as good as you can. I followed the guidelines, made the first draft, got it corrected from some of my friends who are working in industries and got feedbacks from students who have experience from industries.

Round: APTITUDE TEST
Experience: It was intimated as aptitude but it included Verbal, Quants and basics of programmingand data structures & algorithm.

Round: Technical Interview
Experience: I went through two technical rounds and both of these included questions starting from the very basics of materials to the continuum mechanics’ fundamentals and applications. In the first round I was asked about flight mechanics & dynamics and controls’ by giving several conditions of practical importance, some part of engine structures and thermal science, my earlier projects and questions on that, some questions from the internship’s work and M.Tech thesis work. Very fundamental as well as complex questions were asked while explaining about the projects and thesis work. For the second round, I was sent to the panel interviewing for mechanical students and there I was asked questions from various subjects as well as for various conditions given on spot. Including both the technical interviews, I was asked questions from around 9-10 subjects of mechanical engineering. Apart from the questions from the course work, half of the interview was focused on the projects that I did earlier. I was asked to explain about the projects and give good insights of my contributions in that and accordingly I was asked questions from that as well. Later part of the technical round was focused for my thesis work. They started asking about the motivation behind the topic of the thesis and the technical platform set so far for the same. Concluding questions were from the company’s work and how I would be able to relate my expertise and thesis work for their benefit.. In the morning, Honeywell started it’s processing at around 6.30 am and I went for the first technical round at around 7 am. After some basic questions from the resume I was asked about the flight mech & controls. After sometimes the interviewer told me about his background, which was avionics and then he started from that. It must have gone over around 45 minutes. Second round of Honeywell was gruelling and I felt little uncomfortable at some points.

Round: HR Interview
Experience: HR round was more or less usual. Description about me and weaknesses in professional life were asked. The tricky one was one particular question about joining Honeywell and at the end of my answer, I was asked to compare Honeywell and the stalwarts of aerospace industry on my answer’s ground.

General Tips: Since I was looking only for the core aerospace companies, I was not looking very much about the aptitude and GD (specially, GD was not required). I was focusing about the technical side of the preparation, coursework, projects that I have done earlier and thesis work. I used the material provided by SPO for preparing the aptitude test solved some CAT papers and some online resources were useful. Further, I referred some core course works, specifically, thermal, fluid, aerodynamics, propulsion, structures & materials, materials & metallurgy and flight mechanics & dynamics for technical interviews. 



Revise the course works, some part of the projects, be focused for profiles and prepare accordingly. Prior knowledge about companies work and the profile helps a lot. Sound knowledge of thesis work, approach and the applications, motivation behind the topic and the work completed till the placement season starts should clearly be checked. If you are not good at programming and DS & algo then revise the basics of these(helps for aptitude). Be mentally prepared for multiple rounds of technical interviews. Shape yourself according to the profile and surf through the company’s site beforehand. Get some suggestions and feedback from seniors(specifically, M.tech students should talk to seniors, fellow students and labmates who have been in industries) for technical interviews. Focus on your approach towards the problem for the worst case. During technical interview, don’t try to brag about the topic that you are not sure about. They sometimes want to test your approach and attitude for the problem given to you (which will be out of your comfort zone) rather than the accuracy of the answer. Since verbal was also the part of aptitude, don’t forget to look that during your preparation. Final Tips : Don’t lose hope and be focused for the profile that you are interested in and narrow down the companies accordingly. It’s all your attitude, past experience (both academics and professional) and preparation for the placements that will help you to nail it. 1st, 2nd or any other day or any other company (as long asthe profile matches with your interest) don’t matter much. At the end of the day, getting in the core-profile is what matters most (if you are interested incore alone) and if it is your preferred company then it’s a boon. Have faith in yourself and believe in the next option if you don’t get the first one.
College Name: IIT KANPUR
Motivation: Other companies that I was shortlisted for : GE, Rolls-Royce, Airbus. Analysis of available options (based on profile, growth, compensation, BrandName, etc) :As for the first day, GE didn’t seem inclined in taking Aerospace Engineering students and I was not looking for Rolls-Royce very interestingly. I was mainly focusing on Honeywell, Eaton and Airbus and was shortlisted to interview with these three. Because of Honeywell’s versatility and the involvement in R&D(as I got the feedback from people working in there), I was focusing mainly on Honeywell. And it was very much favourable from compensation point of view as well. Finally I was selected in both Honeywell and Eaton, and chose Honeywell.

Interview Questionnaire 

5 Questions

  • Q1. Questions on Fluid Mechanics, Thermodynamics, Turbo-machinery etc
  • Q2. Why would you like to join the company ?
  • Ans. 

    I am excited to join the company because of its reputation for innovation and commitment to excellence.

    • I am impressed by the company's track record of developing cutting-edge technology.

    • I am drawn to the company's culture of collaboration and teamwork.

    • I am excited about the opportunity to work with a talented and experienced team of engineers.

    • I believe that the company's focus on quality and customer satisfaction align...

  • Answered by AI
  • Q3. Where do you see yourself 10 years afterwards ?
  • Ans. 

    In 10 years, I see myself as a highly experienced engineer leading a team of talented individuals towards innovative solutions.

    • Leading a team of engineers towards successful project completion

    • Continuing to learn and stay up-to-date with new technologies

    • Mentoring and guiding junior engineers

    • Contributing to the growth and success of the company

    • Exploring opportunities for professional development and growth

  • Answered by AI
  • Q4. Failures and successes during your careeer
  • Ans. 

    I have had both failures and successes in my career as a Senior Engineer.

    • One of my biggest successes was leading a team that developed a new software system that increased efficiency by 50%.

    • I also had a failure when I underestimated the complexity of a project and it ended up being delayed by several months.

    • Another success was implementing a new process that reduced errors by 75%.

    • I learned from a failure when I didn't ...

  • Answered by AI
  • Q5. Questions on resume

Interview Preparation Tips

Round: Test
Experience: The test included General quantitative and logical reasoning, verbal reasoning, questions on basic topics of Mechanical Engineering like Thermodynamics, Mechanics of Solids, Energy Systems, Manufacturing etc.


Round: Technical Interview
Experience: Advanced questions on the topic of your interest specifically related to Aerospace and Mechanical Engineering like Fluid Mechanics, Thermodynamics, Turbo-machinery etc, questions like what do you know about the company.

General Tips: Always follow your interest while choosing a suitable job. If you are not sure about your interest, keep options open and try to get information on all those options and select accordingly. Never run after money only. One must prioritize his/her interests first, then the kind of work in the company and then the package.
Prepare for the technical profiles by studying core subjects which interests you the most, but a person needs to have basic knowledge of other topics related to your department also.

Apply for the company only after gaining sufficient knowledge about it. Identify your interest and what kind of work you like, then apply to the company which suits your style of working and is apt for you to pursue your interests. One must not apply to all the companies just because everyone is applying. One must judge whether he/she is capable for that job or not and then decide in which companies to apply.
Try to be confident with your answers and give genuine replies in HR interviews. One must not give vague answers and change views as this would clearly give the indication that you are not able to give clear answers or you are making them up.
College Name: IIT Kanpur
Contribute & help others!
anonymous
You can choose to be anonymous

GE Interview FAQs

How many rounds are there in GE Devops Engineer interview?
GE interview process usually has 2 rounds. The most common rounds in the GE interview process are Technical.
How to prepare for GE 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 GE. The most common topics and skills that interviewers at GE expect are DevOps, Continuous Integration, AWS, Grafana and Groovy.

Recently Viewed

INTERVIEWS

Navin Fluorine International

No Interviews

INTERVIEWS

GE

No Interviews

INTERVIEWS

GE

No Interviews

INTERVIEWS

GE

No Interviews

SALARIES

GE

INTERVIEWS

GE

No Interviews

INTERVIEWS

GE

No Interviews

INTERVIEWS

Synamedia

No Interviews

INTERVIEWS

GE

No Interviews

INTERVIEWS

GE

No Interviews

Tell us how to improve this page.

GE Devops Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Siemens Interview Questions
4.1
 • 420 Interviews
Thermax Limited Interview Questions
4.1
 • 252 Interviews
ABB Interview Questions
4.1
 • 236 Interviews
Indian Army Interview Questions
4.7
 • 149 Interviews
BHEL Interview Questions
4.1
 • 113 Interviews
View all
GE Devops Engineer Salary
based on 24 salaries
₹5.3 L/yr - ₹17.3 L/yr
40% more than the average Devops Engineer Salary in India
View more details
DevOps Engineer

Hyderabad / Secunderabad

3-6 Yrs

Not Disclosed

DevOps Engineer

Hyderabad / Secunderabad

3-6 Yrs

Not Disclosed

DevOps Engineer

Hyderabad / Secunderabad

3-6 Yrs

Not Disclosed

Explore more jobs
Junior Engineer
250 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
210 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Engineer
194 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
137 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Engineer
126 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare GE with

Siemens

4.1
Compare

ABB

4.1
Compare

Schneider Electric

4.1
Compare

BHEL

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