Upload Button Icon Add office photos
Premium Employer

i

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

Finastra Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 482 Reviews

Filter interviews by

Finastra Cpp Developer Interview Questions and Answers

Updated 19 Jun 2024

Finastra Cpp Developer Interview Experiences

1 interview found

Cpp Developer Interview Questions & Answers

user image Last Mail

posted on 19 Jun 2024

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

I applied via Approached by Company and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Oops concept in brief
  • Ans. 

    Oops concept is a programming paradigm based on the principles of object-oriented programming.

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

    • Inheritance: ability of a class to inherit properties and behavior from another class

    • Polymorphism: ability to present the same interface for different data types

    • Abstraction: hiding the complex implementation details and showing only the

  • Answered by AI
  • Q2. Write a linked list reverse
  • Ans. 

    Reversing a linked list involves changing the direction of pointers to go from the end to the beginning.

    • Start by initializing three pointers: current, prev, and next.

    • Iterate through the list, updating pointers to reverse the links.

    • Update the head pointer to point to the new beginning of the list.

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Campus Placement

Round 1 - Aptitude Test 

Question related to operating system and computer network

Round 2 - Technical 

(1 Question)

  • Q1. Traverse all child nodes in tree
  • Ans. 

    Traverse all child nodes in a tree data structure

    • Use depth-first or breadth-first traversal algorithms

    • Recursively visit each child node starting from the root node

    • Consider using a stack or queue data structure for traversal

    • Example: Traverse all nodes in a binary tree

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Question related to cloud and oops
Round 4 - Technical 

(1 Question)

  • Q1. Question related to my background and how web site work
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Basic DSA questions like binary search, pattern
  • Q2. Basic SQL query questions

Interview Preparation Tips

Interview preparation tips for other job seekers - One of the worst company I have given interview,
The HR named Shubha A contacted me a day before interview that are you available for interview, I told yes.

After that interview has been scheduled, with interviewer soumyashree rout , I have given all the answers which she asked for and what did I get an acquisition of cheating in interview, I even showed her my surroundings that I am not cheating, and how come such dumb people are allowed to interview. Really waste of time and effort.

Please don't go for interview for this company you will find better opportunities like I did , offered a position at a product based company better than this.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Written coding test
Basic coding questions
Only c c++
Easy level

Round 2 - Technical 

(2 Questions)

  • Q1. Bit manipulation
  • Q2. Rtos concepts,c coding concepts like structures,pointers
Round 3 - Technical 

(2 Questions)

  • Q1. About projects more detailly
  • Q2. About memory management and layout in c
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

In first round 4 coding question like 1 dsa 2 database and one is api and question is very simple . coding round was conducted in hackerrank

Round 2 - Technical 

(2 Questions)

  • Q1. DSA QUESTION LIKE TREE AND GRAPH
  • Q2. DP AND SORTING APPROACH
Round 3 - Coding Test 

Again same but dsa question and oops concept in deep level

Interview Preparation Tips

Interview preparation tips for other job seekers - good knowledge in dsa , database , programming thats it
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Bubble sort and array was given
  • Q2. Create binary tree
  • Ans. 

    A binary tree is a data structure where each node has at most two children.

    • Start by creating a Node class with left and right child pointers.

    • Implement methods to insert, search, and delete nodes in the tree.

    • Consider different traversal methods like inorder, preorder, and postorder.

  • Answered by AI
  • Q3. HightBuilding Pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - just go through strivers videos

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Rest Apis questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Core java and OOPS and LLD

Interview Preparation Tips

Interview preparation tips for other job seekers - Good understanding of Core language and its framework

Software Developer Interview Questions & Answers

Amadeus user image Aswini Ramachandran

posted on 2 Oct 2024

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

(2 Questions)

  • Q1. Something based on hashet
  • Q2. Same with this too
Round 2 - Aptitude Test 

Basic questions were given..bar graphs,pie charts

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

(2 Questions)

  • Q1. Security related scenarios.
  • Q2. Integration types and usecases.
  • Ans. 

    Integration types include point-to-point, middleware, and API-based integrations for connecting different systems.

    • Point-to-point integration involves direct connections between two systems.

    • Middleware integration uses a middle layer to connect multiple systems.

    • API-based integration utilizes APIs to connect systems and exchange data.

    • Examples: Salesforce to SAP integration, Salesforce to MailChimp integration, Salesforce

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. What is inheritance?
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Allows a class to reuse code from another class

    • Creates a parent-child relationship between classes

    • Derived class inherits attributes and methods from base class

  • Answered by AI
  • Q2. What is oop principles?
  • Ans. 

    OOP principles are the fundamental concepts of object-oriented programming that help in designing and implementing software solutions.

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

    • Inheritance: Allowing a class to inherit properties and behavior from another class.

    • Polymorphism: The ability of objects to take on multiple forms or have multiple behaviors.

    • Abstraction: Hiding t...

  • Answered by AI
  • Q3. What is polymorphism principle?
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types or objects.

    • Examples include method overloading and method overriding in object-oriented programming languages like Java.

  • Answered by AI

Finastra Interview FAQs

How many rounds are there in Finastra Cpp Developer interview?
Finastra interview process usually has 1 rounds. The most common rounds in the Finastra interview process are Technical.
What are the top questions asked in Finastra Cpp Developer interview?

Some of the top questions asked at the Finastra Cpp Developer interview -

  1. Write a linked list reve...read more
  2. Oops concept in br...read more

Tell us how to improve this page.

Finastra Cpp Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 797 Interviews
Zoho Interview Questions
4.3
 • 512 Interviews
FIS Interview Questions
3.9
 • 476 Interviews
SAP Interview Questions
4.2
 • 304 Interviews
View all
Software Engineer
331 salaries
unlock blur

₹4.9 L/yr - ₹16.1 L/yr

Senior Software Engineer
325 salaries
unlock blur

₹9.3 L/yr - ₹30 L/yr

Associate Software Engineer
166 salaries
unlock blur

₹5 L/yr - ₹10 L/yr

Senior QA Engineer
90 salaries
unlock blur

₹7 L/yr - ₹24.2 L/yr

Expert Software Engineer
88 salaries
unlock blur

₹14 L/yr - ₹40 L/yr

Explore more salaries
Compare Finastra with

Temenos

3.2
Compare

FIS

3.9
Compare

Nucleus Software Exports

3.5
Compare

TCS

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