Upload Button Icon Add office photos

Filter interviews by

Tonik Digital Bank Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Discussed about my personal discussion and my overall experience
  • Q2. Disussion about product knowledge
  • Q3. Discussed about why didn't have team handling Experience?
Round 2 - One-on-one 

(2 Questions)

  • Q1. What is current CTC?
  • Q2. What is the Expectation CTC?

Interview Preparation Tips

Interview preparation tips for other job seekers - Reference by My friend......
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Exam 

(2 Questions)

  • Q1. Quantitative Aptitude, Reasoning, English and General Awareness
  • Q2. Professional Knowledge based questions .
Round 2 - One-on-one 

(2 Questions)

  • Q1. Technical questions
  • Q2. HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I got a chance to interview after clearing the exam and my interview went well. They asked me a mix of all types of technical and HR questions. But still in the final list my name was not there. They did not even select the number they had advertised for. I was disheartened obviously but then I did some research. I found that they do this quite often- post advertisements but do not hire people. A person clears the exam, proves his capability and is selected for interview among 100s of other candidates who appeared, so how come IPPB is unable to shortlist. It feels false play just to collect fees who no sufficient hiring is done. My honest advise is DO NOT WASTE TIME APPLYING HERE.

Product Data Scientist Interview Questions & Answers

MBB LABS user image Pruthvi Kiran Pokala

posted on 24 Oct 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. Tell us about your projects
  • Ans. 

    I have worked on projects involving predictive modeling, natural language processing, and recommendation systems.

    • Developed a predictive model to forecast customer churn for a telecom company

    • Implemented a sentiment analysis tool using NLP techniques to analyze customer reviews

    • Built a recommendation system for an e-commerce platform to personalize product recommendations

  • Answered by AI
  • Q2. How would you tackle a Recommendation engine

Skills evaluated in this interview

Product Manager Interview Questions & Answers

Emirates NBD user image Arun Kondepogu AE07B013

posted on 4 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How did you deliver projects using agile delivery
  • Ans. 

    I delivered projects using agile delivery by following Scrum framework, conducting daily stand-ups, sprint planning, and retrospectives.

    • Utilized Scrum framework to break down projects into manageable tasks

    • Conducted daily stand-up meetings to track progress and address any blockers

    • Facilitated sprint planning sessions to prioritize tasks and set goals for each sprint

    • Organized retrospectives to reflect on what went well a...

  • Answered by AI
  • Q2. Payment related question and the process
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. Group id in kafka consumer configuration
  • Ans. 

    Group id is a unique identifier for a group of consumers in Kafka consumer configuration.

    • Group id helps in coordinating the consumption of messages among multiple consumers in a consumer group.

    • Each consumer group should have a unique group id to ensure proper message distribution.

    • Changing the group id will result in the consumer group starting consumption from the beginning of the topic.

    • Group id is specified in the con...

  • Answered by AI
  • Q2. Recursive algorithm for multiplying 2 numbers
  • Ans. 

    Recursive algorithm for multiplying 2 numbers

    • Define a base case for when one of the numbers is 0

    • Use recursion to repeatedly add the second number to the result until the first number reaches 0

    • Consider handling negative numbers and optimizing for efficiency

  • Answered by AI
  • Q3. Spring filters implementation
  • Ans. 

    Spring filters are used to intercept HTTP requests and responses in a Spring application.

    • Spring filters can be used for logging, authentication, authorization, etc.

    • They are implemented using the javax.servlet.Filter interface.

    • Filters can be configured in the web.xml file or using annotations like @WebFilter.

    • Example: Implementing a logging filter to log incoming requests and outgoing responses.

  • Answered by AI
  • Q4. SQL query for first 5 biggest salaries
  • Ans. 

    SQL query to retrieve the first 5 biggest salaries from a table

    • Use the ORDER BY clause to sort salaries in descending order

    • Use the LIMIT clause to limit the results to the first 5 rows

  • Answered by AI

Skills evaluated in this interview

Senior JAva API Developer Interview Questions & Answers

Westpac user image Anonymous

posted on 16 Sep 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. How would you build a high performing REST service, that calls a downstream API meant for "Notification" service? [Hint: Async service calls]
  • Ans. 

    To build a high performing REST service for Notification API calls, use asynchronous service calls.

    • Use asynchronous programming techniques like CompletableFuture or reactive programming to make non-blocking service calls.

    • Implement circuit breakers and timeouts to handle potential failures and prevent cascading failures.

    • Optimize the service by tuning thread pools, connection pools, and caching mechanisms.

    • Consider using ...

  • Answered by AI
  • Q2. How would you test your REST API, while the downstream API that you are calling is not ready for test yet? [Hint: Mocks in Mockito]
  • Ans. 

    Use Mockito to create mock objects for downstream API testing.

    • Create a mock object using Mockito for the downstream API

    • Define the behavior of the mock object to simulate responses

    • Inject the mock object into the test environment to simulate the downstream API calls

    • Write test cases to verify the functionality of the REST API using the mock object

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. What design pattern you usually used?
  • Ans. 

    I usually use the MVC (Model-View-Controller) design pattern in my projects.

    • Separates the application into three main components: Model (data), View (UI), and Controller (logic)

    • Promotes code reusability, modularity, and maintainability

    • Examples: Laravel framework in PHP, Spring framework in Java

  • Answered by AI
  • Q2. What is the difference between array and arraylist
  • Ans. 

    Array is a fixed-size data structure while ArrayList is a dynamic-size data structure in Java.

    • Array is a fixed-size collection of elements of the same data type, while ArrayList is a dynamic-size collection that can grow or shrink.

    • Arrays can store primitive data types and objects, while ArrayList can only store objects.

    • Arrays require a specified size during initialization, while ArrayList can dynamically resize itself.

    • ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Describe a situation when there was a team disagreement and how did you handle it.
  • Ans. 

    Handled team disagreement by facilitating open communication and finding common ground.

    • Encouraged team members to express their perspectives and concerns

    • Listened actively to understand all sides of the disagreement

    • Facilitated a discussion to find common ground and reach a consensus

    • Focused on the team's goals and objectives to guide the resolution process

  • Answered by AI
  • Q2. Current systems that you are using with facts and figures.
  • Ans. 

    Currently using Salesforce CRM for customer management and Tableau for data visualization.

    • Salesforce CRM is used for managing customer relationships and tracking sales activities.

    • Tableau is used for creating interactive data visualizations and dashboards.

    • Salesforce CRM has helped increase sales by 20% in the past year.

    • Tableau has improved data analysis efficiency by 30%.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare whatever you write in the resume.

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Assignment 

The assignment of good

Round 2 - HR 

(5 Questions)

  • Q1. About self introduction
  • Q2. About hyderabad
  • Q3. About nature in home town
  • Q4. About father n mother
  • Q5. About the company
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Generic questions on flexcube
Round 2 - Technical 

(1 Question)

  • Q1. Generic questions on flexcube

Tonik Digital Bank Interview FAQs

How to prepare for Tonik Digital Bank 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 Tonik Digital Bank. The most common topics and skills that interviewers at Tonik Digital Bank expect are Core banking, Appium, Banking Operations, Core Banking Solution and Deep Learning.

Tell us how to improve this page.

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Axis Bank Interview Questions
3.8
 • 1.4k Interviews
PhonePe Interview Questions
4.0
 • 300 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
Niyo Solutions Interview Questions
2.9
 • 9 Interviews
Yono SBI Interview Questions
4.6
 • 2 Interviews
View all
Senior Solution Architect
3 salaries
unlock blur

₹40 L/yr - ₹40 L/yr

Explore more salaries
Compare Tonik Digital Bank with

Niyo Solutions

2.9
Compare

Open Financial Technologies Private Limited

3.3
Compare

Razorpay

3.6
Compare

Paytm Payments Bank

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