Upload Button Icon Add office photos

SS&C TECHNOLOGIES

Compare button icon Compare button icon Compare

Filter interviews by

SS&C TECHNOLOGIES Senior Java Developer Interview Questions and Answers

Updated 14 Sep 2024

SS&C TECHNOLOGIES Senior Java Developer Interview Experiences

3 interviews found

Senior Java Developer Interview Questions & Answers

user image Raghavender Goud V

posted on 14 Sep 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Core java oops concepts
  • Q2. Angular basic topics
Round 2 - Technical 

(2 Questions)

  • Q1. Spring boot topics
  • Q2. Oracle queries examples
  • Ans. 

    Examples of Oracle queries

    • Use SELECT statement to retrieve data from a table

    • Use WHERE clause to filter results based on a condition

    • Use JOIN to combine rows from two or more tables based on a related column

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Discussed about my carrer details
  • Q2. Expected CTC discussed

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to not join this company

Skills evaluated in this interview

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 

(1 Question)

  • Q1. All concepts in Core java Spring Boot Spring Batch
Round 3 - Technical 

(1 Question)

  • Q1. Microservices JPA

Senior Java Developer Interview Questions Asked at Other Companies

asked in Amdocs
Q1. Remove the Kth Node from the End of a Linked List You are given a ... read more
asked in Amdocs
Q2. Intersection of Linked List Problem You are provided with two sin ... read more
asked in Amdocs
Q3. Merge Two Sorted Linked Lists Problem Statement You are provided ... read more
asked in Amdocs
Q4. LRU Cache Design Question Design a data structure for a Least Rec ... read more
asked in Amdocs
Q5. Why is Java considered platform-independent while the Java Virtua ... read more
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Kafka depth explanations
Round 2 - Coding Test 

Front end js related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - They will expect more deep knowledge, they will take more time to give the feedback

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Oct 2022. There were 3 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. 1. Java 8 Features 2. Java Collection Framework 3. Basics in Kafka 4. Oracle SQL Queries 5. Problem Solving Java Programming Questions
Round 3 - Technical 

(1 Question)

  • Q1. 1. Scenario based questions on Caching 2. Scenario based questions on Security

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear with what you know and have some broad knowledge on various tools & technologies

I applied via Naukri.com and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic Java and Project related and scenario based

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepared well for core java
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
No response

I appeared for an interview in Aug 2024.

Round 1 - Assignment 

Complete Coding Test to write a complete application code.

Round 2 - Technical 

(2 Questions)

  • Q1. Definition based questions on jav
  • Q2. Micro service Design Patterns
  • Ans. 

    Microservice design patterns are architectural patterns used to design and implement microservices.

    • Service discovery and registration

    • Circuit breaker pattern

    • API gateway pattern

    • Event sourcing pattern

    • Saga pattern

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Get things more towards definition, and expect clear cut answers to be given in response.

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a spring boot rest controller
  • Ans. 

    A Spring Boot REST controller is used to handle incoming HTTP requests and return appropriate responses.

    • Create a new Java class annotated with @RestController

    • Define request mapping annotations like @GetMapping, @PostMapping, @PutMapping, @DeleteMapping

    • Inject dependencies using @Autowired annotation

    • Return response using ResponseEntity or directly as method return value

  • Answered by AI
  • Q2. Write a code for get a reverse String having a comma separated value in java
  • Ans. 

    Code to reverse a comma separated string in Java

    • Split the input string by comma to get an array of strings

    • Iterate through the array in reverse order and append each element to a new string with a comma

    • Return the reversed comma separated string

  • Answered by AI

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic to advanced concepts overview
  • Q2. Just go through basics and overview of the current project

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for core java mainly and Spring Spring Boot Microservices
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Questions related to Multi threading, Exception Handling, Streams, Springboot annotations, Microservices were asked.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
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 

(8 Questions)

  • Q1. DESCRIBE TYPES JVM MEMORY.
  • Ans. 

    JVM memory consists of Young Generation, Old Generation, and Permanent Generation.

    • Young Generation: where new objects are allocated and aged before moving to Old Generation.

    • Old Generation: where long-lived objects are stored.

    • Permanent Generation: where metadata such as class definitions and method information are stored.

  • Answered by AI
  • Q2. DIFFERENCE BETWEEN INTERFACE AND ABSTRACT CLASS.
  • Ans. 

    Interface is a contract with no implementation, while abstract class can have some implementation.

    • Interface cannot have any method implementation, while abstract class can have some method implementations.

    • A class can implement multiple interfaces, but can only extend one abstract class.

    • Interfaces are used to achieve multiple inheritance in Java.

    • Abstract classes can have constructors, while interfaces cannot.

    • Example: In...

  • Answered by AI
  • Q3. HOW TO CREATE OUR OWN IMMUTABLE CLASS? WHY IMMUTABLE CLASS
  • Ans. 

    Immutable classes in Java are classes whose objects cannot be modified once they are created.

    • Make the class final to prevent inheritance

    • Make all fields private and final

    • Do not provide setter methods for fields

    • Ensure that any mutable objects within the class are also immutable

  • Answered by AI
  • Q4. WHAT IS DIFFERENCE BETWEEN COMPOSITION AND AGGREGATION ?
  • Ans. 

    Composition is a strong relationship where the child object cannot exist independently of the parent object, while aggregation is a weak relationship where the child object can exist independently.

    • Composition is a 'has-a' relationship, where the child object is a part of the parent object.

    • Aggregation is a 'has-a' relationship, where the child object is not a part of the parent object.

    • In composition, the child object is...

  • Answered by AI
  • Q5. DIFFERENCE BETWEEN COMPARABLE AND COMPARATOR.
  • Ans. 

    Comparable is an interface used for natural ordering of objects, while Comparator is an interface used for custom ordering of objects.

    • Comparable interface is implemented by the class whose objects are to be compared, while Comparator interface is implemented by a separate class.

    • Comparable interface has a single method compareTo() for comparing objects, while Comparator interface has a single method compare() for custom...

  • Answered by AI
  • Q6. DIFFERENCE BETWEEN HASHMAP AND CONCURRENTHASH MAP
  • Ans. 

    HashMap is not thread-safe while ConcurrentHashMap is thread-safe.

    • HashMap is not thread-safe and can lead to ConcurrentModificationException if modified during iteration.

    • ConcurrentHashMap allows concurrent read and write operations without the need for external synchronization.

    • ConcurrentHashMap achieves thread-safety by dividing the map into segments, allowing multiple threads to operate on different segments concurren...

  • Answered by AI
  • Q7. DIFFERENCE BETWEEN COLLECTION AND STREAM
  • Ans. 

    Collections store data while streams process data in a functional way.

    • Collections are used to store and manage groups of objects, while streams are used to process collections of objects.

    • Collections are mutable, meaning you can add, remove, or modify elements, while streams are immutable and do not change the original data.

    • Streams use functional programming concepts like map, filter, and reduce to process data efficien...

  • Answered by AI
  • Q8. IN WHICH SITUATION WE USE @PRIMARY AND @ QUALIFIER ?
  • Ans. 

    Use @Primary to specify a primary bean when multiple beans of the same type are present. Use @Qualifier to specify a specific bean when multiple beans of the same type are present.

    • Use @Primary to indicate the primary bean to be used when multiple beans of the same type are present in the Spring application context.

    • Use @Qualifier along with @Autowired to specify a specific bean to be injected when multiple beans of the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Everyone should focus on core java and java 1.8.
Spring boot and microservices

Skills evaluated in this interview

SS&C TECHNOLOGIES Interview FAQs

How many rounds are there in SS&C TECHNOLOGIES Senior Java Developer interview?
SS&C TECHNOLOGIES interview process usually has 3 rounds. The most common rounds in the SS&C TECHNOLOGIES interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for SS&C TECHNOLOGIES Senior Java Developer 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 SS&C TECHNOLOGIES. The most common topics and skills that interviewers at SS&C TECHNOLOGIES expect are Java, Hibernate, Web Services, Agile and Angularjs.
What are the top questions asked in SS&C TECHNOLOGIES Senior Java Developer interview?

Some of the top questions asked at the SS&C TECHNOLOGIES Senior Java Developer interview -

  1. Oracle queries examp...read more
  2. All concepts in Core java Spring Boot Spring Ba...read more
  3. Kafka depth explanati...read more

Tell us how to improve this page.

SS&C TECHNOLOGIES Senior Java Developer Interview Process

based on 3 interviews

1 Interview rounds

  • Technical Round
View more

SS&C TECHNOLOGIES Senior Java Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Associate
3.4k salaries
unlock blur

₹2.4 L/yr - ₹10 L/yr

Associate
1.5k salaries
unlock blur

₹2.2 L/yr - ₹8.8 L/yr

Associate Manager
1.2k salaries
unlock blur

₹5 L/yr - ₹18.5 L/yr

Manager
611 salaries
unlock blur

₹7.3 L/yr - ₹25.5 L/yr

Senior Software Engineer
307 salaries
unlock blur

₹8.8 L/yr - ₹32.7 L/yr

Explore more salaries
Compare SS&C TECHNOLOGIES with

Virtusa Consulting Services

3.7
Compare

Nagarro

4.0
Compare

Sopra Steria

3.8
Compare

Sutherland Global Services

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