Upload Button Icon Add office photos

Fiserv

Compare button icon Compare button icon Compare

Filter interviews by

Fiserv Tapp Trainee Interview Questions and Answers

Updated 23 Sep 2024

Fiserv Tapp Trainee Interview Experiences

1 interview found

Tapp Trainee Interview Questions & Answers

user image Sonal Shilimkar

posted on 23 Sep 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

It was online test on hackerrank platform there were 2-3 programming questions and you have to clear all of the test cases

Round 2 - Technical 

(2 Questions)

  • Q1. Oops related questions,
  • Q2. Write DB queries for given condition
  • Ans. 

    Write DB queries for given condition

    • Use SELECT statement to retrieve data from database

    • Use WHERE clause to specify the condition for filtering data

    • Use JOIN clause if data needs to be retrieved from multiple tables

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

System Engineer Interview Questions & Answers

Visa user image Abhishek Awasthi

posted on 18 Sep 2015

Interview Questionnaire 

2 Questions

  • Q1. Questions based on resume (e.g. skills and projects)
  • Q2. Personal Interview

Interview Preparation Tips

Round: Test
Experience: Coding problems carry more weightage, but considering the number of MCQs they were equally important. I had solved both the coding problems correctly and attempted MCQs efficiently.
Tips: Don't get attached to a particular question. We need to create our own strategy to get maximum possible marks with in given time constraint.
Duration: 75 minutes
Total Questions: 42

Round: Technical Interview
Experience: This was a kind of rapid round to find out reliability of my resume. Questions were based on skills and projects I had mentioned in the resume
Tips: Mention only those skills/projects on which you have command otherwise your resume may become your enemy rather than friend.

Round: Technical Interview
Experience: This round was all about to test my capabilities of thinking out of the box. Questions were based on scalability, to write code on paper for the given problem, some basic questions on networking.
Tips: While dealing with scalability based questions, never give up, try your best. The interviewer doesn't expect the exact answer because some of them are real world problems (most of the freshers don't have much idea about such problems), but you need to prove that you can think out of the box.

Round: Other Interview
Experience: This was the final round to assign the suitable profile based on the technical interviews.
Tips: Be confident and honest.

General Tips: Be confident and never give up during the interview.
Skills: Coding skills, C, C++, JAVA, Basics of Networking, Algorithms, Ability to think out of the box, Basics of OS
College Name: IIT Bombay
Motivation: A big brand which is close to heart of people who rely on online transactions in daily life.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Create immutable Arraylist.

Round 2 - Technical 

(1 Question)

  • Q1. Questions on core java like creating immutable class and collections.
Round 3 - HR 

(1 Question)

  • Q1. Why are you looking for a change.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Level 2 IT support Engineer questions
  • Q2. Brief explanation about L2 level of work
  • Ans. 

    L2 level of work involves intermediate level tasks and responsibilities in a specific field or domain.

    • L2 work requires a deeper understanding and expertise compared to L1 work.

    • It involves troubleshooting and resolving complex issues.

    • L2 engineers often provide support and guidance to L1 engineers.

    • They may be responsible for implementing and maintaining systems or processes.

    • L2 work requires strong problem-solving and ana...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. L2 practical questions
  • Q2. Brief explanation about experience

Interview Preparation Tips

Interview preparation tips for other job seekers - It's good company starts your career
Round 1 - Technical 

(2 Questions)

  • Q1. Basic technical question
  • Q2. Basic Server and basic security related question.

Interview Preparation Tips

Interview preparation tips for other job seekers - try to clear your base. they will check your base foundation.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Aug 2022. There were 3 interview rounds.

Round 1 - Assignment 

Contains aptitude and reasoning and verbal

Round 2 - Group Discussion 

Have to discuss about a topic provided by them

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical that you have learnt

I applied via Company Website and was interviewed before Jan 2021. 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. Pl sql Unix api configuration
  • Q2. Routing how to use proxy
  • Ans. 

    Routing through a proxy involves configuring the proxy server to forward requests to the destination server.

    • Configure the proxy server to listen for incoming requests

    • Configure the proxy server to forward requests to the destination server

    • Configure the client to use the proxy server for outgoing requests

    • Use a proxy server to bypass network restrictions or improve performance

    • Examples: Nginx, Apache, Squid

  • Answered by AI
Round 3 - One-on-one 

Interview Preparation Tips

Interview preparation tips for other job seekers - Avoid this company. You can be fired any day without notice.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Hacker rank long coding questions with questions for python,c++,javascript , data bast related questions

Round 2 - Technical 

(1 Question)

  • Q1. Javascript related some coding questions and some data base related

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well.good luck for your journey, prepare coding

I appeared for an interview before Jan 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

I couldn't find an optimal approach to the first question, so she skipped that question and proceeded to next questions. Remaining questions I have answered satisfactorily.

  • Q1. 

    Subset Sum Equal To K Problem Statement

    Given an array/list of positive integers and an integer K, determine if there exists a subset whose sum equals K.

    Provide true if such a subset exists, otherwise r...

  • Ans. 

    Given an array of positive integers and an integer K, determine if there exists a subset whose sum equals K.

    • Use dynamic programming to solve this problem efficiently

    • Create a 2D array to store if a subset with a particular sum exists

    • Iterate through the array and update the 2D array accordingly

    • Check if the value at the end of the iteration is true for the given K

  • Answered by AI
  • Q2. 

    BFS Traversal in a Graph

    Given an undirected and disconnected graph G(V, E) where V vertices are numbered from 0 to V-1, and E represents edges, your task is to output the BFS traversal starting from the ...

  • Ans. 

    BFS traversal in a disconnected graph starting from vertex 0.

    • Implement BFS algorithm to traverse the graph starting from vertex 0.

    • Use a queue to keep track of visited nodes and their neighbors.

    • Ensure to print the traversal sequence in the correct order.

    • Handle disconnected components by checking for unvisited nodes.

    • Follow the BFS approach of exploring neighbors before moving to the next level.

  • Answered by AI
Round 2 - HR 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

I told that my strength is problem solving and I can always find a way when there is a bottle-neck. Gave some examples of my experiences while doing my assignments.

  • Q1. 

    Replace Spaces in a String

    Given a string STR consisting of words separated by spaces, your task is to replace all spaces between words with the characters "@40".

    Input:

    The first line contains an integ...
  • Ans. 

    Replace spaces in a string with '@40'.

    • Iterate through each character in the string

    • Replace spaces with '@40'

    • Return the modified string

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPaypal interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before Jan 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview Round with questions based on Data structures, OOPS and SQL.

  • Q1. 

    Delete a Node from a Linked List

    You are provided with a linked list of integers. Your task is to implement a function that deletes a node located at a specified position 'POS'.

    Input:

    The first line co...
  • Ans. 

    Implement a function to delete a node from a linked list at a specified position.

    • Traverse the linked list to find the node at the specified position.

    • Update the pointers of the previous and next nodes to skip the node to be deleted.

    • Handle edge cases such as deleting the head or tail of the linked list.

    • Ensure to free the memory of the deleted node to avoid memory leaks.

  • Answered by AI
  • Q2. Write an SQL query to find the nth highest salary.
  • Ans. 

    SQL query to find the nth highest salary

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

    • Use the LIMIT and OFFSET clauses to skip the first n-1 highest salaries

    • Combine the above steps in a single query to find the nth highest salary

  • Answered by AI
  • Q3. Can you explain the concepts of Object-Oriented Programming (OOP)?
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOP focuses on creating objects that interact with each other to solve problems.

    • Key concepts include encapsulation, inheritance, and polymorphism.

    • Encapsulation involves bundling data and methods that operate on the data into a single unit.

    • Inheritance allows classes to inherit at...

  • Answered by AI
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Was asked me about my favorite technologies, What i liked about Facebook. And asked me to design a cinema ticket reservation web site­ like the one satyam has.

  • Q1. 

    Kth Largest Element Problem

    Given an array containing N distinct positive integers and a number K, determine the Kth largest element in the array.

    Example:

    Input:
    N = 6, K = 3, array = [2, 1, 5, 6, 3, ...
  • Ans. 

    Find the Kth largest element in an array of distinct positive integers.

    • Sort the array in non-increasing order and return the Kth element.

    • Handle multiple test cases efficiently.

    • Ensure all elements in the array are distinct.

  • Answered by AI
  • Q2. What are virtual functions?
  • Ans. 

    Virtual functions are functions in a base class that are overridden in derived classes to achieve runtime polymorphism.

    • Virtual functions are declared in a base class with the 'virtual' keyword.

    • They are overridden in derived classes using the 'override' keyword.

    • They allow a function to be called based on the runtime type of an object.

    • Virtual functions enable dynamic binding and late binding in C++.

    • Example: virtual void ...

  • Answered by AI
  • Q3. Design a Cinema Ticket Reservation System.
  • Ans. 

    Design a Cinema Ticket Reservation System

    • Use a database to store movie information, showtimes, and seat availability

    • Allow users to search for movies, select showtimes, and choose seats

    • Implement a payment system for ticket purchases

    • Send confirmation emails with QR codes for ticket validation

  • Answered by AI
  • Q4. In how many attempts can you find a defective ball among 10 given balls using a two-pan balance scale?
  • Ans. 

    You can find a defective ball among 10 given balls in 2 attempts using a two-pan balance scale.

    • Divide the 10 balls into two groups of 5 each.

    • Weigh the two groups on the balance scale.

    • If one group is heavier, it contains the defective ball. If they are equal, the defective ball is in the remaining 5 balls.

    • Divide the group of 5 balls with the defective one into two groups of 2 and 3 balls.

    • Weigh the two groups on the bala...

  • Answered by AI
Round 3 - HR 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

HR round that lasted for about 30 minutes. The interviewer asked me questions to know more about me and a puzzle.

  • Q1. Can you tell me about your projects and your extracurricular activities?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPaypal interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Fiserv Interview FAQs

How many rounds are there in Fiserv Tapp Trainee interview?
Fiserv interview process usually has 2 rounds. The most common rounds in the Fiserv interview process are Coding Test and Technical.
What are the top questions asked in Fiserv Tapp Trainee interview?

Some of the top questions asked at the Fiserv Tapp Trainee interview -

  1. Write DB queries for given condit...read more
  2. Oops related questio...read more

Tell us how to improve this page.

Fiserv Tapp Trainee Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 757 Interviews
PhonePe Interview Questions
4.0
 • 303 Interviews
PayPal Interview Questions
3.9
 • 210 Interviews
HighRadius Interview Questions
2.9
 • 184 Interviews
Razorpay Interview Questions
3.6
 • 153 Interviews
Visa Interview Questions
3.5
 • 139 Interviews
KFintech Interview Questions
3.5
 • 138 Interviews
MasterCard Interview Questions
3.9
 • 136 Interviews
Revolut Interview Questions
2.5
 • 99 Interviews
View all

Fiserv Tapp Trainee Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

1.0

Skill development

3.0

Work-life balance

2.0

Salary

1.0

Job security

1.0

Company culture

2.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Technical Lead
1.4k salaries
unlock blur

₹13 L/yr - ₹38 L/yr

Senior Associate
529 salaries
unlock blur

₹3.5 L/yr - ₹15.3 L/yr

Specialist
485 salaries
unlock blur

₹9 L/yr - ₹28.5 L/yr

Senior Software Engineer
436 salaries
unlock blur

₹7.8 L/yr - ₹30.5 L/yr

Professional
370 salaries
unlock blur

₹5.5 L/yr - ₹19.4 L/yr

Explore more salaries
Compare Fiserv with

Global Payments

4.0
Compare

Paytm

3.3
Compare

PhonePe

4.0
Compare

KFintech

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