Upload Button Icon Add office photos
Engaged Employer

i

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

Excellon Software Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Excellon Software Interview Questions, Process, and Tips

Updated 10 Jan 2025

Top Excellon Software Interview Questions and Answers

View all 21 questions

Excellon Software Interview Experiences

Popular Designations

11 interviews found

Supervisor Interview Questions & Answers

user image Anonymous

posted on 14 Oct 2024

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

I applied via Job Fair and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Group Discussion 

Favorite Online Resources.
Thoughts On The Internet.
The Impact of Social Media On Our Lives.
The Pros and Cons of Technology.
The Changing Landscape of Education.

Round 2 - Coding Test 

Soft Skills
Communication (verbal and written)
Teamwork and conflict resolution
Problem solving
Empathy
Patience
Curiosity
Adaptability
Accountability
Time management

Round 3 - Assignment 

Gold Loan: Gold Loans to salaried or self-employed individuals and also to firms and companies. The loan promises to be reliable, hassle-free, with excellent financial service and the sanction process is simple and instantaneous.

Interview Preparation Tips

Topics to prepare for Excellon Software Supervisor interview:
  • Bajaj finance
  • Computer excel
Interview preparation tips for other job seekers - Create a professional LinkedIn profile: Include relevant skills, experiences, and accomplishments to help recruiters find you.
Keep your resume updated: Take notes on your accomplishments, skills, and projects at your current job so you can apply for new jobs if you lose your job.

Supervisor Interview Questions asked at other Companies

Q1. Self introduction? & what is mean by eCommerce ? How it can do
View answer (10)

Software Developer Interview Questions & Answers

user image Video ThirtyMay

posted on 5 Aug 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Java oops concepts
  • Q2. What is Autowired
  • Ans. 

    Autowired is a feature in Spring Framework that allows automatic dependency injection.

    • Autowired annotation is used to automatically wire beans by type.

    • It eliminates the need for explicit bean configuration in XML or Java configuration.

    • Autowired can be used on fields, constructors, or methods.

    • It helps in achieving loose coupling between classes.

  • Answered by AI
  • Q3. Spring security and oauth
Round 2 - HR 

(2 Questions)

  • Q1. Salary range that you will take
  • Ans. 

    I am looking for a competitive salary that reflects my skills and experience in the industry.

    • Research average salaries for Software Developers in the industry and location

    • Consider your level of experience and expertise

    • Negotiate based on the value you can bring to the company

    • Be prepared to discuss benefits and other compensation packages

  • Answered by AI
  • Q2. Opt documents and future sponsorship

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (38)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Introduce yourself
Round 2 - One-on-one 

(1 Question)

  • Q1. Whar are your salary expection and salary growth

Interview Preparation Tips

Interview preparation tips for other job seekers - You can apply if your are good at only give yes.to any task and no argument with manager

Senior Application Support Executive Interview Questions asked at other Companies

Q1. Tel me what ia IIS server and what is App Pool
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. For loop , oop questions ,basic

Associate Software Developer Interview Questions asked at other Companies

Q1. Nth Fibonacci Number Problem Statement Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1. Input: The input consists of a single intege... read more
Add answer

Excellon Software interview questions for popular designations

 Associate Software Developer

 (2)

 Software Developer

 (2)

 Application Support Executive

 (1)

 Associate Functional Consultant

 (1)

 DOT NET Developer

 (1)

 Senior Application Support Executive

 (1)

 Senior Test Engineer

 (1)

 Software Testing Lead

 (1)

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

I applied via Referral and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - Technical 

(17 Questions)

  • Q1. What is MVC? What is MVC page Life Cycle?
  • Ans. 

    MVC stands for Model-View-Controller. It is a software architectural pattern for implementing user interfaces.

    • MVC separates the application into three main components: Model (data), View (UI), and Controller (logic)

    • MVC page life cycle involves the following stages: Routing, Controller Initialization, Action Execution, Result Execution, and Rendering

  • Answered by AI
  • Q2. What is IEnumerable?
  • Ans. 

    IEnumerable is an interface in C# that represents a collection of objects that can be enumerated.

    • It is used to iterate over a collection of objects.

    • It is part of the System.Collections namespace.

    • It is the base interface for all non-generic collections in C#.

    • It is commonly used with LINQ queries to query data from collections.

    • Example: IEnumerable numbers = new List { 1, 2, 3 };

Answered by AI
  • Q3. Can we have multiple Layout page?
  • Ans. 

    Yes, we can have multiple Layout pages in ASP.NET MVC.

    • Multiple Layout pages can be created in ASP.NET MVC to provide different layouts for different sections of the website.

    • Each View can specify which Layout page to use by setting the Layout property in the View file.

    • Layout pages can be nested, allowing for a hierarchy of layouts to be used.

    • Example: _Layout.cshtml, _AdminLayout.cshtml, _UserLayout.cshtml

  • Answered by AI
  • Q4. How to change layout page during runtime?
  • Ans. 

    You can change the layout page during runtime by dynamically setting the layout property in the code behind.

    • Set the layout property in the code behind based on certain conditions or user input.

    • Use conditional statements to determine which layout page to use.

    • Example: if(userRole == 'admin') { Layout = '~/Views/Shared/_AdminLayout.cshtml'; } else { Layout = '~/Views/Shared/_UserLayout.cshtml'; }

  • Answered by AI
  • Q5. What are types of filters in MVC?
  • Ans. 

    Types of filters in MVC include Authorization filters, Action filters, Result filters, and Exception filters.

    • Authorization filters restrict access to actions based on user roles or permissions.

    • Action filters execute code before and after an action method is called.

    • Result filters execute code before and after the result of an action method is executed.

    • Exception filters handle exceptions thrown during the execution of an

  • Answered by AI
  • Q6. What is Authentication?
  • Ans. 

    Authentication is the process of verifying the identity of a user or system.

    • Authentication ensures that the user is who they claim to be before granting access to resources.

    • Common authentication methods include passwords, biometrics, security tokens, and multi-factor authentication.

    • Examples of authentication protocols include OAuth, SAML, and OpenID Connect.

  • Answered by AI
  • Q7. What is Authorization?
  • Ans. 

    Authorization is the process of determining if a user has the necessary permissions to access a resource or perform an action.

    • Authorization involves verifying the identity of a user and checking if they have the required permissions.

    • It is different from authentication, which is the process of verifying the identity of a user.

    • Authorization can be role-based, where permissions are assigned based on roles, or attribute-ba...

  • Answered by AI
  • Q8. What is Partial View and View?
  • Ans. 

    Partial View is a reusable view component in ASP.NET MVC, while View is a complete page or layout.

    • Partial View is a smaller, reusable view component that can be rendered within a View or another Partial View.

    • View is a complete page or layout that can contain multiple Partial Views and is typically returned by a controller action.

    • Partial Views are useful for rendering common elements like headers, footers, or sidebars a...

  • Answered by AI
  • Q9. What is View_Start class?
  • Ans. 

    View_Start class is used to define common settings for all views in an ASP.NET MVC application.

    • View_Start class is a special class in ASP.NET MVC that is used to define common settings for all views in the application.

    • It is typically used to set properties like layout, master page, and other view-related settings.

    • By defining these settings in View_Start class, they are automatically applied to all views in the applicat...

  • Answered by AI
  • Q10. Coding Question: Variable 1 = 10; Variable 2 = 20; Variable 3 = 0; Variable 3 = Variable 1 * Variable 2; Do Calculation without using Multiplication
  • Ans. 

    Use bitwise operations to perform multiplication without using the * operator.

    • Use bitwise left shift operator to multiply Variable 1 by 2^n where n is the value of Variable 2.

    • Add the result of each left shift operation to get the final result.

  • Answered by AI
  • Q11. Find the second highest salary employee names in Employee table?
  • Ans. 

    Use SQL query to find the second highest salary employee names in Employee table.

    • Use ORDER BY clause to sort the salaries in descending order.

    • Use LIMIT 1 OFFSET 1 to get the second highest salary.

    • Join the Employee table with itself to get the employee names corresponding to the second highest salary.

  • Answered by AI
  • Q12. What is collections?
  • Ans. 

    Collections are classes in .NET that allow you to store and manage groups of objects.

    • Collections provide various data structures like lists, queues, stacks, dictionaries, etc.

    • They allow for easy manipulation and retrieval of data.

    • Examples include List, Queue, Stack, Dictionary.

  • Answered by AI
  • Q13. What is method overloading and method overriding?
  • Ans. 

    Method overloading is when multiple methods have the same name but different parameters. Method overriding is when a subclass provides a specific implementation of a method that is already provided by its parent class.

    • Method overloading allows a class to have multiple methods with the same name but different parameters.

    • Method overriding occurs in a subclass when a method has the same name and parameters as a method in ...

  • Answered by AI
  • Q14. What is String and StringBuilder?
  • Ans. 

    String is a sequence of characters, while StringBuilder is a mutable sequence of characters used for efficient string manipulation.

    • String is immutable, meaning once created, it cannot be changed. StringBuilder is mutable, allowing for efficient modifications.

    • String concatenation creates a new string object each time, while StringBuilder allows for efficient appending of characters.

    • String is used for constant strings, w...

  • Answered by AI
  • Q15. What are HTML helpers? Can we create custom HTML Helpers?
  • Ans. 

    HTML helpers are methods that help in rendering HTML in a view. Yes, we can create custom HTML helpers.

    • HTML helpers are methods that generate HTML markup in a view using C# or VB.NET code.

    • They simplify the process of generating HTML elements like forms, input controls, links, etc.

    • Custom HTML helpers can be created by defining extension methods for the HtmlHelper class.

    • Example: Creating a custom HTML helper to generate

  • Answered by AI
  • Q16. What is Solid Principles?
  • Ans. 

    SOLID principles are a set of five design principles that help developers create more maintainable, flexible, and scalable software.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subc...

  • Answered by AI
  • Q17. What is ViewBag and ViewData?
  • Ans. 

    ViewBag and ViewData are used in ASP.NET MVC to pass data from controller to view.

    • ViewBag is a dynamic property that allows you to pass data from controller to view.

    • ViewData is a dictionary object that allows you to pass data from controller to view.

    • ViewBag is a dynamic object while ViewData is a dictionary object.

    • ViewBag is easier to use but ViewData is type-safe.

  • Answered by AI

    Interview Preparation Tips

    Topics to prepare for Excellon Software DOT NET Developer interview:
    • C#
    • ASP.Net MVC
    • MS SQL
    Interview preparation tips for other job seekers - Prepare well on Basics on C#, Asp.Net MVC and Sql.

    Skills evaluated in this interview

    Top Excellon Software DOT NET Developer Interview Questions and Answers

    Q1. Coding Question: Variable 1 = 10; Variable 2 = 20; Variable 3 = 0; Variable 3 = Variable 1 * Variable 2; Do Calculation without using Multiplication
    View answer (1)

    DOT NET Developer Interview Questions asked at other Companies

    Q1. What is the difference between windows application development and web based development?
    View answer (10)
    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    -
    Result
    Not Selected

    I applied via Recruitment Consulltant and was interviewed in Jan 2024. There were 2 interview rounds.

    Round 1 - Aptitude Test 

    Easy Apptitude round But its on pen and paper

    Round 2 - One-on-one 

    (3 Questions)

    • Q1. Introduce yourself
    • Q2. SMOKE AND SANITY,REGRESSION,VARIOUS SDLC STEPS
    • Q3. WHAT IS TESTING
    • Ans. 

      Testing is the process of evaluating a system or software to identify defects or errors.

      • Testing involves executing a system or software with the intention of finding defects.

      • It is done to ensure that the system meets the specified requirements and functions as expected.

      • Testing can be performed at various levels such as unit testing, integration testing, and system testing.

      • Different testing techniques like functional te...

    • Answered by AI

    Skills evaluated in this interview

    Software Testing Lead Interview Questions asked at other Companies

    Q1. What’s approach of writing test cases by giving a scenario or requirement
    View answer (1)

    Jobs at Excellon Software

    View all
    Interview experience
    5
    Excellent
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via Campus Placement and was interviewed in Feb 2023. 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 maths and aptitude like percentage, profit loss, distance, speed, average, age.

    Round 3 - Technical 

    (1 Question)

    • Q1. Use of c language, write code on array, which language is better c or java, write another code in HTML
    • Ans. 

      C language is low-level and efficient, Java is high-level and platform-independent, HTML is used for web development.

      • C language is better for system programming due to its low-level nature and efficiency.

      • Java is better for cross-platform development and has a larger standard library.

      • Example C code: int numbers[] = {1, 2, 3, 4, 5};

      • Example Java code: String[] names = {"Alice", "Bob", "Charlie"};

      • HTML is used for creating ...

    • Answered by AI
    Round 4 - HR 

    (1 Question)

    • Q1. Basic information , why do you want to join, Strengths

    Interview Preparation Tips

    Topics to prepare for Excellon Software Software Developer interview:
    • Self introspection
    • Knowledge that you have
    Interview preparation tips for other job seekers - Hi guys!
    Please do not answer in hurry. Take a pause and then answer after listening the question carefully. Don't make answers which you don't know just tell them the truth. They will help you with this more!
    All the very best!!

    Skills evaluated in this interview

    Software Developer Interview Questions asked at other Companies

    Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
    View answer (38)

    I applied via Walk-in

    Round 1 - One-on-one 

    (2 Questions)

    • Q1. All the finance related questions
    • Q2. Types of accounts, What is CRM, What is Lead, prospect etc.
    • Ans. 

      Accounts in CRM can be of different types such as customer, partner, vendor, etc. A lead is a potential customer who has shown interest in your product or service.

      • Types of accounts in CRM include customer, partner, vendor, and competitor

      • CRM stands for Customer Relationship Management and is a software used to manage interactions with customers and potential customers

      • A lead is a potential customer who has shown interest...

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be confident, i was hired on the basis on my qualification and experience. I try to be 360 in terms of knowledge. I had some hands-on experience with CRM, it helped me a lot to get hired.

    Associate Functional Consultant Interview Questions asked at other Companies

    Q1. how does a Manufacturing line know the procedure?
    View answer (1)
    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via Walk-in and was interviewed before Oct 2022. There were 4 interview rounds.

    Round 1 - Resume Shortlist 
    Pro Tip by AmbitionBox:
    Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
    View all tips
    Round 2 - One-on-one 

    (1 Question)

    • Q1. Brief introduction and past experience.
    Round 3 - Group Discussion 

    Topic will be given to speak.

    Round 4 - HR 

    (1 Question)

    • Q1. Past experience, Salary discussion and confirmation of documents.

    Application Support Executive Interview Questions asked at other Companies

    Q1. What about social media?
    View answer (1)

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

    Interview Questionnaire 

    2 Questions

    • Q1. Question based on Ooops
    • Q2. Question based on Sql

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Hands on any one programming language

    Associate Software Developer Interview Questions asked at other Companies

    Q1. Nth Fibonacci Number Problem Statement Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1. Input: The input consists of a single intege... read more
    Add answer

    Excellon Software Interview FAQs

    How many rounds are there in Excellon Software interview?
    Excellon Software interview process usually has 2-3 rounds. The most common rounds in the Excellon Software interview process are Technical, One-on-one Round and HR.
    How to prepare for Excellon Software 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 Excellon Software. The most common topics and skills that interviewers at Excellon Software expect are LINQ, ADO.Net, Javascript, ERP and Entity Framework.
    What are the top questions asked in Excellon Software interview?

    Some of the top questions asked at the Excellon Software interview -

    1. Use of c language, write code on array, which language is better c or java, wri...read more
    2. Coding Question: Variable 1 = 10; Variable 2 = 20; Variable 3 = 0; Variable 3 =...read more
    3. What are HTML helpers? Can we create custom HTML Helpe...read more

    Tell us how to improve this page.

    Excellon Software Interview Process

    based on 13 interviews

    Interview experience

    4
      
    Good
    View more

    Interview Questions from Similar Companies

    Oracle Interview Questions
    3.7
     • 897 Interviews
    Zoho Interview Questions
    4.3
     • 514 Interviews
    SAP Interview Questions
    4.2
     • 308 Interviews
    Ramco Systems Interview Questions
    3.9
     • 64 Interviews
    Magic Edtech Interview Questions
    3.1
     • 49 Interviews
    Tally Solutions Interview Questions
    4.2
     • 38 Interviews
    MARG ERP Interview Questions
    3.5
     • 17 Interviews
    View all

    Excellon Software Reviews and Ratings

    based on 160 reviews

    4.3/5

    Rating in categories

    4.2

    Skill development

    4.2

    Work-life balance

    4.2

    Salary

    4.2

    Job security

    4.2

    Company culture

    4.1

    Promotions

    4.1

    Work satisfaction

    Explore 160 Reviews and Ratings
    Chief Architect For Pune Location

    Pune

    18-28 Yrs

    Not Disclosed

    Marketing Director For Pune

    Pune

    20-30 Yrs

    Not Disclosed

    Explore more jobs
    Software Developer
    106 salaries
    unlock blur

    ₹3.4 L/yr - ₹9 L/yr

    Functional Consultant
    63 salaries
    unlock blur

    ₹2.5 L/yr - ₹6.8 L/yr

    Business Analyst
    58 salaries
    unlock blur

    ₹3.6 L/yr - ₹14 L/yr

    Application Support Executive
    55 salaries
    unlock blur

    ₹2 L/yr - ₹3.7 L/yr

    Associate Software Developer
    52 salaries
    unlock blur

    ₹3 L/yr - ₹5 L/yr

    Explore more salaries
    Compare Excellon Software with

    Tally Solutions

    4.2
    Compare

    MARG ERP

    3.5
    Compare

    SAP

    4.2
    Compare

    Oracle

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