Premium Employer

i

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

Ericsson Verified Tick

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Ericsson Senior Devops Engineer Interview Questions and Answers

Updated 29 Jul 2024

Ericsson Senior Devops Engineer Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Write a pipeline code for java project
  • Ans. 

    Pipeline code for a Java project

    • Use Jenkins or any CI/CD tool to create a pipeline for the Java project

    • Define stages like build, test, package, deploy in the pipeline script

    • Use tools like Maven or Gradle for building the project

    • Integrate with version control system like Git for triggering the pipeline

  • Answered by AI
  • Q2. Write a python code to upload a content to s3
  • Ans. 

    Python code to upload content to s3

    • Use boto3 library to interact with AWS S3

    • Create a S3 client using boto3

    • Use the put_object method to upload content to S3

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Questions about python modules and syntaxes
  • Q2. Questions on ansible modules and docker file
Round 3 - One-on-one 

(2 Questions)

  • Q1. Project discussion
  • Q2. Difficulties faced on technical areas
  • Ans. 

    Managing complex infrastructure configurations and troubleshooting issues with automation tools.

    • Dealing with scalability challenges in cloud environments

    • Troubleshooting issues with CI/CD pipelines

    • Managing configuration drift in a large infrastructure

    • Implementing security best practices in DevOps processes

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Process discussion

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. 1. they asked about your roles and responsibilities 2. daily basis tasks and recently faced issues 3. Some basic questions from your current roles and responsibilities.
  • Q2. As we know in devops, we have multiple technology which we should have knowledge about below technologies: CI/CD, cloud computing , linux, shell, docker, ansible, Kubernetes and some others.
  • Q3. In my interview I have given 2 technical round. 1ts is a telephonic interview where they asked multiple questions about docker , ansible, linux basic and network command. And 2nd one is my client interview...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared and keep calm.

Senior Devops Engineer Interview Questions Asked at Other Companies

Q1. What are Terraform life cycles ? and how do we use them ?
Q2. how to trigger a pipeline from specific version of Application co ... read more
Q3. what is ingress in Kubernetes and how does it helps us while we d ... read more
Q4. what are stages involved in release pipeline ? Explain the code
Q5. Default inbound/outbound NSG rules when we deploy VM with NSG? Ex ... read more

Senior Devops Engineer Jobs at Ericsson

View all

Interview questions from similar companies

I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Explain the CI/CD process in jenkins.
  • Ans. 

    CI/CD process in Jenkins automates the building, testing, and deployment of software.

    • Developers commit code changes to a version control system.

    • Jenkins pulls the code and builds it in a clean environment.

    • Automated tests are run to ensure code quality.

    • If tests pass, the code is deployed to a staging environment for further testing.

    • If staging tests pass, the code is deployed to production.

    • Jenkins also provides feedback o

  • Answered by AI
  • Q2. Explain Jira Jenkins Integration
  • Ans. 

    Jira Jenkins Integration is a process of connecting Jira and Jenkins to automate the software development process.

    • Jenkins plugin is installed in Jira to enable integration

    • Jenkins build can be triggered automatically from Jira issue

    • Jenkins build status can be displayed in Jira issue

    • Jira issues can be updated automatically based on Jenkins build status

    • Integration helps in tracking the progress of software development pro

  • Answered by AI
  • Q3. Different types of deployments
  • Ans. 

    Different types of deployments include blue-green, canary, rolling, and immutable.

    • Blue-green deployment involves deploying a new version of the application alongside the old version, and switching traffic to the new version once it's ready.

    • Canary deployment involves gradually rolling out a new version of the application to a small subset of users, and monitoring for issues before rolling out to the rest of the users.

    • Ro...

  • Answered by AI
  • Q4. Git related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - According to my experience... one needs to know whatever has been written in the CV. All the questions that were asked were rekated to the work that I had done in my previous organisation.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basic dsa and scalable scripting

Round 2 - Technical 

(1 Question)

  • Q1. Technical interview with the manager, just a flowy conversation

Interview Preparation Tips

Interview preparation tips for other job seekers - stay current
Interview experience
5
Excellent
Difficulty level
-
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 - Case Study 

Case study is quite practical based scenario

Round 3 - Technical 

(2 Questions)

  • Q1. 1.Cannot mention interview question, but I was more on more hands on and production grade scenario.
  • Q2. Scalibloty related to question

Interview Preparation Tips

Interview preparation tips for other job seekers - Best company to work for as.mid level engineer . it's a startup with good people joining hands to get success

I applied via Referral and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Devops life cycle , CICD, Ansible, Shell and groovy script, Jenkins , Gitlab
  • Q2. Linux , Networking , past company challenges
Round 2 - Technical 

(1 Question)

  • Q1. More detailed as per round 1

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through your resume twice and prepare each point from your resume

Interview Questionnaire 

1 Question

  • Q1. Tell mee about your self?

Interview Preparation Tips

Interview preparation tips for other job seekers - Give properly reply being confident.

I applied via Naukri.com and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. What is closure and it's applications.
  • Ans. 

    Closure is a function that has access to variables in its outer scope, even after the outer function has returned.

    • A closure can be used to create private variables and methods in JavaScript.

    • Closures can be used to implement partial application and currying.

    • Event listeners and callbacks often use closures to maintain state between function calls.

    • Closures can be used to create memoized functions that cache their results

  • Answered by AI
  • Q2. What is callbacks hell, promises, observables, asynch await.
  • Ans. 

    Callbacks hell is a situation where nested callbacks make code hard to read and maintain. Promises, observables, and async/await are solutions to this problem.

    • Callbacks hell occurs when there are too many nested callbacks in code.

    • Promises are a way to handle asynchronous operations in JavaScript.

    • Observables are similar to promises but can handle multiple values over time.

    • Async/await is a syntax for writing asynchronous

  • Answered by AI
  • Q3. What is higher order functions. And it's usage.
  • Ans. 

    Higher order functions are functions that take other functions as arguments or return functions as their result.

    • Higher order functions allow for more flexible and reusable code.

    • They can be used for tasks such as filtering, mapping, and reducing arrays.

    • Examples include Array.prototype.map(), Array.prototype.filter(), and Array.prototype.reduce().

  • Answered by AI
  • Q4. What is oops in JavaScript. And difference between functional programming and OOPs.
  • Ans. 

    OOPs in JavaScript is a programming paradigm that uses objects to represent real-world entities. Functional programming is a paradigm that uses functions to perform tasks.

    • OOPs in JavaScript involves creating objects that have properties and methods.

    • Functional programming involves creating functions that take input and produce output without modifying the input.

    • OOPs focuses on encapsulation, inheritance, and polymorphis...

  • Answered by AI
  • Q5. What is event loop and types of tasks in the queue.
  • Ans. 

    Event loop is a mechanism that allows JavaScript to perform non-blocking I/O operations.

    • Event loop is responsible for handling asynchronous callbacks in JavaScript.

    • Tasks in the queue can be either microtasks or macrotasks.

    • Microtasks are executed before macrotasks.

    • Examples of macrotasks include setTimeout, setInterval, and I/O operations.

    • Examples of microtasks include Promise callbacks and mutation observer callbacks.

  • Answered by AI
  • Q6. Output of the code in JavaScript.
  • Ans. 

    Output of the code in JavaScript

    • Need to see the code to determine output

    • Output can vary based on input and logic

    • Can use console.log() to print output

  • Answered by AI
  • Q7. How browser works detailed analysis.
  • Ans. 

    Browsers use rendering engines to interpret HTML, CSS, and JavaScript to display web pages.

    • Browsers use rendering engines to interpret HTML, CSS, and JavaScript.

    • The rendering engine parses the HTML and creates a DOM tree.

    • The rendering engine then applies CSS rules to the DOM tree to create a render tree.

    • The render tree is then laid out to determine the position of each element on the page.

    • Finally, the rendering engine ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on the basics and deep dive into the topic and try to make a small project out of it.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2023. There were 4 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Data Structures and algorithms
Round 2 - One-on-one 

(2 Questions)

  • Q1. Dsa java angular
  • Q2. Sql queries and db related questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Case study details
Round 4 - HR 

(1 Question)

  • Q1. Basic questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 2022. There were 4 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 - Technical 

(2 Questions)

  • Q1. Basic PHP Questions on Arrays, implode, explode function difference, include, require difference.etc
  • Q2. Basics MySQL questions, asked some queries
Round 3 - One-on-one 

(1 Question)

  • Q1. Asked questions based on payment gateway.
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion, explained roles and responsibilities

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well before interview. If you are experienced person, you can crack it easily.

Ericsson Interview FAQs

How many rounds are there in Ericsson Senior Devops Engineer interview?
Ericsson interview process usually has 4 rounds. The most common rounds in the Ericsson interview process are Technical, One-on-one Round and HR.
How to prepare for Ericsson Senior 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 Ericsson. The most common topics and skills that interviewers at Ericsson expect are Python, GCP, Automation Testing, Cloud and DevOps.
What are the top questions asked in Ericsson Senior Devops Engineer interview?

Some of the top questions asked at the Ericsson Senior Devops Engineer interview -

  1. Write a python code to upload a content to...read more
  2. Write a pipeline code for java proj...read more
  3. Difficulties faced on technical ar...read more

Tell us how to improve this page.

Ericsson Senior Devops Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Join Ericsson Shaping the future one connection at a time.

Interview Questions from Similar Companies

Jio Interview Questions
4.0
 • 1.9k Interviews
Bharti Airtel Interview Questions
3.9
 • 867 Interviews
Vodafone Idea Interview Questions
4.0
 • 560 Interviews
Nokia Interview Questions
4.1
 • 267 Interviews
BT Group Interview Questions
3.9
 • 183 Interviews
ACT Fibernet Interview Questions
4.0
 • 134 Interviews
Verizon Interview Questions
4.1
 • 111 Interviews
View all
Ericsson Senior Devops Engineer Salary
based on 108 salaries
₹6 L/yr - ₹23.3 L/yr
22% less than the average Senior Devops Engineer Salary in India
View more details

Ericsson Senior Devops Engineer Reviews and Ratings

based on 7 reviews

3.5/5

Rating in categories

3.5

Skill development

4.6

Work-life balance

2.6

Salary

3.7

Job security

3.6

Company culture

2.7

Promotions

3.2

Work satisfaction

Explore 7 Reviews and Ratings
Senior DevOps Engineer

Bangalore / Bengaluru

4-13 Yrs

Not Disclosed

Explore more jobs
Senior Solution Integrator
2.4k salaries
unlock blur

₹6.5 L/yr - ₹23.5 L/yr

Senior Engineer
2.3k salaries
unlock blur

₹6.3 L/yr - ₹19 L/yr

Solution Architect
2.3k salaries
unlock blur

₹13.1 L/yr - ₹39 L/yr

Network Engineer
1.8k salaries
unlock blur

₹2 L/yr - ₹9.2 L/yr

Solution Integrator
1.7k salaries
unlock blur

₹4 L/yr - ₹14.3 L/yr

Explore more salaries
Compare Ericsson with

Jio

4.0
Compare

Vodafone Idea

4.0
Compare

Bharti Airtel

3.9
Compare

Tata Communications

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