Upload Button Icon Add office photos

Filter interviews by

Ellicium Solutions Senior Software Engineer Interview Questions, Process, and Tips

Updated 5 Apr 2024

Ellicium Solutions Senior Software Engineer Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. What is array? Difference between tuples and array?
  • Ans. 

    Array is a data structure that stores a collection of elements of the same type.

    • Arrays have a fixed size, while tuples can have a variable size.

    • Arrays are mutable, meaning their elements can be changed, while tuples are immutable.

    • Example: ['apple', 'banana', 'cherry']

  • Answered by AI
  • Q2. 1. What is function, dictionary ,tuple?
  • Ans. 

    Function, dictionary, and tuple are data structures in Python.

    • Function is a block of code that only runs when it is called. It can accept parameters and return values.

    • Dictionary is a collection of key-value pairs. Keys are unique and immutable, while values can be of any data type.

    • Tuple is an ordered, immutable collection of elements. It is defined using parentheses.

  • Answered by AI
  • Q3. Difference between list and array?
  • Ans. 

    Arrays have fixed size, while lists can dynamically grow. Arrays store elements of the same data type, while lists can store different data types.

    • Arrays have a fixed size, while lists can dynamically grow in size.

    • Arrays store elements of the same data type, while lists can store different data types.

    • Arrays are accessed by index, while lists are accessed by iterators or indices.

  • Answered by AI
  • Q4. Write code for tables from 2 to 10 .
  • Ans. 

    Generate multiplication tables from 2 to 10 using loops.

    • Use nested loops to iterate through each table

    • Print the multiplication of the current table number with numbers from 1 to 10

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Asked about hobbies

Skills evaluated in this interview

Interview questions from similar companies

I applied via Approached by Company and was interviewed before Aug 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Rpgle, SqlRpgle questions
Round 2 - Technical 

(1 Question)

  • Q1. Sql and debugging related questions
Round 3 - HR 

(1 Question)

  • Q1. Asked about previous job experience and expectations from current job

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to basic, SQL heavy questions, has to have basic debugging knowledge.

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

Round 1 - Aptitude Test 

No negative marking in aptitude test

Round 2 - Group Discussion 

Group discussion topics were abstract

Round 3 - Technical 

(1 Question)

  • Q1. Questions about project and cloud technologies
Round 4 - One-on-one 

(1 Question)

  • Q1. General questions like strengths ad weaknesses

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared for questions regarding skills mentioned on resume
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Sep 2022. There were 5 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 - Technical 

(1 Question)

  • Q1. Array related problem
Round 3 - Technical 

(1 Question)

  • Q1. C# oops related deep question
Round 4 - Technical 

(1 Question)

  • Q1. Project Design related questions
Round 5 - Technical 

(1 Question)

  • Q1. SQL Linq mvc net core related questions
Interview experience
5
Excellent
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 - Coding Test 

Medium leetcode problem on array and linked list. And some theoretical questions

Round 3 - One-on-one 

(1 Question)

  • Q1. Core java , collections, object oriented principles . Some small coding questions based on usage of overriding and overloading
Round 4 - One-on-one 

(1 Question)

  • Q1. Multi treading and 1 problem solving question.
Round 5 - One-on-one 

(1 Question)

  • Q1. Discussion with ED : expectations and managerial questions
Round 6 - HR 

(1 Question)

  • Q1. Typical HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Do understand Core java concepts in depth and problems solving skills - leetcode or hackerrank . Do solve easy to medium stuff

I applied via Recruitment Consulltant and was interviewed in Sep 2021. There were 4 interview rounds.

Round 1 - Coding Test 

Competitive Programming

Round 2 - Technical 

(1 Question)

  • Q1. Java Basics, and related framework basics in depth
Round 3 - Technical 

(1 Question)

  • Q1. Design Patterns and Design Principles
  • Ans. 

    Design patterns and principles are essential for creating maintainable and scalable software.

    • Design patterns are reusable solutions to common software problems.

    • Design principles are guidelines for creating software that is easy to maintain and extend.

    • Examples of design patterns include Singleton, Factory, and Observer.

    • Examples of design principles include SOLID, DRY, and KISS.

  • Answered by AI
Round 4 - Behavioral 

(1 Question)

  • Q1. How you make yourself up to date with latest technologies
  • Ans. 

    I stay up to date with the latest technologies by attending conferences, reading tech blogs, and participating in online forums.

    • Attending conferences and tech events

    • Reading tech blogs and articles

    • Participating in online forums and communities

    • Taking online courses and tutorials

    • Experimenting with new technologies in personal projects

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on your basics , prepare for Competitive Programming rounds, Design Principles, Patters and System Design related stuff.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2023. 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 

(5 Questions)

  • Q1. Pagination in SQL
  • Ans. 

    Pagination in SQL allows for displaying a subset of query results at a time.

    • Use LIMIT and OFFSET clauses in SQL queries to implement pagination.

    • LIMIT specifies the maximum number of rows to return.

    • OFFSET specifies the number of rows to skip before starting to return rows.

  • Answered by AI
  • Q2. OOPS concepts.. SOILD design principles
  • Q3. Thread vs task in multiprocessing.. explain with examples
  • Ans. 

    Threads and tasks are both used in multiprocessing, but have different characteristics and use cases.

    • Threads are lightweight processes within a single process, sharing memory space. They are managed by the operating system.

    • Tasks are units of work that can be executed asynchronously. They are typically managed by a task scheduler.

    • Threads are suitable for parallel processing and improving performance, while tasks are use...

  • Answered by AI
  • Q4. ViewBag vs Tempdata in MVC
  • Ans. 

    ViewBag is used to pass data from controller to view, while TempData is used to pass data between controller actions.

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

    • TempData is a dictionary object that allows you to pass data between controller actions

    • ViewBag is not type-safe and requires typecasting, while TempData is type-safe

    • ViewBag data is lost if redirection occurs, while TempData

  • Answered by AI
  • Q5. Abstract vs Interface
  • Ans. 

    Abstract classes can have both abstract and non-abstract methods, while interfaces can only have abstract methods.

    • Abstract classes can have constructors, fields, and non-abstract methods.

    • Interfaces can only have abstract methods and constants.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basics of OOPS concepts, SQL joins

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Arraylist find duplicate
  • Ans. 

    Find duplicates in an ArrayList of strings.

    • Iterate through the ArrayList and use a HashSet to keep track of seen elements.

    • If an element is already in the HashSet, it is a duplicate.

    • Store the duplicates in a separate ArrayList or print them directly.

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Java Spring Boot SQL
Round 2 - Technical 

(1 Question)

  • Q1. Java Spring Boot AWS SQL Jenkins Kafka Git
Round 3 - HR 

(1 Question)

  • Q1. Why Morningstar, and what is your background

Interview Preparation Tips

Interview preparation tips for other job seekers - Add only those points on resume, which you are aware of.

I applied via Recruitment Consulltant and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Java Spring Boot AWS SQL Jenkins Kafka Git
Round 2 - HR 

(1 Question)

  • Q1. Why Morningstar, and what is your background

Interview Preparation Tips

Interview preparation tips for other job seekers - Add only those points on resume, which you are aware of.

Ellicium Solutions Interview FAQs

How many rounds are there in Ellicium Solutions Senior Software Engineer interview?
Ellicium Solutions interview process usually has 2 rounds. The most common rounds in the Ellicium Solutions interview process are Technical and HR.
What are the top questions asked in Ellicium Solutions Senior Software Engineer interview?

Some of the top questions asked at the Ellicium Solutions Senior Software Engineer interview -

  1. What is array? Difference between tuples and arr...read more
  2. 1. What is function, dictionary ,tup...read more
  3. Write code for tables from 2 to 1...read more

Tell us how to improve this page.

Ellicium Solutions Senior Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Fast track your campus placements

View all
Ellicium Solutions Senior Software Engineer Salary
based on 33 salaries
₹3 L/yr - ₹6.1 L/yr
69% less than the average Senior Software Engineer Salary in India
View more details

Ellicium Solutions Senior Software Engineer Reviews and Ratings

based on 4 reviews

2.9/5

Rating in categories

4.3

Skill development

2.4

Work-life balance

2.9

Salary

3.0

Job security

2.9

Company culture

2.9

Promotions

2.9

Work satisfaction

Explore 4 Reviews and Ratings
Associate Consultant
68 salaries
unlock blur

₹3.2 L/yr - ₹9.4 L/yr

Consultant
66 salaries
unlock blur

₹4.5 L/yr - ₹16.5 L/yr

Senior Software Engineer
33 salaries
unlock blur

₹3 L/yr - ₹6.1 L/yr

Senior Consultant
22 salaries
unlock blur

₹7.8 L/yr - ₹18 L/yr

Lead Consultant
12 salaries
unlock blur

₹12.8 L/yr - ₹26.1 L/yr

Explore more salaries
Compare Ellicium Solutions with

HSBC Group

3.9
Compare

Cholamandalam Investment & Finance

3.9
Compare

Citicorp

3.7
Compare

BNY

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