Upload Button Icon Add office photos
Engaged Employer

i

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

eGain Communications Verified Tick

Compare button icon Compare button icon Compare
4.0

based on 66 Reviews

Filter interviews by

eGain Communications Software Developer Interview Questions and Answers

Updated 9 Sep 2023

eGain Communications Software Developer Interview Experiences

1 interview found

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

I applied via LinkedIn and was interviewed before Sep 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 - Aptitude Test 

Basic oops questions and aptitude test

Round 3 - Communication test 

(2 Questions)

  • Q1. English questions to test communication skills
  • Q2. MCQ based questions
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion

Interview questions from similar companies

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

It was combination of mcqs and 2 coding questions

Round 2 - Technical 

(3 Questions)

  • Q1. What is oops concepts
  • Ans. 

    Object-oriented programming concepts that focus on objects and classes for better code organization and reusability.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Ability of a class to inherit properties and behavior from another class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation det...

  • Answered by AI
  • Q2. Difference between java nd putjon
  • Ans. 

    Java is a programming language while Putjon is not a recognized term in software development.

    • Java is a widely used programming language for developing applications.

    • Putjon is not a recognized term in software development, it may be a typo or a specific term not commonly used.

    • There is no direct comparison between Java and Putjon as they are not related.

  • Answered by AI
  • Q3. Tell about ur project
Round 3 - One-on-one 

(2 Questions)

  • Q1. What are your strengths
  • Q2. What is ur greatest comeback

Skills evaluated in this interview

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 Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Oops? .net core features
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via LinkedIn and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Coding Test 

1st round is coding assessment round based on graph and hashmaps

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

I applied via Campus Placement and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Coding Test 

There were 5 question out of which 2 were coding Data Structure problems , 1 was SQL based , 1 was AI based Problem ( Machine Learning ) and 1 was to create UML Diagram.
First Coding question was pretty easy , other one was kinda tough , UML Diagram was also easy and SQL query was of moderate level.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep Practising u'll definately make it.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via campus placement at Kongu Engineering College, Erode and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

1 hr and it is pretty easy and having snippets technical questions etc

Round 2 - Coding Test 

I didn't selected for second round

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare coding basic should be strong in basic and study the aptitude and thats pretty easy
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is let, const and var?
  • Ans. 

    let, const, and var are keywords used for variable declaration in JavaScript.

    • let is block-scoped and can be reassigned.

    • const is block-scoped but cannot be reassigned.

    • var is function-scoped and can be reassigned.

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. String palindrome
  • Q2. Find all anagrams in a string
  • Ans. 

    Find all anagrams in a string

    • Create a hashmap to store the frequency of characters in the input string

    • Iterate through the input string and check if the frequency of characters matches the hashmap for each substring of the same length

    • Store the substrings that are anagrams in an array and return it

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. Explain basics of c#
  • Ans. 

    C# is a programming language developed by Microsoft for building a wide range of applications on the .NET framework.

    • C# is an object-oriented language with features like classes, inheritance, and polymorphism.

    • It is strongly typed, meaning variables must be declared with a specific data type.

    • C# supports modern programming concepts like async/await for asynchronous programming.

    • It is commonly used for developing desktop, w...

  • Answered by AI
  • Q2. C# basics oops sql server

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare basics

Skills evaluated in this interview

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 120 minutes
Round difficulty - Hard

This round was very difficult. I never do these much difficulty level of coding questions. But i give my best, and just do every questions by using step by step process.

  • Q1. Hourglass Pattern

    You are given an integer N and you have to print the following pattern.

    For N=5:

    For N=6:

    Alt Text

    Input Format:
    The first and only line of input contains an integer, that denotes the va...

  • Q2. BFS in Graph

    You are given an undirected and disconnected graph G(V, E) having V vertices numbered from 0 to V-1 and E edges. Your task is to print its BFS traversal starting from the 0th vertex.

    BFS or ...

  • Ans. Using queue

    Let us consider a function BFS that accepts a list of edges, EDGES, and the number of vertices VERTEX as a parameter and do: 

    1. Create ADJACENCYMATRIX from EDGES.
    2. Define a boolean array VISITED to store nodes that are already visited.
    3. Iterate over VISITED[i] for each 0<= i < VISITED.LENGTH, and check:
      1. If VISITED[i] is FALSE, call BFSHELPER function for ADJACENCYMATRIX, i and VISITED.

    Now, the function BF...

  • Answered by CodingNinjas
  • Q3. Sort a stack

    Given a stack, sort the elements inside that stack in ascending order using only push and pop operation. You can use one additional stack only.

    For eg.

    Input Stack :  5 (top)
                ...
Round 2 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

This round is also coding round in this round we have a small video call interaction too, in which hr ask few questions to only those whose coding question is correct.

  • Q1. Next smaller Palindrome

    You are given a number 'N' in the form of a string 'S', which is a palindrome. You need to find the greatest number strictly less than 'N' which is also a pa...

  • Ans. Brute Force
    • Given the fact that the input number is a palindrome itself makes this problem very trivial.
    • Let us assume that the given string str is a palindrome, so we know that ‘S’ comprises of two halves  ‘S1’ and ‘S2’ i.e ‘S’ = ‘S1' + ‘S2', where ‘S1' and ‘S2’ are two strings, and ‘S2’ is the reverse of ‘S1’(in case of odd length palindromes ‘S2’ won’t have the last character of ‘S1’). So a change in any of the h...
  • Answered by CodingNinjas
  • Q2. Rotting Oranges

    You have been given a grid containing some oranges. Each cell of this grid has one of the three integers values:

  • Value 0 - representing an empty cell.
  • Value 1 - representing a fresh...
  • Ans. Naïve Solution

    The idea is very simple and naive. We will process the rotten oranges second by second. Each second, we rot all the fresh oranges that are adjacent to the already rotten oranges. The time by which there are no rotten oranges left to process will be our minimum time.

     

    In the first traversal of the grid, we will process all the cells with value 2 (rotten oranges). We will also mark their adjacent cells ...

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Development in GurgaonEligibility criteriaAbove 7 cgpaZIGRAM interview preparation:Topics to prepare for the interview - OOPS , Data Structures, Dynamic Programming, Algorithms from variuos coding platforms , Database Management System, Operating System, Web developmentTime required to prepare for the interview - 2 monthInterview preparation tips for other job seekers

Tip 1 : Relax and don't stress. Practice
Tip 2 : Build Resume according to Job Description , but don't lie.
Tip 3 : Have good projects and knowledge regarding important subjects related to interviews

Application resume tips for other job seekers

Tip 1 : Include only genuine information, never lie in resume , it will impact to bad impression. 
Tip 2 : Skills relevant to Job Description
Tip 3 : Resume should not be more than 2 pages 
Tip 4 : Have some projects and internship on your resume because it will give good impression

Final outcome of the interviewSelected

Skills evaluated in this interview

eGain Communications Interview FAQs

How many rounds are there in eGain Communications Software Developer interview?
eGain Communications interview process usually has 4 rounds. The most common rounds in the eGain Communications interview process are HR, Resume Shortlist and Aptitude Test.
What are the top questions asked in eGain Communications Software Developer interview?

Some of the top questions asked at the eGain Communications Software Developer interview -

  1. English questions to test communication ski...read more
  2. MCQ based questi...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 eGain Communications interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
eGain Communications Software Developer Salary
based on 19 salaries
₹3.9 L/yr - ₹21.2 L/yr
50% more than the average Software Developer Salary in India
View more details

eGain Communications Software Developer Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

3.2

Skill development

4.2

Work-Life balance

2.5

Salary & Benefits

4.2

Job Security

3.2

Company culture

2.3

Promotions/Appraisal

3.3

Work Satisfaction

Explore 2 Reviews and Ratings
Softwaretest Engineer
137 salaries
unlock blur

₹3.2 L/yr - ₹5.8 L/yr

QA Engineer
35 salaries
unlock blur

₹2.5 L/yr - ₹12.8 L/yr

Software Engineer
27 salaries
unlock blur

₹3.8 L/yr - ₹15.1 L/yr

Software Quality Analyst
20 salaries
unlock blur

₹4 L/yr - ₹5.6 L/yr

Software Developer
19 salaries
unlock blur

₹3.9 L/yr - ₹21.2 L/yr

Explore more salaries
Compare eGain Communications with

Freshworks

3.5
Compare

Zendesk

4.3
Compare

Salesforce

4.1
Compare

Oracle

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview