Upload Button Icon Add office photos

Filter interviews by

Verifone Software Developer Interview Questions and Answers

Updated 14 May 2024

Verifone Software Developer Interview Experiences

3 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Time ,speed ,distance

Round 2 - Assignment 

Java application using oops concept

Round 3 - Technical 

(1 Question)

  • Q1. Inheritance , oops
Round 4 - HR 

(1 Question)

  • Q1. Tell me about urself
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 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 - Technical 

(2 Questions)

  • Q1. Basic of spring boot, Database, annotations, core Java, and some basic DSA problems
  • Q2. Study basics of spring boot, spring hibernate, database - relational and others. And problems basic string and array questions
Round 3 - HR 

(2 Questions)

  • Q1. Description about yourself
  • Q2. Told about my self and some technical questions

Interview Preparation Tips

Topics to prepare for Verifone Software Developer interview:
  • Spring Boot
  • spring hibernate
  • Oracle DBA
  • MongoDB
  • annotations
  • Kafka

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Sep 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Mapping question
Round 3 - One-on-one 

(1 Question)

  • Q1. Project related
Round 4 - HR 

(1 Question)

  • Q1. Fit check for team

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Jan 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Basic oops, .net, c# coding, sql questions
Round 2 - Technical 

(1 Question)

  • Q1. More coding and details on project
Round 3 - Technical 

(1 Question)

  • Q1. More on projects and system design and troubleshooting approach
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion
Round 5 - Technical 

(1 Question)

  • Q1. More technical + managerial round even after HR round
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Maths and communication based questions

Round 2 - Coding Test 

Estimate and SQL and coding was there

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Array basics, java basics oops and all
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Sep 2023. 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 

Java 8, Mysql, sprin, c, c++

Round 3 - Technical 

(1 Question)

  • Q1. Questions based on core java and oops concepts

Interview Preparation Tips

Topics to prepare for Crif Solutions Software Developer interview:
  • Core Java
  • java 8

I applied via Campus Placement

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

There is some aptitude questions along with some subject question(C++,DBMS,OS). And also there is one easy/medium coding question

Round 3 - Technical 

(1 Question)

  • Q1. Interview involves subjects(OS,DBMS,CN,OOPs) , project related questions, and also easy questions from DSA.
Round 4 - HR 

(1 Question)

  • Q1. It was an easy round HR asked me about intoduction,will you be able to relocate,.... Overall it is an easy round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA concepts like array, string, maps, linked list .
Mainly focus on subjects for interview.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jul 2022. There were 2 interview rounds.

Round 1 - Coding Test 

It had 4 questions of moderate difficulty

Round 2 - Technical 

(3 Questions)

  • Q1. He went deep into my resume and asked questions from each line of it
  • Q2. Then he asked me that why you have only passed 10/14 test cases in 4th question
  • Q3. I said it was from dp and I had not studied dp properly

Interview Preparation Tips

Topics to prepare for Visa Software Developer interview:
  • Data Structures
  • Web Development
Interview preparation tips for other job seekers - Be strong on your DSA skills or development skills , be strong in either of one

I was interviewed before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Hard

It was on hackerearth platform and duration was 60 mins.

  • Q1. 

    Maximum Path Sum in a Matrix

    Given an N*M matrix filled with integer numbers, determine the maximum sum that can be obtained from a path starting from any cell in the first row to any cell in the last row...

  • Ans. 

    We are given a matrix of N * M. To find max path sum first we have to find max value in first row of matrix. Store this value in res. Now for every element in matrix update element with max value which can be included in max path. If the value is greater then res then update res. In last return res which consists of max path sum value.

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

Only problem solving was asked simple DSA based questions

  • Q1. 

    Valid Parentheses Problem Statement

    Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

    Input:

    The first line contains an...
  • Ans. 

    Declare a character stack S.
    Now traverse the expression string exp. 
    If the current character is a starting bracket (‘(‘ or ‘{‘ or ‘[‘) then push it to stack.
    If the current character is a closing bracket (‘)’ or ‘}’ or ‘]’) then pop from stack and if the popped character is the matching starting bracket then fine else brackets are not balanced.
    After complete traversal, if there is some starting bracket left in stac

  • Answered Anonymously
Round 3 - Video Call 

(1 Question)

Round duration - 60 mins
Round difficulty - Easy

Problem solving and DSA

  • Q1. 

    Find All Pairs Adding Up to Target

    Given an array of integers ARR of length N and an integer Target, your task is to return all pairs of elements such that they add up to the Target.

    Input:

    The first line ...
  • Ans. 

    This problem can be solved efficiently by using the technique of hashing. Use a hash_map to check for the current array value x(let), if there exists a value target_sum-x which on adding to the former gives target_sum. This can be done in constant time.

  • Answered Anonymously
Round 4 - Video Call 

Round duration - 30 minutes
Round difficulty - Easy

This was hiring manager round and it was mostly behavioural round

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaAbove 7 CGPAPaypal interview preparation:Topics to prepare for the interview - DSA, HLD, LLD, DBMS, COMPUTER NETWORKS, OSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : DSA/Problem Solving is a must
Tip 2 : Be comfortable with atleast one language with the proper syntax
Tip 3 : Give mock interviews for practice

Application resume tips for other job seekers

Tip 1 : Mention your achievements like Google Kickstart or ratings in different coding platforms
Tip 2 : Mention good projects

Final outcome of the interviewSelected

Skills evaluated in this interview

Verifone Interview FAQs

How many rounds are there in Verifone Software Developer interview?
Verifone interview process usually has 3-4 rounds. The most common rounds in the Verifone interview process are HR, Resume Shortlist and Technical.
How to prepare for Verifone Software Developer 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 Verifone. The most common topics and skills that interviewers at Verifone expect are HTML, Agile, Angularjs, C and C++.
What are the top questions asked in Verifone Software Developer interview?

Some of the top questions asked at the Verifone Software Developer interview -

  1. study basics of spring boot, spring hibernate, database - relational and others...read more
  2. Basic of spring boot, Database, annotations, core Java, and some basic DSA prob...read more
  3. Mapping quest...read more

Tell us how to improve this page.

Verifone Software Developer Interview Process

based on 3 interviews

Interview experience

3.7
  
Good
View more
Verifone Software Developer Salary
based on 56 salaries
₹5.7 L/yr - ₹16 L/yr
20% more than the average Software Developer Salary in India
View more details

Verifone Software Developer Reviews and Ratings

based on 8 reviews

4.1/5

Rating in categories

4.0

Skill development

4.1

Work-life balance

3.9

Salary

3.3

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 8 Reviews and Ratings
Software Development Engineer
141 salaries
unlock blur

₹6.3 L/yr - ₹17.7 L/yr

Software Engineer
107 salaries
unlock blur

₹5.2 L/yr - ₹13.7 L/yr

Senior Software Engineer
76 salaries
unlock blur

₹8.5 L/yr - ₹24 L/yr

Software Developer
56 salaries
unlock blur

₹5.7 L/yr - ₹16 L/yr

Software Development Engineer II
52 salaries
unlock blur

₹8.4 L/yr - ₹15.6 L/yr

Explore more salaries
Compare Verifone with

NCR Corporation

3.5
Compare

Diebold Nixdorf

3.8
Compare

Fiserv

3.0
Compare

Worldline

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