Premium Employer

i

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

DTCC

Compare button icon Compare button icon Compare

Filter interviews by

DTCC Lead Software Engineer Interview Questions and Answers

Updated 6 Dec 2024

DTCC Lead Software Engineer Interview Experiences

1 interview found

Lead Software Engineer Interview Questions & Answers

user image Santhoshkumar Subramanian

posted on 6 Dec 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java 8 questions
  • Q2. Design questions

Lead Software Engineer Jobs at DTCC

View all

Interview questions from similar companies

Round 1 - Technical 

(2 Questions)

  • Q1. SQL windows functions
  • Q2. .Net framework quetions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and practice well, senior management to take the interviews so talk more about your visions and values you can bring to the organisation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Apr 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

Pattern prg on stair case of building

Round 3 - Technical 

(1 Question)

  • Q1. Hasmap, sql , core java , multithreading , exception handling

Interview Preparation Tips

Topics to prepare for Bombay Stock Exchange Software Developer interview:
  • Not selected
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Cs fundamentals were asked which were easy

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
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was basic aptitude test on rs aggrawal

Round 2 - One-on-one 

(1 Question)

  • Q1. Try catch exception handling
Round 3 - HR 

(1 Question)

  • Q1. Where do you live
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(4 Questions)

  • Q1. What are joins in sql
  • Ans. 

    Joins in SQL are used to combine rows from two or more tables based on a related column between them.

    • Joins are used to retrieve data from multiple tables based on a related column

    • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

  • Answered by AI
  • Q2. What is OOP features
  • Ans. 

    OOP features are key concepts in Object-Oriented Programming that include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (object)

    • Inheritance: Ability for a class to inherit properties and behavior from another class

    • Polymorphism: Ability for objects to be treated as instances of their parent class or their own class

    • Abstractio...

  • Answered by AI
  • Q3. Primary key , foreign key
  • Q4. Exception in java
  • Ans. 

    An exception in Java is a runtime error that disrupts the normal flow of a program.

    • Exceptions are objects that are thrown when an error occurs during the execution of a program.

    • They can be caught and handled using try-catch blocks.

    • Common types of exceptions in Java include NullPointerException, ArrayIndexOutOfBoundsException, and IOException.

  • Answered by AI

Skills evaluated in this interview

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

I was interviewed in Jul 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between a static function and a static variable?
  • Ans. 

    Static function is a function that can only be accessed within the same file, while a static variable is a variable that retains its value between function calls.

    • Static function is declared using the 'static' keyword before the return type, limiting its scope to the file it is defined in.

    • Static variable is declared using the 'static' keyword before the variable type, retaining its value between function calls.

    • Example o...

  • Answered by AI
  • Q2. What is the synchronization technique?
  • Ans. 

    Synchronization technique is a method used to control access to shared resources in a multi-threaded environment.

    • Synchronization techniques prevent race conditions and ensure data consistency

    • Common synchronization techniques include locks, semaphores, and monitors

    • Examples include using synchronized keyword in Java or mutex in C++

  • Answered by AI
Round 2 - Coding Test 

Add an element to a linked list.

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

I applied via Recruitment Consulltant and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

1 hour 10 mins, MERN Stack, Face to Face. Mongodb, medium DSA Question, callback, eventloop, NodeJS asynchronous working

Interview Preparation Tips

Interview preparation tips for other job seekers - you should have prior experience in coding

I applied via Company Website and was interviewed in 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 - Aptitude Test 

Maths,verbal reasoning.
Like percentage,wages, proportional problems

Round 3 - Group Discussion 

Particular topic on political party

Interview Preparation Tips

Interview preparation tips for other job seekers - This is the best platform for surviving ,to be happy

DTCC Interview FAQs

How many rounds are there in DTCC Lead Software Engineer interview?
DTCC interview process usually has 1 rounds. The most common rounds in the DTCC interview process are Technical.
How to prepare for DTCC Lead Software Engineer 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 DTCC. The most common topics and skills that interviewers at DTCC expect are Java, Javascript, J2Ee, Oracle and Angular.
What are the top questions asked in DTCC Lead Software Engineer interview?

Some of the top questions asked at the DTCC Lead Software Engineer interview -

  1. java 8 questi...read more
  2. design questi...read more

Tell us how to improve this page.

DTCC Lead Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Join DTCC Financial Markets. Forward.

Interview Questions from Similar Companies

Morningstar Interview Questions
3.9
 • 241 Interviews
ICICI Securities Interview Questions
3.9
 • 158 Interviews
Kotak Securities Interview Questions
3.6
 • 116 Interviews
HDFC Securities Interview Questions
3.6
 • 104 Interviews
Mr Cooper Interview Questions
4.0
 • 81 Interviews
Axis Direct Interview Questions
3.8
 • 76 Interviews
Synchrony Interview Questions
4.3
 • 75 Interviews
CSC Global Interview Questions
3.5
 • 56 Interviews
View all
DTCC Lead Software Engineer Salary
based on 58 salaries
₹16.5 L/yr - ₹31 L/yr
At par with the average Lead Software Engineer Salary in India
View more details

DTCC Lead Software Engineer Reviews and Ratings

based on 6 reviews

4.9/5

Rating in categories

3.5

Skill development

5.0

Work-life balance

4.2

Salary

4.8

Job security

4.5

Company culture

3.5

Promotions

4.1

Work satisfaction

Explore 6 Reviews and Ratings
Lead Software Engineer - Mainframe Developer

Hyderabad / Secunderabad

3-6 Yrs

Not Disclosed

Lead Software Engineer

Hyderabad / Secunderabad,

Chennai

3-6 Yrs

Not Disclosed

Lead Software Engineer

Hyderabad / Secunderabad

3-6 Yrs

Not Disclosed

Explore more jobs
Lead Software Engineer
58 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Director
47 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
33 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate
32 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
21 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare DTCC with

National Stock Exchange of India

3.6
Compare

Bombay Stock Exchange

3.8
Compare

Central Depository Services (I)

3.3
Compare

Merchant Customer Exchange

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