Premium Employer

i

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

Backbase Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Backbase Engineer Interview Questions and Answers

Updated 8 Apr 2024

Backbase Engineer Interview Experiences

1 interview found

Engineer Interview Questions & Answers

user image Anonymous

posted on 8 Apr 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Tech stack explain in details.
  • Ans. 

    Tech stack refers to the combination of technologies used in a project or system.

    • Tech stack includes programming languages, frameworks, libraries, databases, and tools.

    • Example: MEAN stack (MongoDB, Express.js, Angular, Node.js)

    • Example: LAMP stack (Linux, Apache, MySQL, PHP)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Check with them what exactly the company requires. If you find the requirements can be fulfilled then only proceed with discussion. Else better to close the call short to save time, that's that I did.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic node.js and javascript.
Round 2 - One-on-one 

(1 Question)

  • Q1. More discussion towards the existing project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Company is good. The process was quite clear and transparent.

I applied via Campus Placement and was interviewed before May 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic SQL Queries, some very basic Java questions, the interviewer herself didn't know much about coding in general.

Interview Preparation Tips

Interview preparation tips for other job seekers - Yodlee is a big company will several departments, every department has its own requirements.

I was inducted into the IAE department as an ASE through pool-campus placement.

The issue at Yodlee is that it's IAE department that they actively hire for, is the worst department as far as technical growth and knowledge are concerned. There is no learning. Hence usually the interviewers (mostly the directors, managers, and leads in IAE) who have been in the organization for a very large part of their career, are also very weak as far as their technical skills are concerned. Their political and toxic managerial skills skyrocket though. They stay there for too long and become virtually outdated in terms of their technical skills.

Therefore you can rest be assured that the interview quality will be well below average as far as IAE is concerned. I am not sure about other departments, but I would not assume otherwise. I would suggest, if you have to absolutely join IAE in Yodlee, just an average preparation would be more than enough. If you have other opportunities, I would suggest prioritizing them over Yodlee.
Round 1 - Aptitude Test 

Grammer and general understanding

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. Show a learning attitude. Be polite and positive

I applied via Campus Placement and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Group Discussion 

Current affairs - relevant things going on in the world especially financial/Fintech domain

Round 2 - Technical 

(2 Questions)

  • Q1. Guesstimation questions- bursh up on them CV centric questions
  • Q2. Agile Data analysis Situation based

Interview Preparation Tips

Interview preparation tips for other job seekers - Ask clarity on job role- be sure it aligns to what you want

I applied via Campus Placement and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Telecom Architecture
  • Q2. OSS/BSS
  • Q3. Security

Interview Preparation Tips

Interview preparation tips for other job seekers - Read topics relating to telecom infrastructure

Interview Questionnaire 

2 Questions

  • Q1. Multithreading in C++, casting and OOPs concepts
  • Q2. Cover the basic concepts.

Interview Questionnaire 

1 Question

  • Q1. Simple and General Linux related questions, Oracle installations, Linux commands etc

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview for the deployment team to be responsible for deploying the security products to global customers

Interview Questionnaire 

1 Question

  • Q1. Mostly on C language especially strings.Implement strcmp,strcat,strrev and structures and unions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush your knowledge on basics of C

Interview Questionnaire 

9 Questions

  • Q1. Questions related to the work done at my previous company
  • Q2. Find if a given directed graph is cyclic or not
  • Ans. 

    To check if a directed graph is cyclic or not

    • Use Depth First Search (DFS) algorithm to traverse the graph

    • Maintain a visited set to keep track of visited nodes

    • Maintain a recursion stack to keep track of nodes in the current DFS traversal

    • If a node is visited and is already in the recursion stack, then the graph is cyclic

    • If DFS traversal completes without finding a cycle, then the graph is acyclic

  • Answered by AI
  • Q3. You have a stream of bytes from which you can read one byte at a time. You only have enough space to store one byte. After processing those bytes, you have to return a random byte. Note: The probability of...
  • Ans. 

    Return a random byte from a stream of bytes with equal probability.

    • Create a variable to store the count of bytes read

    • Create a variable to store the current random byte

    • For each byte read, generate a random number between 0 and the count of bytes read

    • If the random number is 0, store the current byte as the random byte

    • Return the random byte

  • Answered by AI
  • Q4. Find if a given Binary Tree is BST or not
  • Ans. 

    Check if a binary tree is a binary search tree or not.

    • Traverse the tree in-order and check if the values are in ascending order.

    • For each node, check if its value is greater than the maximum value of its left subtree and less than the minimum value of its right subtree.

    • Use recursion to check if all nodes in the tree satisfy the above condition.

  • Answered by AI
  • Q5. Devise an algorithm to determine the Nth-to-Last element in a singly linked list of unknown length. If N = 0, then your algorithm must return the last element. You should parse the list only once
  • Ans. 

    Algorithm to find Nth-to-Last element in a singly linked list of unknown length

    • Traverse the list and maintain two pointers, one at the beginning and one at Nth node from beginning

    • Move both pointers simultaneously until the second pointer reaches the end of the list

    • The first pointer will be pointing to the Nth-to-Last element

    • If N=0, return the last element

    • Parse the list only once

  • Answered by AI
  • Q6. Given an array of integers, print all possible permutations. Also explain your approach
  • Ans. 

    Print all possible permutations of an array of integers

    • Use recursion to swap elements and generate permutations

    • Start with the first element and swap it with each subsequent element

    • Repeat the process for the remaining elements

    • Stop when all elements have been swapped with the first element

    • Print each permutation as it is generated

  • Answered by AI
  • Q7. Design a Stack DS that also prints in O(1) the minimum element you pushed in the stack
  • Ans. 

    Design a stack that prints the minimum element pushed in O(1)

    • Use two stacks, one for storing elements and another for storing minimums

    • When pushing an element, compare it with the top of minimum stack and push the smaller one

    • When popping an element, pop from both stacks

    • To get the minimum element, just return the top of minimum stack

  • Answered by AI
  • Q8. Given a linked list with loop, how would you find the starting point of the loop ?
  • Ans. 

    To find the starting point of a loop in a linked list, use Floyd's cycle-finding algorithm.

    • Use two pointers, one moving at twice the speed of the other.

    • When they meet, move one pointer to the head of the list and keep the other at the meeting point.

    • Move both pointers one step at a time until they meet again, which is the starting point of the loop.

  • Answered by AI
  • Q9. Find a number a matrix mat[m][n] where all the rows and columns are sorted non-decreasingly. What will be the complexity of the solution
  • Ans. 

    To find a number in a matrix where all rows and columns are sorted non-decreasingly. Complexity of the solution.

    • Use binary search to find the number in each row and column

    • Start from the top-right corner or bottom-left corner to optimize search

    • Time complexity: O(m log n) or O(n log m) depending on the starting corner

  • Answered by AI

Interview Preparation Tips

Skills: Algorithm, Data structure
College Name: Na

Skills evaluated in this interview

Backbase Interview FAQs

How many rounds are there in Backbase Engineer interview?
Backbase interview process usually has 1 rounds. The most common rounds in the Backbase interview process are Technical.
How to prepare for Backbase 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 Backbase. The most common topics and skills that interviewers at Backbase expect are Microservices, Spring Boot, Agile, Java and Backend.

Tell us how to improve this page.

Backbase Engineer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more
Join Backbase Re-architect banking around your customer

Interview Questions from Similar Companies

Mobileum Interview Questions
3.3
 • 37 Interviews
SOTI Interview Questions
3.3
 • 23 Interviews
Bentley Systems Interview Questions
4.3
 • 21 Interviews
FinThrive Interview Questions
3.7
 • 20 Interviews
3Pillar Global Interview Questions
3.3
 • 19 Interviews
Mentor Graphics Interview Questions
4.0
 • 18 Interviews
Yodlee Interview Questions
3.8
 • 17 Interviews
View all
Senior Backend Engineer
21 salaries
unlock blur

₹28 L/yr - ₹33 L/yr

Back End Engineer
20 salaries
unlock blur

₹12 L/yr - ₹21 L/yr

Senior Software Engineer
15 salaries
unlock blur

₹28 L/yr - ₹34 L/yr

Front end Engineer
15 salaries
unlock blur

₹14 L/yr - ₹22.4 L/yr

Senior Solution Architect
10 salaries
unlock blur

₹42 L/yr - ₹55 L/yr

Explore more salaries
Compare Backbase with

Duck Creek Technologies

4.4
Compare

FinThrive

3.7
Compare

Mobileum

3.3
Compare

AgreeYa Solutions

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