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

Updated 30 Apr 2024

DTCC Platform Engineer Interview Experiences

1 interview found

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

(1 Question)

  • Q1. Kubernetes architecture and administration in depth.
  • Ans. 

    Kubernetes is a container orchestration platform that automates the deployment, scaling, and management of containerized applications.

    • Kubernetes follows a master-slave architecture where the master node controls the cluster and the worker nodes run the containers.

    • Key components of Kubernetes architecture include Pods, Nodes, Clusters, Services, and Controllers.

    • Kubernetes administration involves tasks like deploying app...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Core Java and aws

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
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
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Sort array and questions on project
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Count frequency of letters in a given string
  • Ans. 

    Count frequency of letters in a given string

    • Create an array of size 26 to store the count of each letter (assuming only lowercase letters)

    • Iterate through the string and increment the count of each letter in the array

    • Print the count of each letter in the array

  • Answered by AI
  • Q2. Closures, Temporal Dead Zone, Hoisting
Round 2 - Technical 

(2 Questions)

  • Q1. Technical Discussions on projects from resume and work
  • Q2. Refresh tokens and access tokens, rate limiter

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Sql based questions, oops concepts, project related questions
  • Q2. Recursion, Python, MVC, AWS services

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare the basics really well like oops, mvc concepts, sql and brush up and be clear in explaining your personal or previous company's project.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is the difference between normal and arrow functions
  • Ans. 

    Arrow functions are more concise and have a lexical 'this' binding compared to normal functions.

    • Arrow functions do not have their own 'this' keyword, they inherit it from the parent scope.

    • Arrow functions do not have their own 'arguments' object.

    • Arrow functions cannot be used as constructors with 'new'.

    • Arrow functions are more concise and have implicit return when no curly braces are used.

  • Answered by AI
  • Q2. All basic JS Questions to cover Hoisting closure
  • Q3. They asked to show me an example using the API call
  • Q4. Difference between forEach and Map
  • Ans. 

    forEach is used to iterate over an array and perform a function on each element, while map creates a new array by applying a function to each element.

    • forEach does not return a new array, while map does

    • forEach does not modify the original array, while map creates a new array

    • forEach is used for side effects, while map is used for transformation

    • Example: forEach - array.forEach(item => console.log(item)), map - const newAr

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover JS basics

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Dec 2022. There were 4 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 

Basic Math and English Questions

Round 3 - Technical 

(1 Question)

  • Q1. Basic Dot Net Interview Questions
Round 4 - HR 

(1 Question)

  • Q1. Mostly Salary Negotiation

I applied via Recruitment Consulltant and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Explain Javascript ES6 features.
  • Ans. 

    ES6 introduced new features to Javascript including arrow functions, let and const, classes, and template literals.

    • Arrow functions provide a concise syntax for writing functions.

    • Let and const are block-scoped variables.

    • Classes provide a way to create objects with methods and properties.

    • Template literals allow for string interpolation and multi-line strings.

    • Destructuring allows for easy extraction of values from arrays ...

  • Answered by AI
  • Q2. How an angular application works.
  • Ans. 

    Angular is a front-end framework that uses HTML, CSS, and JavaScript to build dynamic web applications.

    • Angular uses components to create reusable UI elements

    • It uses services to share data and functionality across components

    • It has a powerful template system that allows for easy data binding and manipulation

    • Angular uses RxJS for reactive programming and observables

    • It has a built-in router for handling navigation between ...

  • Answered by AI
  • Q3. What are components in angular
  • Ans. 

    Components in Angular are reusable building blocks that encapsulate HTML, CSS, and TypeScript code.

    • Components are the basic building blocks of an Angular application

    • They are reusable and can be used across multiple pages

    • Each component has its own HTML, CSS, and TypeScript code

    • Components can communicate with each other using @Input and @Output decorators

    • Examples of components include navbar, footer, and login form

  • Answered by AI
Round 2 - Behavioral 

(3 Questions)

  • Q1. How to set up the environment for building angular application
  • Ans. 

    To set up the environment for building an Angular application, you need to install Node.js and Angular CLI.

    • Install Node.js and npm

    • Install Angular CLI using npm

    • Create a new Angular project using CLI

    • Run the project using ng serve command

  • Answered by AI
  • Q2. What is CI/CD pipeline
  • Ans. 

    CI/CD pipeline is a process of continuous integration and continuous delivery/deployment of software.

    • CI/CD pipeline automates the software delivery process.

    • It involves continuous integration of code changes, automated testing, and continuous delivery/deployment of software.

    • It helps in reducing errors and improving the quality of software.

    • Popular CI/CD tools include Jenkins, Travis CI, and CircleCI.

  • Answered by AI
  • Q3. How comfortable are you learning and working on VueJS application

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are applying for Full-Stack Developer role then make sure you know any one of the JS Frameworks. A little background on AWS will be beneficial.

Skills evaluated in this interview

DTCC Interview FAQs

How many rounds are there in DTCC Platform 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 Platform 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 Firewall, Proxy, Automation, Capacity management and Checkpoint.

Tell us how to improve this page.

DTCC Platform 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
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