Upload Button Icon Add office photos

Filter interviews by

Excelon Solutions 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

View all Software Developer interview questions
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...

View all Software Developer interview questions
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...

View all Software Developer interview questions
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...

View all Software Developer interview questions
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 ...

View all Software Developer interview questions
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...

View all Software Developer interview questions
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

View all Software Developer interview questions
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...

View all Software Developer interview questions
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.

View all Software Developer interview questions
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

View all Software Developer interview questions

Excelon Solutions 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
1w (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 Company Website and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. After 5 year in which position you will be
  • Ans. 

    In five years, I envision myself as a senior analyst, leading projects and mentoring junior team members while driving impactful data-driven decisions.

    • I aim to develop expertise in advanced analytics tools, such as Python and R, to enhance data modeling capabilities.

    • I plan to take on leadership roles in projects, guiding teams to deliver actionable insights that align with business goals.

    • I aspire to mentor junior analy...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You should must improve your communication skills.

You have basic knowledge of your qualifications

Interview Questionnaire 

1 Question

  • Q1. In 5 programs without effecting one by one how can you debug a particular program and how can you know tha program is calling in debug

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Feb 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. What are the differences between C and C++?
  • Q2. Explain the scenarios where If and Switch Case statements are used.
  • Ans. 

    If and Switch Case statements are used for conditional branching in programming.

    • If statements are used for simple conditional branching.

    • Switch Case statements are used for multiple conditional branching.

    • If statements are more flexible than Switch Case statements.

    • Switch Case statements are more efficient than If statements for large number of conditions.

    • If statements can be nested, but Switch Case statements cannot.

    • Exam...

  • Answered by AI
  • Q3. Do you think algorithms and pseudocodes still play a role in the world of IT Services?
  • Ans. 

    Yes, algorithms and pseudocodes are still important in IT Services.

    • Algorithms are used in various fields of IT such as machine learning, data analysis, and cryptography.

    • Pseudocodes are used to plan and design algorithms before coding them.

    • Understanding algorithms and pseudocodes is essential for software engineers to write efficient and optimized code.

    • Examples of algorithms include sorting algorithms, search algorithms...

  • Answered by AI
  • Q4. Are you comfortable using Command Line Interfaces (CLIs) or Integrated Development Environments (IDEs) as part of your daily tasks?
  • Ans. 

    Yes, I am comfortable using both CLIs and IDEs for my daily tasks.

    • I have experience using various CLIs such as Git Bash, Windows Command Prompt, and Terminal on macOS.

    • I am proficient in using IDEs such as Visual Studio Code, Eclipse, and IntelliJ IDEA.

    • I understand the benefits and drawbacks of both CLIs and IDEs and can choose the appropriate tool for the task at hand.

  • Answered by AI
  • Q5. Are you okay to learn front end and back end technologies to ensure you are a complete developer in the longer run? Would you be able to learn the concepts if a timeline is given?? If yes, explain your lea...

Interview Preparation Tips

Interview preparation tips for other job seekers - The hiring team expects a structured response in your answers. Be it a fresher or an experienced professional, the answers must be represented with examples to ensure you display your expertise with an application in your mind.

Skills evaluated in this interview

I applied via Referral and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Questions were based on my CV and the type of work I had done.
  • Ans. I went in depth with the type of work I did, carefully and diligently describing the type of work I have been doing.
  • Answered Anonymously
Round 2 - Case Study 

The current scenario of Airport Sector in India and how new policies are going to affect the sector.

Round 3 - One-on-one 

(2 Questions)

  • Q1. A one-on-one interaction with the BU Partner. He asked a wide variety of questions to judge my suitability to the Team and communication skills
  • Q2. Tried to be as upfront and as honest as possible.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and have faith in your abilities

Interview Questionnaire 

3 Questions

  • Q1. Mathematical ,verbal, logical, puzzles, pseudo code
  • Q2. Verbal
  • Q3. Logical

Interview Preparation Tips

Interview preparation tips for other job seekers - Help me for infosys apptitude test interview

I applied via Referral and was interviewed in Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About skills.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be cool always and focus towards your goal set.
Are these interview questions helpful?

I applied via Campus Placement and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Data srructures

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident revise data structures ,

Interview Questionnaire 

1 Question

  • Q1. Basic questions on programing language
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Dec 2021. There were 3 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 

There are 2section of exam i.e English and Data structure

Round 3 - Mind analysis games 

(2 Questions)

  • Q1. First round interview is technical interview and managerial interviews which is not that tough. Do all the FaQ on your projects and if dont know any one of question answer then dont worry simply say it a...
  • Q2. 2nd round is HR interview .

Interview Preparation Tips

Interview preparation tips for other job seekers - In HR interview they ask about introduction, strength and weakness , willing to work on teams or not, some scenario based question

Excelon Solutions Interview FAQs

How many rounds are there in Excelon Solutions interview?
Excelon Solutions interview process usually has 3 rounds. The most common rounds in the Excelon Solutions interview process are HR, Technical and One-on-one Round.
How to prepare for Excelon Solutions 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 Excelon Solutions. The most common topics and skills that interviewers at Excelon Solutions expect are Night Shift, US IT Recruitment, Bench Sales, US IT Staffing and US Shift.
What are the top questions asked in Excelon Solutions interview?

Some of the top questions asked at the Excelon Solutions 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

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.7
 • 8.7k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.7
 • 3.4k Interviews
Deloitte Interview Questions
3.7
 • 3k Interviews
View all

Excelon Solutions Reviews and Ratings

based on 21 reviews

3.2/5

Rating in categories

3.2

Skill development

3.3

Work-life balance

3.8

Salary

2.8

Job security

3.1

Company culture

3.1

Promotions

3.1

Work satisfaction

Explore 21 Reviews and Ratings
Bench Sales Recruiter
9 salaries
unlock blur

₹1.7 L/yr - ₹6.1 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