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
2w
toobluntforu
¡
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Excelon Solutions?
Ask anonymously on communities.

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. There were total 3 rounds, 2 rounds were technical and 3rd one was manegerial. Mainly they asked me questions on Loadrunner in first round and bit about performance monitoring. In 2nd round they have asked...

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and stay positive and don't try to be over smart 😀 only answer if you know, else you just tell sorry I am not able to recall it. Really I am very thankful to Naukri.com, so many interview calls I was getting form naukri. Guys are doing really great. Thankyou and all the best guys. Stay safe ❤️

I applied via Referral and was interviewed in Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Introduction about yourself, Questions specifically related to your experience, Situations when you faced most stress, What are the major contributions you made in your experience, What were your shortcomi...

Interview Preparation Tips

Interview preparation tips for other job seekers - Thoroughly prepare what you write in resume. Give a proper introduction covering your experience and your role & achievement in your past projects.
Be specific with your answers.

Interview Questionnaire 

2 Questions

  • Q1. How to export Apexcodecoverage
  • Ans. 

    To export Apex code coverage, use the Salesforce Developer Console or a third-party tool.

    • Open the Developer Console and navigate to the 'Tests' tab.

    • Select the classes you want to export coverage for and click 'Export' in the 'Code Coverage' section.

    • Alternatively, use a third-party tool like Illuminated Cloud or Gearset to export coverage data.

    • Coverage data can be exported in various formats, including CSV and XML.

  • Answered by AI
  • Q2. Use soql on Apexcodecoverage
  • Ans. 

    SOQL can be used to query Apex code coverage data.

    • Use the ApexCodeCoverage object to query code coverage data

    • Filter by class or trigger name using the Name field

    • Aggregate data using GROUP BY clauses

    • Join with other objects to get additional information

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical questions : 1)oops concepts 2)plsql cursors, triggers, procedures 3)quick sort algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with your resume. None of the questions were asked out of resume.

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

Interview Questionnaire 

1 Question

  • Q1. Tell about yourselves. And about fast work experience. Our positive and negative. How dedicate person when you’re in work.

Interview Preparation Tips

Interview preparation tips for other job seekers - Everything you should talk with clear and with good communication skills. No more fear.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about yourself
  • Q2. Reverse string
  • Ans. 

    Reversing a string involves rearranging its characters in the opposite order, which can be done using various methods.

    • Use built-in functions: In Python, you can reverse a string with slicing: `reversed_string = original_string[::-1]`.

    • Iterative approach: Loop through the string from the end to the beginning and build a new string.

    • Using recursion: Define a function that calls itself with a smaller substring until it reac...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Average level interview
Are these interview questions helpful?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Dec 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 - Technical 

(1 Question)

  • Q1. Questions relating to AS
Round 3 - Technical 

(1 Question)

  • Q1. AS questions were asked
Round 4 - HR 

(1 Question)

  • Q1. General discussion only

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on AS and latest amendments.
There are 2 technical rounds. Manager and partner
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed before Jan 2022. 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 - HR 

(2 Questions)

  • Q1. Asked basic questions related to resume, academics, precious salary, experience,
  • Q2. She asked related to job relocation as to whether you would move to bangalore or not
  • Ans. Answer was given on the basis of above question. If you canf relocate, kindly dont say yes thinking you would increase wfh
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, dont lie a lot, have a smile on the face, if you do not know the answer say u am sorry I dont know the answer, rather than just saying for the sake of saying.

I applied via Campus Placement and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Tell me your self introduction
  • Ans. 

    Dynamic professional with diverse experience in management, team leadership, and strategic planning, eager to contribute to organizational success.

    • Over 5 years of experience in management roles, leading teams to achieve operational goals.

    • Successfully implemented a new project management system that improved efficiency by 30%.

    • Strong background in customer service, enhancing client satisfaction scores by 20% through effe...

  • Answered by AI
  • Q2. What is python
  • Ans. 

    Python is a high-level, interpreted programming language known for its simplicity, readability, and versatility.

    • Python is used for web development, data analysis, artificial intelligence, and more.

    • It has a large standard library and supports multiple programming paradigms.

    • Python code is often shorter and easier to read than other languages.

    • It uses indentation to indicate code blocks instead of curly braces or keywords.

    • ...

  • Answered by AI
  • Q3. What are the highlevel languages
  • Ans. 

    High-level languages are programming languages that are easier to read and write than low-level languages.

    • High-level languages are closer to human language than machine language.

    • They are easier to learn and use than low-level languages.

    • Examples of high-level languages include Java, Python, and C++.

  • Answered by AI
  • Q4. Tell me about hcl company
  • Ans. 

    HCL Technologies is a leading global IT services company based in India, specializing in software development and IT consulting.

    • Founded in 1976, HCL is one of India's original IT services companies.

    • HCL operates in over 50 countries, providing services to clients across various industries.

    • The company focuses on innovation and has invested heavily in R&D, exemplified by its HCL Innovation Labs.

    • HCL's services include ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was a technical one but was majority a stress test it lasted for about 1hour 10minutes.the interviewer wanted to test both my knowledge and communication skills. It was my first of campus interview and I think I did pretty well for a fresher.

Skills evaluated in this interview

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 Technical, One-on-one Round and HR.
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.8
 • 8.6k 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.8
 • 3.4k Interviews
Deloitte Interview Questions
3.7
 • 3k Interviews
View all

Excelon Solutions Reviews and Ratings

based on 20 reviews

3.1/5

Rating in categories

3.0

Skill development

3.2

Work-life balance

3.6

Salary

2.7

Job security

2.9

Company culture

2.9

Promotions

2.9

Work satisfaction

Explore 20 Reviews and Ratings
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