Upload Button Icon Add office photos

Filter interviews by

IDEA ELAN Software Engineer Interview Questions and Answers

Updated 14 Mar 2024

IDEA ELAN Software Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic Aptitude test, easy questions only.

Round 2 - Technical 

(1 Question)

  • Q1. From your resume they will ask basic question based on the skills you have given. So if you have given html, css and js, they will ask very basic questions of these.
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions only. They were easy. Just speak confidently

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Core java

Interview Questionnaire 

1 Question

  • Q1. About study , general questions and company

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

Interview Questionnaire 

3 Questions

  • Q1. About numeric Data types
  • Q2. About DB2 Precompilation
  • Q3. Null indicator

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with basics regarding cobol and JCL

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

Interview Questionnaire 

1 Question

  • Q1. Basic c# questions, sql, MVC, microservices

Interview Preparation Tips

Interview preparation tips for other job seekers - Its not that complicated. Be confident with the basics, oops concepts, sql, etc

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

Timing was in the morning around 10 am. This round was conducted on Hackerrank and contained 2 coding questions of easy to medium level which varied for all the students taking the test. There were 20 MCQs from topics like Java, Operating Systems, Data structures, and SQL.
I also gave a test for this company last year during internships. At that time MCQs were based on aptitude and reasoning. Also at that time, there were 2 coding questions and timing was dividing according to sections.

  • Q1. 

    Nth Element Of Modified Fibonacci Series

    Given two integers X and Y as the first two numbers of a series, and an integer N, determine the Nth element of the series following the Fibonacci rule: f(x) = f(x...

  • Ans. 

    Calculate the Nth element of a modified Fibonacci series given the first two numbers and N, with the result modulo 10^9 + 7.

    • Implement a function to calculate the Nth element of the series using the Fibonacci rule f(x) = f(x - 1) + f(x - 2)

    • Return the answer modulo 10^9 + 7 due to the possibility of a very large result

    • The series starts with the first two numbers X and Y, and the position N in the series

  • Answered by AI
  • Q2. 

    Consonant Counting Problem Statement

    Given a string STR comprising uppercase and lowercase characters and spaces, your task is to count the number of consonants in the string.

    A consonant is defined as a...

  • Ans. 

    Count the number of consonants in a given string containing uppercase and lowercase characters and spaces.

    • Iterate through each character in the string and check if it is a consonant (not a vowel).

    • Keep a count of the consonants encountered while iterating through the string.

    • Return the total count of consonants at the end.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

This round was conducted on Cisco WebEx and the interviewer was very friendly. Firstly, we were asked briefly to introduce ourselves. Then he moved on to the CV and asked various questions about the projects, certifications, and internships mentioned. He asked about the implementation of a few features in some of the projects and also about the challenges I faced while doing the project and how I finally overcome the challenge. He also asked about various skills mentioned in the resume.

  • Q1. 

    Merge Two Sorted Linked Lists Problem Statement

    You are provided with two sorted linked lists. Your task is to merge them into a single sorted linked list and return the head of the combined linked list.

    ...
  • Ans. 

    Merge two sorted linked lists into a single sorted linked list with constant space complexity and linear time complexity.

    • Create a dummy node to start the merged list

    • Compare the values of the two linked lists and append the smaller value to the merged list

    • Move the pointer of the merged list and the pointer of the smaller value's linked list

    • Continue this process until one of the linked lists is fully traversed

    • Append the ...

  • Answered by AI
Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

This round started with my Introduction. Then he moved on to behavioral questions just to get an understanding of how we deal with situations and our thinking process.
 

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dr. B.R. Ambedkar National Institute of Technology. I applied for the job as Software Engineer in HyderabadEligibility criteriaAbove 7.5 CGPAOptum interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS(C++ & Java) , DBMS, Operating Systems, Aptitude, Resume(Projects)Time required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do at least 2 good projects and make an attractive resume mentioning all your skills in the best possible way(Don't include any False commitments)
Tip 2 : Practice easy to medium level coding questions from geeks for geeks or Leetcode.
Tip 3 : Prepare everything mentioned in your resume properly including Java, SQL.

Application resume tips for other job seekers

Tip 1 : Include projects and experiences in detail.
Tip 2 : Make an eye-catching resume clearly mentioning all your skills including subjects like data structures, JAVA, SQL, etc. The database is a very important skill if you have its knowledge.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Oct 2021. 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 

All aptitude topic is tested if practiced well will be able to crack it

Round 3 - Technical 

(1 Question)

  • Q1. From basic programming concepts the question were framed and pseudo codes where asked
Round 4 - HR 

(1 Question)

  • Q1. Tell about yourself and why you want to join here

Interview Preparation Tips

Interview preparation tips for other job seekers - Good place to learn and work. Had a good ambiance in office

Interview Questionnaire 

3 Questions

  • Q1. Basic questions on OOP, Android system
  • Q2. Design patterns in android system
  • Ans. 

    Design patterns are reusable solutions to common software problems. Android system uses various design patterns.

    • MVC (Model-View-Controller) pattern is used in Android to separate UI logic from business logic.

    • Singleton pattern is used to ensure only one instance of a class is created.

    • Observer pattern is used to notify changes in data to multiple components.

    • Builder pattern is used to simplify complex object creation.

    • Adap...

  • Answered by AI
  • Q3. Dependency injection, SOLID

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. How can we remove duplicate objects from array of multiple objects.
  • Ans. 

    Remove duplicate objects from an array of multiple objects.

    • Create a new array to store unique objects

    • Loop through the original array and check if the object already exists in the new array

    • If not, add it to the new array

    • Return the new array

  • Answered by AI
  • Q2. How to maintain state if code if repeated one.
  • Ans. 

    Maintain state by using a global variable or a state management system.

    • Use a global variable to store the state and access it whenever needed.

    • Use a state management system like Redux or MobX to manage the state.

    • Avoid using local variables or closures to store state as they will be lost when the code is repeated.

    • Consider using object-oriented programming principles to encapsulate state within objects.

    • Use functional prog...

  • Answered by AI

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

Interview Questionnaire 

2 Questions

  • Q1. 1.OOPS Inheritance JVM JRE JIT Access modifiers Default values for all primitive datatypes Collection framework 2.HR Productive hobby Do you follow developers online? Server installed in your syst...
  • Q2. DBMS ACID properties
  • Ans. 

    ACID properties ensure database transactions are reliable and consistent.

    • ACID stands for Atomicity, Consistency, Isolation, and Durability.

    • Atomicity ensures that a transaction is treated as a single, indivisible unit of work.

    • Consistency ensures that a transaction brings the database from one valid state to another.

    • Isolation ensures that concurrent transactions do not interfere with each other.

    • Durability ensures that on...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with OOPS concept

Skills evaluated in this interview

IDEA ELAN Interview FAQs

How many rounds are there in IDEA ELAN Software Engineer interview?
IDEA ELAN interview process usually has 3 rounds. The most common rounds in the IDEA ELAN interview process are Aptitude Test, Technical and HR.

Tell us how to improve this page.

IDEA ELAN Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
IDEA ELAN Software Engineer Salary
based on 15 salaries
₹3.6 L/yr - ₹8 L/yr
43% less than the average Software Engineer Salary in India
View more details

IDEA ELAN Software Engineer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
15 salaries
unlock blur

₹3.6 L/yr - ₹8 L/yr

Software Developer
8 salaries
unlock blur

₹4 L/yr - ₹14.6 L/yr

Softwaretest Engineer
8 salaries
unlock blur

₹2.4 L/yr - ₹8.5 L/yr

Junior Software Developer
5 salaries
unlock blur

₹1.1 L/yr - ₹4.2 L/yr

Junior Software Engineer
5 salaries
unlock blur

₹2.4 L/yr - ₹5 L/yr

Explore more salaries
Compare IDEA ELAN with

Cognizant

3.7
Compare

Sutherland Global Services

3.6
Compare

Optum Global Solutions

4.0
Compare

Hexaware Technologies

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