Upload Button Icon Add office photos

Filter interviews by

Excelon Solutions Software Developer Interview Questions and Answers

Updated 19 Jun 2024

10 Interview questions

A Software Developer was asked 12mo ago
Q. Explain the difference between final, finalize, and finally.
Ans. 

final is a keyword used to declare constants, finalize is a method used for cleanup operations, and finally is a block used for exception handling.

  • final is used to declare constants in Java

  • finalize is a method in Java used for cleanup operations before an object is garbage collected

  • finally is a block used in exception handling to ensure a piece of code is always executed

A Software Developer was asked 12mo ago
Q. What is the difference between a constructor and a method?
Ans. 

Constructor is a special method used to initialize an object, while a method is a function associated with an object to perform a specific task.

  • Constructor is called automatically when an object is created, while a method is called explicitly by the programmer.

  • Constructors have the same name as the class, while methods have unique names.

  • Constructors do not have a return type, while methods can have a return type.

  • E...

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
A Software Developer was asked 12mo ago
Q. What is the difference between static and non-static methods?
Ans. 

Static methods belong to the class itself, while non-static methods belong to instances of the class.

  • Static methods can be called without creating an instance of the class.

  • Non-static methods require an instance of the class to be created before they can be called.

  • Static methods cannot access instance variables, while non-static methods can.

  • Example: Math.sqrt() is a static method, while String.length() is a non-sta...

A Software Developer was asked 12mo ago
Q. Write code to add an employee table to the database using a Spring Boot application and retrieve the data of the employee with the second-highest salary.
Ans. 

Code to add employee table in db using Spring Boot app and retrieve data of employee with second highest salary

  • Create Employee entity class with fields like id, name, salary

  • Create EmployeeRepository interface extending JpaRepository

  • Implement service class with methods to add employee to db and retrieve employee with second highest salary

  • Use @Query annotation in repository to write custom query to r...

A Software Developer was asked 12mo ago
Q. How do you connect a database to a Spring Boot application?
Ans. 

Use Spring Data JPA to connect a database to a Spring Boot application.

  • Add the necessary dependencies in the pom.xml file for Spring Data JPA and the database driver.

  • Configure the database connection properties in the application.properties file.

  • Create a repository interface that extends JpaRepository to interact with the database.

  • Use annotations such as @Entity, @Table, @Id, @Column, etc., to map Java objects to ...

A Software Developer was asked 12mo ago
Q. What is the difference between Spring and Spring Boot frameworks?
Ans. 

Spring is a framework for building Java applications, while Spring Boot is an extension that simplifies the setup and development process.

  • Spring is a comprehensive framework that provides support for various Java technologies like JDBC, JPA, and REST.

  • Spring Boot is an opinionated extension of Spring that aims to simplify the setup and development of Spring applications by providing defaults for configuration.

  • Sprin...

A Software Developer was asked 12mo ago
Q. Write code to retrieve the Department from the Department table where the department ID in the Employee and Department tables refers to the same employee.
Ans. 

Join Dept table with emp table on dept id to get department of employees

  • Use SQL JOIN to connect Dept and emp tables on dept id

  • Select the Dept column from Dept table to get the department of employees

Are these interview questions helpful?
A Software Developer was asked 12mo ago
Q. Why is there no multiple inheritance in Java?
Ans. 

Java does not support multiple inheritance to avoid the diamond problem and maintain simplicity and clarity in the language.

  • Java supports single inheritance to prevent the diamond problem, where conflicts arise when a class inherits from two classes that have a common ancestor.

  • Multiple inheritance can lead to ambiguity and complexity in the code, making it harder to understand and maintain.

  • Java allows multiple int...

A Software Developer was asked 12mo ago
Q. Different injections in Spring boot
Ans. 

Different types of injections in Spring Boot include constructor injection, setter injection, and field injection.

  • Constructor injection: Dependencies are provided through a class constructor.

  • Setter injection: Dependencies are set through setter methods.

  • Field injection: Dependencies are injected directly into class fields.

A Software Developer was asked 12mo ago
Q. Different access keywords for methods
Ans. 

Access keywords control the visibility and accessibility of methods in a class.

  • public: accessible from any class

  • private: only accessible within the same class

  • protected: accessible within the same class and its subclasses

  • default (no keyword): accessible within the same package

Excelon Solutions Software Developer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Technical 

(8 Questions)

  • Q1. Difference between constructor and method
  • Ans. 

    Constructor is a special method used to initialize an object, while a method is a function associated with an object to perform a specific task.

    • Constructor is called automatically when an object is created, while a method is called explicitly by the programmer.

    • Constructors have the same name as the class, while methods have unique names.

    • Constructors do not have a return type, while methods can have a return type.

    • Exampl...

  • Answered by AI
  • Q2. Explain difference between final, finalize and finally
  • Ans. 

    final is a keyword used to declare constants, finalize is a method used for cleanup operations, and finally is a block used for exception handling.

    • final is used to declare constants in Java

    • finalize is a method in Java used for cleanup operations before an object is garbage collected

    • finally is a block used in exception handling to ensure a piece of code is always executed

  • Answered by AI
  • Q3. Different injections in Spring boot
  • Ans. 

    Different types of injections in Spring Boot include constructor injection, setter injection, and field injection.

    • Constructor injection: Dependencies are provided through a class constructor.

    • Setter injection: Dependencies are set through setter methods.

    • Field injection: Dependencies are injected directly into class fields.

  • Answered by AI
  • Q4. Difference between Spring and Spring boot frameworks
  • Ans. 

    Spring is a framework for building Java applications, while Spring Boot is an extension that simplifies the setup and development process.

    • Spring is a comprehensive framework that provides support for various Java technologies like JDBC, JPA, and REST.

    • Spring Boot is an opinionated extension of Spring that aims to simplify the setup and development of Spring applications by providing defaults for configuration.

    • Spring Boo...

  • Answered by AI
  • Q5. How to connect db to Springboot app
  • Ans. 

    Use Spring Data JPA to connect a database to a Spring Boot application.

    • Add the necessary dependencies in the pom.xml file for Spring Data JPA and the database driver.

    • Configure the database connection properties in the application.properties file.

    • Create a repository interface that extends JpaRepository to interact with the database.

    • Use annotations such as @Entity, @Table, @Id, @Column, etc., to map Java objects to datab...

  • Answered by AI
  • Q6. Different access keywords for methods
  • Ans. 

    Access keywords control the visibility and accessibility of methods in a class.

    • public: accessible from any class

    • private: only accessible within the same class

    • protected: accessible within the same class and its subclasses

    • default (no keyword): accessible within the same package

  • Answered by AI
  • Q7. Difference between static and non static methods
  • Ans. 

    Static methods belong to the class itself, while non-static methods belong to instances of the class.

    • Static methods can be called without creating an instance of the class.

    • Non-static methods require an instance of the class to be created before they can be called.

    • Static methods cannot access instance variables, while non-static methods can.

    • Example: Math.sqrt() is a static method, while String.length() is a non-static m...

  • Answered by AI
  • Q8. Why is there no multiple inheritance in Java?
  • Ans. 

    Java does not support multiple inheritance to avoid the diamond problem and maintain simplicity and clarity in the language.

    • Java supports single inheritance to prevent the diamond problem, where conflicts arise when a class inherits from two classes that have a common ancestor.

    • Multiple inheritance can lead to ambiguity and complexity in the code, making it harder to understand and maintain.

    • Java allows multiple interfac...

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Write code to add employee table into the db using Spring boot app and retrieve data of employee with the second highest salary
  • Ans. 

    Code to add employee table in db using Spring Boot app and retrieve data of employee with second highest salary

    • Create Employee entity class with fields like id, name, salary

    • Create EmployeeRepository interface extending JpaRepository

    • Implement service class with methods to add employee to db and retrieve employee with second highest salary

    • Use @Query annotation in repository to write custom query to retrie...

  • Answered by AI
  • Q2. Write code to get the Dept from Dept table where dept id in emp and Dept table point to the same employee
  • Ans. 

    Join Dept table with emp table on dept id to get department of employees

    • Use SQL JOIN to connect Dept and emp tables on dept id

    • Select the Dept column from Dept table to get the department of employees

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. When will you be able to start the job?
  • Ans. 

    I can start immediately or within two weeks, depending on your needs and any onboarding processes required.

    • I am available to start immediately if needed.

    • If you prefer a smoother transition, I can begin in two weeks.

    • I can accommodate any specific onboarding requirements you may have.

    • I am flexible and can adjust my start date based on team needs.

  • Answered by AI
  • Q2. What's your salary and expectations?
  • Ans. 

    I am looking for a competitive salary that reflects my skills and experience in software development.

    • Based on my research, the average salary for a software developer in this region is between $80,000 and $100,000.

    • I have over 5 years of experience in full-stack development, which I believe warrants a salary on the higher end of that range.

    • I am open to discussing the full compensation package, including benefits and opp...

  • Answered by AI
  • Q3. Are you willing to relocate?

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy to moderate level but ask in depth questions so learn properly

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Excelon Solutions?
Ask anonymously on communities.

Interview questions from similar companies

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

VERBAL QUANT DI/LR and Picture based test

Round 3 - Technical 

(1 Question)

  • Q1. Write a fibonaci series in c++ or C?
  • Ans. 

    Fibonacci series can be easily implemented using loops in C++ or C.

    • Declare variables for first two numbers of the series

    • Use a loop to calculate and print the next number in the series

    • Repeat the loop until desired number of terms are printed

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Informed about the policies and made us sign a document

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be calm and composed while answering the questions.

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more

Interview Questionnaire 

1 Question

  • Q1. Tell me about software system

I applied via Referral and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What is abstract class, what is list, SQL,ADO.net
  • Ans. 

    Abstract class is a class that cannot be instantiated, List is a collection of objects, SQL is a language used to manage databases, ADO.net is a framework for accessing databases.

    • Abstract class is used as a base class for other classes

    • List is a generic collection of objects

    • SQL is used to create, modify, and query databases

    • ADO.net provides a set of classes for accessing databases

    • Example: abstract class Animal { public a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer wanted to test both my knowledge and communication skills. most of asked to me Dot net quetions.

Skills evaluated in this interview

I applied via Company Website and was interviewed before Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself?
  • Q2. Normalization concept,Java basics inheritance overloading, encapsulation ,update table ,related to projects in final year
  • Q3. Situation based questions based on project

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and confident and be genuine whatever you explain that should be very specific to question and if u are feeling narvous then put a gentle smile on your face,if you don't know about question ask then try little bit and say sir I will read about this.
All the Best😊😊

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

Interview Questionnaire 

4 Questions

  • Q1. Tell me about yourself?
  • Ans. 

    I'm a passionate software developer with 5 years of experience in building scalable web applications and a strong focus on user experience.

    • Experience in full-stack development using technologies like React, Node.js, and MongoDB.

    • Led a team project that improved application performance by 30% through code optimization.

    • Strong background in Agile methodologies, having participated in multiple sprints and retrospectives.

    • Dev...

  • Answered by AI
  • Q2. What are your Strengths?
  • Ans. 

    I excel in problem-solving, collaboration, and adaptability, which enhance my effectiveness as a software developer.

    • Strong problem-solving skills: I enjoy tackling complex coding challenges, like optimizing algorithms for better performance.

    • Effective collaboration: I have successfully worked in Agile teams, contributing to projects like a web application that improved user engagement.

    • Adaptability: I quickly learn new t...

  • Answered by AI
  • Q3. What are your Weakness?
  • Ans. 

    I tend to be overly critical of my work, which can slow down my progress and affect my confidence in delivering projects.

    • I often spend too much time refining code, which can delay project timelines. For example, I once spent an extra week on a feature.

    • I sometimes struggle with delegation, preferring to handle tasks myself to ensure quality. This was evident in a group project where I took on too much.

    • I can be hesitant ...

  • Answered by AI
  • Q4. What are your salary expectations?
  • Ans. 

    I am looking for a competitive salary that reflects my skills and experience in software development.

    • Based on my research, the average salary for a software developer in this region is between $80,000 and $100,000.

    • I have over 5 years of experience in full-stack development, which I believe warrants a salary towards the higher end of that range.

    • I am open to discussing the entire compensation package, including benefits ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your Homework?
Practice
Provide evidence &Data

I applied via Referral and was interviewed before Jun 2021. There were 2 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 - Coding Test 

Java, program logic, software engineering

Interview Preparation Tips

Topics to prepare for Infosys Software Developer interview:
  • Java
Interview preparation tips for other job seekers - Be sharp and alert, focus on topics that you know. Work your way up
Are these interview questions helpful?

I applied via Recruitment Consulltant and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Java. Spring boot, micro service, hibernate
Round 2 - HR 

(1 Question)

  • Q1. Salary, technical, company details

Interview Preparation Tips

Topics to prepare for Accenture Software Developer interview:
  • Java
  • Spring Boot
  • Micro service
  • Hibernate
  • JSP
Interview preparation tips for other job seekers - Java, spring boot, micro service, hibernate

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

Interview Questionnaire 

1 Question

  • Q1. .NET basics

I applied via Walk-in and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Assignment 
Round 2 - HR 

(7 Questions)

  • Q1. Share details of your previous job.
  • Q2. Why should we hire you?
  • Q3. What are your salary expectations?
  • Q4. What is your family background?
  • Ans. 

    I come from a close-knit family that values education, creativity, and support, shaping my personal and professional growth.

    • Supportive Parents: My parents encouraged my interests in technology from a young age, providing resources for learning programming.

    • Siblings: I have a younger sister who is passionate about art, and we often collaborate on projects that blend technology and creativity.

    • Family Traditions: We have a ...

  • Answered by AI
  • Q5. What are your strengths and weaknesses?
  • Q6. Tell me about yourself.
  • Q7. This opportunity is really excited for me
Round 3 - HR 

(7 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Ans. 

    I come from a close-knit family that values education, creativity, and support, which has greatly influenced my career path.

    • Supportive Parents: My parents encouraged my interest in technology from a young age, providing me with resources like books and courses.

    • Siblings: I have a younger sister who is also in the tech field, and we often collaborate on projects, sharing ideas and learning from each other.

    • Family Values: ...

  • Answered by AI
  • Q3. Share details of your previous job.
  • Q4. What are your strengths and weaknesses?
  • Q5. Tell me about yourself.
  • Q6. Describe any difficult work situation or project that you have handled
  • Ans. 

    Handled a difficult project involving complex data migration and integration

    • Had to understand the existing data structure and map it to the new system

    • Dealt with multiple data sources and formats

    • Ensured data integrity and accuracy throughout the migration process

    • Collaborated with cross-functional teams to ensure successful integration

    • Implemented automated testing to validate data migration and integration

    • Managed project...

  • Answered by AI
  • Q7. Hard work and smart work
  • Ans. Reaching the building through steps is hard work ,smart work life is smart 6 the uses steps definitely .. reach the destination
  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for Wipro Software Developer interview:
  • Software developer
  • Flash Animation
  • 3D Character Animation
  • Photography
  • Photoshop
  • Basic
  • Logo Design
Interview preparation tips for other job seekers - In my opinion,both are the key of success hardwork give experiences and smart work come from experience so both are important to achieve success

Excelon Solutions Interview FAQs

How many rounds are there in Excelon Solutions Software Developer interview?
Excelon Solutions interview process usually has 3 rounds. The most common rounds in the Excelon Solutions interview process are Technical, One-on-one Round and HR.
What are the top questions asked in Excelon Solutions Software Developer interview?

Some of the top questions asked at the Excelon Solutions Software Developer interview -

  1. Write code to get the Dept from Dept table where dept id in emp and Dept table ...read more
  2. Write code to add employee table into the db using Spring boot app and retrieve...read more
  3. Why is there no multiple inheritance in Ja...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Bench Sales Recruiter
9 salaries
unlock blur

₹2.5 L/yr - ₹4.2 L/yr

Technical Recruiter
7 salaries
unlock blur

₹4 L/yr - ₹6 L/yr

Accounts Manager
5 salaries
unlock blur

₹10 L/yr - ₹13 L/yr

US IT Recruiter
5 salaries
unlock blur

₹3.1 L/yr - ₹4.8 L/yr

Senior Bench Sales Recruiter
5 salaries
unlock blur

₹4.2 L/yr - ₹4.8 L/yr

Explore more salaries
Compare Excelon Solutions with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview