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 Supervisor Interview Questions and Answers

Updated 14 Oct 2024

Excellon Software Supervisor Interview Experiences

1 interview 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.

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Fsmo roles
  • Q2. Office 365

I applied via Campus Placement and was interviewed before Oct 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 - One-on-one 

(3 Questions)

  • Q1. DS Algo, Backend and DB
  • Q2. Stack(DS) question and DB based questions
  • Q3. Scaling (Horizontal, Vertical) with use cases
  • Ans. 

    Scaling refers to increasing capacity of a system. Horizontal scaling adds more machines, while vertical scaling adds more resources to a machine.

    • Horizontal scaling involves adding more machines to a system to increase capacity

    • Vertical scaling involves adding more resources to a machine to increase capacity

    • Use cases for horizontal scaling include handling increased traffic or adding redundancy

    • Use cases for vertical sca...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Junglee Games Software Developer interview:
  • Backend
  • Data Structures
  • Database
Interview preparation tips for other job seekers - Keep your DS concepts clear and be clear on your answers
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

(2 Questions)

  • Q1. Write a program to check if string is a anagram
  • Ans. 

    Program to check if a string is an anagram

    • Create a function that takes in two strings as input

    • Remove all spaces and convert both strings to lowercase

    • Sort both strings and compare if they are equal to determine if they are anagrams

  • Answered by AI
  • Q2. What is react lifecycle method
  • Ans. 

    React lifecycle methods are special methods that are automatically called by React at specific points in a component's life cycle.

    • React components have several lifecycle methods such as componentDidMount, componentDidUpdate, componentWillUnmount, etc.

    • These methods allow developers to perform actions at specific points in a component's life cycle, such as fetching data, updating the UI, or cleaning up resources.

    • Understa...

  • Answered by AI
Round 3 - Coding Test 

Create a web app to perform cred operation

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed before Jan 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

General aptitude questions

Round 2 - Group Discussion 

Abstract topic group discussion

Round 3 - Technical 

(1 Question)

  • Q1. Technical interview covering topics on oops , data structures , conditional statements.
Round 4 - HR 

(1 Question)

  • Q1. General questions- introduction , how previous rounds went ,hobbies , what do you know about our company , situation based questions.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Few questions that would involve problem solving. Basic 10th std math would suffice

Round 2 - Coding Test 

Had few DSA questions.

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical interview
Round 4 - HR 

(1 Question)

  • Q1. About job, expection etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and inspire trust. Be curious.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Simple question on maths

Round 2 - Technical 

(2 Questions)

  • Q1. Explain OOPS concept
  • Ans. 

    OOPS (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on creating objects that interact with each other to solve complex problems

    • Key principles include encapsulation, inheritance, polymorphism, and abstraction

    • Encapsulation ensures that the internal state of an object is hidden from the outside world

    • Inheritance allows a class to inherit...

  • Answered by AI
  • Q2. Coding array questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Nov 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 - Technical 

(2 Questions)

  • Q1. Regarding the Past Projects, mine were with Firebase and Flutter.
  • Q2. Medium DSA questions for Array and String and Flutter

Interview Preparation Tips

Topics to prepare for Junglee Games Software Developer interview:
  • Flutter
  • firebase
  • Node.Js
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in

Round 1 - Technical 

(2 Questions)

  • Q1. How make a queue using a stack
  • Ans. 

    To implement a queue using a stack, use two stacks and simulate the queue operations.

    • Use two stacks, one for enqueue operation and one for dequeue operation.

    • For enqueue operation, simply push elements onto the stack used for enqueueing.

    • For dequeue operation, if the dequeue stack is empty, pop all elements from enqueue stack and push onto dequeue stack.

    • Then pop from the dequeue stack to simulate dequeue operation.

  • Answered by AI
  • Q2. Create a linked list
  • Ans. 

    A linked list is a data structure consisting of nodes where each node points to the next node in the sequence.

    • Create a Node class with data and next pointer

    • Initialize a head pointer to null

    • Add nodes by updating next pointers

    • Traverse the list by following next pointers

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Coding Test 

Easy to medium leetcode questions

Excellon Software Interview FAQs

How many rounds are there in Excellon Software Supervisor interview?
Excellon Software interview process usually has 3 rounds. The most common rounds in the Excellon Software interview process are Group Discussion, Coding Test and Assignment.

Tell us how to improve this page.

Excellon Software Supervisor Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 49 Interviews
IT By Design Interview Questions
3.6
 • 40 Interviews
ConsultAdd Interview Questions
3.5
 • 36 Interviews
Junglee Games Interview Questions
3.1
 • 32 Interviews
View all
Software Developer
106 salaries
unlock blur

₹3.4 L/yr - ₹9.5 L/yr

Functional Consultant
62 salaries
unlock blur

₹2.5 L/yr - ₹6.8 L/yr

Business Analyst
55 salaries
unlock blur

₹4 L/yr - ₹14.6 L/yr

Associate Software Developer
55 salaries
unlock blur

₹3 L/yr - ₹5.5 L/yr

Application Support Executive
52 salaries
unlock blur

₹1.5 L/yr - ₹3.7 L/yr

Explore more salaries
Compare Excellon Software with

Saama Technologies

3.7
Compare

JoulestoWatts Business Solutions

2.9
Compare

DISYS

3.0
Compare

Value Point Systems

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