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

I applied via Naukri.com and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java concepts like multithreading, collections, trading related topics

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with Java core concepts

Interview Questionnaire 

1 Question

  • Q1. Problem-solving, Nodejs, javascript

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are a web developer, Be thorough in your javascript skills. Design level questions will be asked in order to test your capability to handle large systems.

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

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

I applied via Recruitment Consulltant and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. What is difference between @primary and @Qualifier?
  • Ans. 

    Primary is used to define a primary bean when multiple beans of the same type are present, while Qualifier is used to specify which bean to autowire when multiple beans of the same type are present.

    • Primary annotation is used to give a higher preference to a bean when multiple beans of the same type are present in the Spring application context.

    • Qualifier annotation is used to specify which bean to autowire when multiple...

  • Answered by AI
  • Q2. How we can handle fault tolerance in Microservices?
  • Ans. 

    Fault tolerance in Microservices can be achieved through redundancy, graceful degradation, and circuit breakers.

    • Implementing redundancy by having multiple instances of each microservice running to handle failures.

    • Using graceful degradation to ensure that the system can still function even if certain microservices are unavailable.

    • Utilizing circuit breakers to prevent cascading failures by temporarily stopping requests t

  • Answered by AI
  • Q3. How to implement spring security?
  • Ans. 

    Implementing Spring Security involves configuring security settings in the Spring application.

    • Add Spring Security dependency in pom.xml

    • Configure security settings in SecurityConfig class

    • Define user roles and permissions

    • Use annotations like @EnableWebSecurity and @Secured

  • Answered by AI
  • Q4. Explain OAuth 2 implementation?
  • Ans. 

    OAuth 2 is an authorization framework that allows a third-party application to obtain limited access to an HTTP service.

    • OAuth 2 is used for delegated access, allowing a user to grant a third-party application access to their resources without sharing their credentials.

    • It involves the use of access tokens, which are issued by the authorization server after the user authenticates and authorizes the application.

    • OAuth 2 su...

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. Memory management in Java ?
  • Ans. 

    Java uses automatic memory management through garbage collection to allocate and deallocate memory.

    • Java uses garbage collection to automatically manage memory by deallocating objects that are no longer needed.

    • The JVM has a heap where objects are allocated and garbage collection is performed to reclaim memory.

    • Java provides the 'finalize()' method for objects to perform cleanup before they are garbage collected.

    • Memory le...

  • Answered by AI
  • Q2. Different types of gc?
  • Ans. 

    Different types of garbage collection algorithms in software development.

    • Mark and Sweep: Identifies and removes unreachable objects.

    • Generational: Divides objects into different generations based on age.

    • Parallel: Uses multiple threads to perform garbage collection concurrently.

    • Incremental: Spreads garbage collection work over multiple cycles to reduce pause times.

  • Answered by AI
  • Q3. Difference between executors &executorservice?
  • Ans. 

    Executors are a class that provides factory and utility methods for Executor, ExecutorService is an interface that represents an asynchronous execution service.

    • Executors class provides factory and utility methods for Executor interface

    • ExecutorService is an interface that represents an asynchronous execution service

    • ExecutorService extends Executor interface

    • ExecutorService provides methods to manage termination and produ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - More focus on core topics

Skills evaluated in this interview

Round 1 - Technical 

(2 Questions)

  • Q1. How do you Structure Database? Make Design ?
  • Ans. 

    A well-structured database design is crucial for efficient data management.

    • Identify entities and their relationships

    • Normalize data to reduce redundancy

    • Choose appropriate data types and constraints

    • Consider performance and scalability

    • Document the design and update as needed

  • Answered by AI
  • Q2. Ask about Low Level Design?

Interview Preparation Tips

Interview preparation tips for other job seekers - gsfgg sfgsgsf sfgsgs sdfs fsdfs f sss sfsf sf

Skills evaluated in this interview

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
76 salaries
unlock blur

₹3 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.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview