Premium Employer

i

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

Bottomline Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Bottomline Interview Questions, Process, and Tips

Updated 30 Nov 2024

Top Bottomline Interview Questions and Answers

View all 7 questions

Bottomline Interview Experiences

Popular Designations

17 interviews found

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

I applied via Referral and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Coding Test 

Basic maths question - given a number a and b get the nth number which is divisible by both a and b. And one sql query of concatinating the string in the column results.

Other - which movie you watched?
why do you watch?
who is your role model?
Why? What? How? Where?
Silly questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (180)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before May 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Hacker rank test. Basic coding questions on arrays, list etc.

Round 2 - Technical 

(1 Question)

  • Q1. Interactive session. Theoritical questions on oops, multithreading, springboot, java8 and few coding questions.
Round 3 - Technical 

(1 Question)

  • Q1. Design round. Questions on system design and best practices to be followed while developing any service. Few managerial questions as well.
Round 4 - HR 

(1 Question)

  • Q1. Profile related questions and salary discussion.

Interview Preparation Tips

Topics to prepare for Bottomline Senior Software Engineer interview:
  • Java8 and above
  • Data structure
  • Springboot
Interview preparation tips for other job seekers - Practice coding questions on java8 functions and few mid level data-structures based questions.

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (1)

QA Engineer Interview Questions & Answers

user image Shivani Rana

posted on 27 Mar 2024

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

(1 Question)

  • Q1. Puzzles, API testing

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (7)
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. About project and technology
Round 2 - HR 

(1 Question)

  • Q1. What is expected Salary?

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (1)

Bottomline interview questions for popular designations

 Product Manager

 (3)

 QA Engineer

 (2)

 Senior Product Support Engineer

 (2)

 Senior Software Engineer

 (2)

 Software Developer

 (2)

 Software Engineer

 (2)

 Senior QA Engineer

 (1)

 Senior Software Developer

 (1)

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

I applied via Job Portal and was interviewed before May 2023. There were 4 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Previous work experience, questions related to Project and tools. How to handle incidents and SLA
Round 2 - Technical 

(1 Question)

  • Q1. Linux basic questions, SQL queries to write based on scenario provided.
Round 3 - Behavioral 

(1 Question)

  • Q1. Approach, some technical questions and approach to a sev1 scenario
Round 4 - HR 

(1 Question)

  • Q1. Why Bottomline?

Senior Product Support Engineer Interview Questions asked at other Companies

Q1. what is github , clone repository , issue faced in production , whhat is process followed in you last company
View answer (1)

I applied via Approached by Company and was interviewed before Nov 2021. 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 - Technical 

(1 Question)

  • Q1. Design patterns SQL questions Java questions
Round 3 - One-on-one 

(1 Question)

  • Q1. OOAD questions SQL questions
Round 4 - Behavioral 

(1 Question)

  • Q1. Behavioral and Values questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on OO concepts,OOA Design and Coding like Data Structures and Algorithms

Technical Lead Interview Questions asked at other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to production deployment and tools used in the process. 2. What is auto-scaling in a microservices architecture? 3. Difference between micro-service and serverless. 4. If you were going t... read more
View answer (4)

Jobs at Bottomline

View all

I was interviewed in Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

I was MCQ + Coding round, Their were MCQ Based on DSA, Aptitude and 2 easy coding questions.

  • Q1. 

    Ninja Competition Problem Statement

    Ninja is organizing a coding competition where two teams compete at a time. To keep it fair and interesting, both teams must have an equal number of members. Ninja’s ta...

  • Ans. Brute Force

    We will iterate from 1 to ‘N’ and count the number of even divisors and odd divisors. If they are equal, we will return true, else false.

     

    Algorithm:

     

    1. Declare two variables, ‘Odd_Count’ and ‘Even_Count’, and initialize them with zero.
    2. Start iterating from 1 to ‘N’.
    3. If the current iterator ( say i ) is a divisor of ‘N’ ( N % i == 0 ):
      1. If ‘i’ is odd, increase the ‘Odd_Count’ by 1.
      2. If ‘i’ is even, increase ...
  • Answered Anonymously
  • Q2. 

    Help Bob Out! - Validating IFSC Code

    Bob has just turned 18 and opened a bank account. Being inexperienced with banking, Bob needs your help to validate whether an IFSC code provided by his bank is valid.

    ...
  • Ans. Brute Force

    To check whether the string is a valid IFSC Code or not we can check every character of the string explicitly and check whether the string is in the correct format or not.

     

    Algorithm:-

    1. If the length of the string is not equal to 11, return False.
    2. Else, iterate from the first index to the fourth index.
      1. Check whether the ASCII values of the characters lie between 65 - 90. If not, return False.
    3. If yes, check wh...
  • Answered Anonymously
Round 2 - Video Call 

Round duration - 50 Minutes
Round difficulty - Easy

The nature of the interviewer was very kind. The test was proctored, our webcam and mic were on, and shared my screen.

Round 3 - Video Call 

Round duration - 50 minutes
Round difficulty - Easy

The nature of the interviewer was very kind. The test was proctored, our webcam and mic were on, and shared my screen.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNo criteriaBottomline Technologies interview preparation:Topics to prepare for the interview - Data Structure, Algorithms, Development, Programming Languages, OOPsTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Be strong at your basics.
Tip 2 : Do at least 2 projects and ask to find answers like why are you choosing this tech stack? why did not you choose its alternatives Know your project in and out because they might ask you for a modification in your project?

Application resume tips for other job seekers

Tip 1 : Have some projects on your resume.
Tip 2 : Do not put false things on your resume.
Tip 3 : Try to keep a single-page resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Top Bottomline Software Developer Interview Questions and Answers

Q1. Ninja CompetitionOur hero Ninja is organizing a coding competition where only two teams can participate simultaneously. To make the competition interesting and fair, both the teams should have an equal number of members. As an organizer, Ni... read more
View answer (3)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Bottomline Interview FAQs

How many rounds are there in Bottomline interview?
Bottomline interview process usually has 2-3 rounds. The most common rounds in the Bottomline interview process are Technical, One-on-one Round and HR.
How to prepare for Bottomline 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 Bottomline. The most common topics and skills that interviewers at Bottomline expect are Automation, Oracle, Javascript, Production Support and Troubleshooting.
What are the top questions asked in Bottomline interview?

Some of the top questions asked at the Bottomline interview -

  1. Detailed explanation on the product roadmap and what was expected of ...read more
  2. Authentication typee, what is ...read more
  3. What is oops conce...read more
How long is the Bottomline interview process?

The duration of Bottomline interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Bottomline Interview Process

based on 20 interviews

Interview experience

3.6
  
Good
View more
Join Bottomline We make complex business payments simple, smart, and secure.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Mphasis Interview Questions
3.4
 • 805 Interviews
FIS Interview Questions
3.9
 • 479 Interviews
Fiserv Interview Questions
3.1
 • 169 Interviews
Mobileum Interview Questions
3.3
 • 36 Interviews
ACI Worldwide Interview Questions
4.3
 • 11 Interviews
View all

Bottomline Reviews and Ratings

based on 94 reviews

3.3/5

Rating in categories

3.0

Skill development

3.4

Work-life balance

3.7

Salary

3.0

Job security

3.2

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 94 Reviews and Ratings
Senior Accounting Analyst

Remote

7-10 Yrs

₹ 14-12.3 LPA

Senior Software Engineer

Kolkata,

Mumbai

+5

8-13 Yrs

Not Disclosed

Implementation Engineer

Kolkata,

Mumbai

+5

3-5 Yrs

₹ 15-19.8 LPA

Explore more jobs
Senior Software Engineer
71 salaries
unlock blur

₹15 L/yr - ₹36 L/yr

Software Engineer
55 salaries
unlock blur

₹9.7 L/yr - ₹21 L/yr

Technical Lead
22 salaries
unlock blur

₹22.3 L/yr - ₹40 L/yr

Product Owner
17 salaries
unlock blur

₹19 L/yr - ₹36.7 L/yr

Senior Quality Assurance Engineer
16 salaries
unlock blur

₹16 L/yr - ₹29 L/yr

Explore more salaries
Compare Bottomline with

Fiserv

3.0
Compare

FIS

3.9
Compare

ACI Worldwide

4.2
Compare

TCS

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