EGIL - Ericsson Global India Limited interview experience Real time questions & tips from candidates to crack your interview

SDE

EGIL - Ericsson Global India Limited
upvote
share-icon
2 rounds | 3 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 1 month
Topics: Object oriented programming, Operating systems, DBMS, DSA, SQL.
Tip
Tip

Tip 1 : Be consistent
Tip 2 : Learn concepts
Tip 3 : Revise them regularly

Application process
Where: Campus
Eligibility: Above 7 Cgpa
Resume Tip
Resume tip

Tip 1 : Don’t over explain things
Tip 2 : Have some related projects as of the js

Interview rounds

01
Round
Medium
Online Coding Interview
Duration60 minutes
Interview date11 Nov 2021
Coding problem2

1. Missing Number

Moderate
30m average time
70% success
0/80
Asked in companies
SamsungFacebookApple

You are given an array/list ‘BINARYNUMS’ that consists of ‘N’ distinct strings which represent all integers from 0 to N in binary representation except one integer. This integer between 0 to ‘N’ whose binary representation is not present in list ‘BINARYNUMS’ is called ‘Missing Integer’.

Your task is to find the binary representation of that ‘Missing Integer’. You should return a string that represents this ‘Missing Integer’ in binary without leading zeros.

Note

1. There will be no leading zeros in any string in the list ‘BINARYNUMS’.

Example:

Consider N = 5 and the list ‘binaryNums’=  [“0”, “01”, “010”, “100”, “101”].  This list consists of the binary representation of numbers [0, 1, 2, 4, 5]. Clearly, the missing number is 3 and its binary representation will be “11”. So you should return string “11”.
Problem approach

Step 1 : Apply the for loop
Step 2 : Take a variable as count and with each iteration keep increasing it if matched with the interaction value I.e. value in the for loop

Try solving now

2. Combination Sum

Easy
15m average time
85% success
0/40
Asked in companies
UberFacebookLinkedIn

You are given an array 'ARR' of 'N' distinct positive integers. You are also given a non-negative integer 'B'.


Your task is to return all unique combinations in the array whose sum equals 'B'. A number can be chosen any number of times from the array 'ARR'.


Elements in each combination must be in non-decreasing order.


For example:
Let the array 'ARR' be [1, 2, 3] and 'B' = 5. Then all possible valid combinations are-

(1, 1, 1, 1, 1)
(1, 1, 1, 2)
(1, 1, 3)
(1, 2, 2)
(2, 3)
Problem approach

We can solve using the backtracking approach.

Try solving now
02
Round
Easy
Video Call
Duration40 minutes
Interview date12 Nov 2021
Coding problem1

This round is the Technical Interview Round. The interview duration will be of 1 hour and the questions will be asked on various topics related to the computer subjects and SQL Query.

1. SQL Question

Write a query to fetch the number of employees working in the department ‘HR’.

Problem approach

SELECT COUNT(*) FROM EmployeeInfo WHERE Department = 'HR';

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

How do you remove whitespace from the start of a string?

Choose another skill to practice
Similar interview experiences
Automation Engineer
3 rounds | 3 problems
Interviewed by EGIL - Ericsson Global India Limited
1497 views
0 comments
0 upvotes
Associate Cloud Engineer
4 rounds | 4 problems
Interviewed by EGIL - Ericsson Global India Limited
1048 views
0 comments
0 upvotes
Software Developer
2 rounds | 2 problems
Interviewed by EGIL - Ericsson Global India Limited
980 views
0 comments
0 upvotes
Support Engineer
3 rounds | 3 problems
Interviewed by EGIL - Ericsson Global India Limited
655 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE
3 rounds | 6 problems
Interviewed by PhonePe
0 views
0 comments
0 upvotes
company logo
SDE
5 rounds | 8 problems
Interviewed by Mathworks
1223 views
0 comments
0 upvotes
company logo
SDE
4 rounds | 7 problems
Interviewed by PhonePe
0 views
0 comments
0 upvotes