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 Developer Interview Questions and Answers

Updated 28 Oct 2024

Ericsson Developer Interview Experiences

2 interviews found

Developer Interview Questions & Answers

user image UNHCR Qo

posted on 28 Oct 2024

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

I applied via Referral and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. What do you expect yourself to be in 5 years
  • Ans. 

    In 5 years, I expect to have grown into a senior developer role, leading projects and mentoring junior team members.

    • Continuing to improve my technical skills through ongoing learning and certifications

    • Taking on more responsibilities in project management and leadership

    • Mentoring junior developers to help them grow in their careers

    • Possibly pursuing a specialization in a specific technology or industry

    • Seeking opportunitie...

  • Answered by AI
  • Q2. How your previous classmates describe you
Round 2 - Coding Test 

Coding test to make sure candidates knowing how to programming

Developer Interview Questions & Answers

user image Anonymous

posted on 2 Sep 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - HR 

(1 Question)

  • Q1. Telle me about yourself
  • Ans. 

    I am a passionate developer with 5 years of experience in web development. I enjoy solving complex problems and learning new technologies.

    • 5 years of experience in web development

    • Passionate about solving complex problems

    • Enjoy learning new technologies

  • Answered by AI
Round 2 - Coding Test 

Build tic tac in react

Developer Interview Questions Asked at Other Companies

asked in HARMAN
Q1. Which programming language do you use regular in work
Q2. Given a 2 dim array, find an element which is the maximum in its ... read more
asked in HARMAN
Q3. What step do you take to ensure accurate estimates for project
Q4. Solve the problems: Write a formula to display A if A is present, ... read more
Q5. Can you describe “method overloading” versus “method overriding”? ... read more

Interview questions from similar companies

Interview Questionnaire 

10 Questions

  • Q1. All project related questions .(He found some fault and asked to remove it)?
  • Q2. Why do we need garbage collection and how it is done in JAVA ?
  • Ans. 

    Garbage collection is necessary to free up memory occupied by unused objects. Java uses automatic garbage collection.

    • Garbage collection helps prevent memory leaks and improves performance.

    • Java uses a mark-and-sweep algorithm to identify and remove unused objects.

    • The JVM periodically checks for unused objects and frees up memory occupied by them.

    • Developers can also manually trigger garbage collection using System.gc() m...

  • Answered by AI
  • Q3. Difference between TCP and UDP ?
  • Ans. 

    TCP is a connection-oriented protocol while UDP is connectionless.

    • TCP provides reliable data transfer while UDP does not guarantee reliability.

    • TCP uses flow control and congestion control while UDP does not.

    • TCP is slower than UDP due to the overhead of establishing and maintaining a connection.

    • UDP is faster than TCP for applications that can tolerate data loss such as video streaming or online gaming.

  • Answered by AI
  • Q4. In which scenario do we need UDP ?
  • Ans. 

    UDP is used in scenarios where speed is more important than reliability, such as online gaming and video streaming.

    • UDP is a connectionless protocol that does not guarantee delivery of packets

    • It is faster than TCP because it does not have to establish a connection before sending data

    • UDP is commonly used in online gaming, video streaming, and VoIP applications

    • It is also used for broadcasting and multicasting data to mult

  • Answered by AI
  • Q5. Discussion on Hashmap , Collision function , heap data structure
  • Q6. Two puzzles a. Given a bar , cut it twice and pay for 7 days?
  • Q7. B. three ants are running on edges of a equilateral triangle with same speed. What is prob that dey will never meet?
  • Ans. 

    The probability that three ants running on the edges of an equilateral triangle will never meet is 1/3.

    • The ants will never meet if they all move in the same direction (clockwise or counterclockwise) at the same speed.

    • The probability of this happening is 1/3, as each ant has two possible directions to choose from.

    • Example: If one ant starts moving clockwise, the other two ants must also move clockwise to never meet.

  • Answered by AI
  • Q8. Tell me about yourself ?
  • Ans. 

    I am a software developer with experience in Java and Python.

    • I have a Bachelor's degree in Computer Science.

    • I have worked on various projects involving web development and data analysis.

    • I am proficient in Java and Python programming languages.

    • I am a quick learner and enjoy working in a team environment.

  • Answered by AI
  • Q9. Where do you see yourself in 5 yrs ?
  • Ans. 

    In 5 years, I see myself as a senior software developer leading a team of developers to create innovative solutions.

    • Leading a team of developers

    • Creating innovative solutions

    • Continuing to learn and grow as a developer

    • Contributing to the success of the company

    • Building strong relationships with colleagues and clients

  • Answered by AI
  • Q10. Your strengths and asked to justify it (Jitni bakar kr skte ho kr do ) ?

Interview Preparation Tips

Round: Group Discussion
Experience: Relevance of technology

Round: Technical Interview
Experience: 1. All project related questions .(He found some fault and asked to remove it)?
2. Why do we need garbage collection and how it is done in JAVA ?
3. Difference between TCP and UDP ?
4. In which scenario do we need UDP ?
5. Discussion on Hashmap , Collision function , heap data structure
6. Two puzzles
a. Given a bar , cut it twice and pay for 7 days?
b. three ants are running on edges of a equilateral triangle with same speed. What is prob that dey will never meet?

Round: HR Interview
Experience: 1. Tell me about yourself ?
2. Where do you see yourself in 5 yrs ?
3. Your strengths and asked to justify it (Jitni bakar kr skte ho kr do ) ?

College Name: NA

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. Basic java questions and a few easy to medium leetcode.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare from leetcode and language according to the profile.

Interview Questionnaire 

7 Questions

  • Q1. Array sorting – Bubble sort and its complexity?
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Bubble sort has a worst-case and average complexity of O(n^2), where n is the number of items being sorted.

    • It is not efficient for large lists and is generally used for educational purposes.

    • Example: Sorting an array of strings in alphabetical order using bubble sort.

  • Answered by AI
  • Q2. Various storage classes in C? Difference between auto, static?
  • Ans. 

    Auto and static are two storage classes in C. Auto variables are local to a function while static variables retain their value between function calls.

    • Auto variables are created when a function is called and destroyed when the function ends

    • Static variables are initialized only once and retain their value between function calls

    • Auto variables have garbage value if not initialized while static variables are initialized to

  • Answered by AI
  • Q3. Questions on Pointers, memory management, scope of variables, etc were asked
  • Q4. What are your strengths and weaknesses?
  • Ans. 

    My strengths include problem-solving, attention to detail, and adaptability. My weaknesses include public speaking and impatience.

    • Strengths: problem-solving, attention to detail, adaptability

    • Weaknesses: public speaking, impatience

  • Answered by AI
  • Q5. Where do you see yourself 5 years from now?
  • Ans. 

    In 5 years, I see myself as a senior software developer leading a team of developers to create innovative solutions.

    • Leading a team of developers to create innovative solutions

    • Continuing to learn and stay up-to-date with the latest technologies

    • Contributing to the growth and success of the company

    • Mentoring and coaching junior developers

    • Taking on more responsibilities and challenges

  • Answered by AI
  • Q6. What are your interests?
  • Ans. 

    I am interested in exploring new technologies and learning new programming languages.

    • Exploring new technologies

    • Learning new programming languages

    • Attending tech conferences and meetups

    • Contributing to open source projects

  • Answered by AI
  • Q7. Are you ready to relocate?
  • Ans. 

    Yes, I am open to relocation for the right opportunity.

    • I am willing to relocate for the right job opportunity

    • I am open to exploring new cities and cultures

    • I am willing to consider relocation assistance

    • I am excited about the prospect of working in a new environment

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The written test had 75 questions and we were allotted 80 minutes for the same.There were four sections: Verbal, Analytical, Attention to Detail and Technical (C and Data Structures).First, there was the verbal section. Basically, questions on articles, synonyms and antonyms were asked. Two passages were also given and related questions were asked. The analytical section included questions from quant (set theory, data sufficiency, cubes,etc.) and Logical Reasoning.
The third section was the easiest and did not require any special preparation. From a group of patterns, we had to determine if they were alike or different.
The fourth was the technical section and had 5 questions each from C and DS. This was the toughest section.Time management is absolutely important. There were sectional cutoffs and so we had to clear each section.

Round: Technical Interview
Experience: It was the PI round. First, we had the technical interview. Various questions on C and Data Structures were asked.Next, we had the HR interview. Here, the usual questions were asked. Some of them were:

Round: HR Interview
Experience: Also, questions from what I had written in my CV were asked.On the whole, the interview went quite well. And finally, I was selected.

Skills: Algorithm, C, C++
College Name: NIT PATNA

Skills evaluated in this interview

Interview Questionnaire 

8 Questions

  • Q1. Basic coding question from C, Data Structures and DBMS
  • Q2. Questions from java and C++ (as it was mentioned in the resume)
  • Q3. The main point of concentration was projects and training
  • Q4. Some people were also asked questions related to data communication and basic electronics
  • Q5. Questions like ‘Tell me about yourself’. (Try to create a good impression)
  • Q6. Questions on your personality. Show confidence while answering. The HR might try to oppose what you say and see how you react
  • Q7. Standard puzzles?
  • Q8. Questions like, ‘Why do you want to join Verizon?’, ‘Why should we hire you?’

Interview Preparation Tips

Round: Test
Experience: Consisted of Quantitative aptitude, Logical reasoning, Data Interpretation and English.(Time management is important)

Skills: C, C++, Data structure, Algorithm
College Name: na
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are the modules you have worked
  • Ans. 

    I have worked on modules such as user authentication, data processing, API integration, and UI development.

    • User authentication module - Implemented login, registration, and password reset functionalities.

    • Data processing module - Developed algorithms for data manipulation and analysis.

    • API integration module - Integrated third-party APIs for various functionalities.

    • UI development module - Designed and implemented user in

  • Answered by AI
  • Q2. Integrations and APIs
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Apr 2023. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Number manipulation-based games. Basic aptitude questions (Number System). Verbal (spell-check, Vocabulary, Sentence re-ordering, Word filling)

Round 3 - Coding Test 

One easy and one intermediate (based on a 2-pointer approach).

Round 4 - Technical 

(1 Question)

  • Q1. Questions were asked based on the projects mentioned in my resume .What is the purpose of my projects and who are the end users? Explain certain sorting algorithms (Quick sort, Merge sort, Bubble sort). Ex...
Round 5 - HR 

(1 Question)

  • Q1. Why Verizon? What is the one thing that attracted you during the pre-placement talk? What are your strengths? What is the one thing that you’ve done during these 4 years of college that you are proud of? A...
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Java Questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Questions on core concepts like oops in backend

Ericsson Interview FAQs

How many rounds are there in Ericsson Developer interview?
Ericsson interview process usually has 2 rounds. The most common rounds in the Ericsson interview process are HR and Coding Test.
How to prepare for Ericsson Developer 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 HTML, CRM, microsoft, PHP and Data Management.

Tell us how to improve this page.

Ericsson Developer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
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
4.0
 • 857 Interviews
Vodafone Idea Interview Questions
4.0
 • 558 Interviews
Nokia Interview Questions
4.1
 • 267 Interviews
BT Group Interview Questions
3.9
 • 182 Interviews
ACT Fibernet Interview Questions
4.0
 • 133 Interviews
Verizon Interview Questions
4.1
 • 110 Interviews
AT&T Interview Questions
4.1
 • 53 Interviews
View all
Ericsson Developer Salary
based on 41 salaries
₹4.5 L/yr - ₹15.7 L/yr
38% more than the average Developer Salary in India
View more details

Ericsson Developer Reviews and Ratings

based on 8 reviews

4.4/5

Rating in categories

4.6

Skill development

4.3

Work-life balance

3.9

Salary

4.8

Job security

4.7

Company culture

4.4

Promotions

4.6

Work satisfaction

Explore 8 Reviews and Ratings
Senior Solution Integrator
2.4k salaries
unlock blur

₹6.5 L/yr - ₹22 L/yr

Solution Architect
2.3k salaries
unlock blur

₹13.1 L/yr - ₹39 L/yr

Senior Engineer
2.2k salaries
unlock blur

₹6.3 L/yr - ₹19 L/yr

Network Engineer
1.8k salaries
unlock blur

₹2.4 L/yr - ₹9.5 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