Upload Button Icon Add office photos

KFintech

Compare button icon Compare button icon Compare

Filter interviews by

KFintech HR Intern Interview Questions and Answers

Updated 9 Feb 2023

KFintech HR Intern Interview Experiences

1 interview found

HR Intern Interview Questions & Answers

user image Anonymous

posted on 9 Feb 2023

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

I applied via Campus Placement and was interviewed in Jan 2023. There were 2 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 - Telephonic Call 

(3 Questions)

  • Q1. They look at your communication style and your baisc knowledge of the domain.
  • Q2. What is your background?
  • Q3. Why HR and what do you know about it?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just research a about your domain before the interview.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - HR 

(2 Questions)

  • Q1. Why You want to work in HR?
  • Q2. Do you have any prior experience?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and give your best. Try on google learning about some interview questions.

I applied via Naukri.com and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Previous internship details
  • Q2. Paytm products
  • Q3. Practical situations

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be yourself and show your confidence. Be calm and answer every question calmly

I applied via Referral and was interviewed before Dec 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Mathematics related questions
  • Q2. Basic hr questions
  • Q3. Typing speed in numerical minimum 50 wpm

Interview Preparation Tips

Interview preparation tips for other job seekers - Very easy, normal and be comfortable

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

It was held in the evening around 4 pm. The camera was on during the test to invigilate the activity of students. On any doubtful action, warning was given. Platform was easy to code in.

  • Q1. 

    Replace 0s Problem Statement

    You are given a matrix where every element is either a 1 or a 0. The task is to replace 0 with 1 if it is surrounded by 1s. A 0 (or a set of 0s) is considered to be surrounded...

  • Ans. 

    Given a matrix of 1s and 0s, replace 0s surrounded by 1s with 1s.

    • Iterate through the matrix and check each 0 surrounded by 1s.

    • If a 0 is surrounded by 1s, replace it with 1.

    • Update the matrix in place without printing or returning it.

  • Answered by AI
  • Q2. 

    Ways To Make Coin Change

    Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...

  • Ans. 

    The task is to determine the total number of ways to make change for a specified value using given denominations.

    • Use dynamic programming to keep track of the number of ways to make change for each value up to the target value.

    • Iterate through each denomination and update the number of ways to make change for each value based on the current denomination.

    • Handle base cases such as making change for 0 or using only the smal...

  • Answered by AI
  • Q3. 

    Minimum Subset Sum Difference Problem

    Given an array of non-negative integers, your task is to partition this array into two subsets such that the absolute difference between the sums of the subsets is mi...

  • Ans. 

    Given an array, partition it into two subsets to minimize the absolute difference between their sums.

    • Use dynamic programming to calculate all possible subset sums.

    • Iterate through the subset sums to find the minimum absolute difference.

    • Consider all possible partitions of the array elements.

    • Example: For input [1, 6, 11, 5], the minimum absolute difference is 1.

    • Example: For input [1, 2, 3], the minimum absolute difference

  • Answered by AI
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

It was held in the morning around 11:30 am. The interview was scheduled on google meet. The interviewer was quite friendly. He started by a brief introduction. This round was mostly based on Data structures and algorithms. At the end he asked some concepts of OOPs and Operating System.

  • Q1. 

    String Transformation Problem

    Given a string (STR) of length N, you are tasked to create a new string through the following method:

    Select the smallest character from the first K characters of STR, remov...

  • Ans. 

    Given a string and an integer K, create a new string by selecting the smallest character from the first K characters of the input string and repeating the process until the input string is empty.

    • Iterate through the input string, selecting the smallest character from the first K characters each time.

    • Remove the selected character from the input string and append it to the new string.

    • Continue this process until the input ...

  • Answered by AI
  • Q2. 

    SpecialStack Design Problem

    Design a stack that efficiently supports the getMin() operation in O(1) time with O(1) extra space. This stack should include the following operations: push(), pop(), top(), is...

  • Ans. 

    Design a stack that supports getMin() operation in O(1) time with O(1) extra space using inbuilt stack data structure.

    • Use two stacks - one to store the actual data and another to store the minimum value at each level.

    • When pushing a new element, check if it is smaller than the current minimum and update the minimum stack accordingly.

    • When popping an element, also pop the top element from the minimum stack if it matches t...

  • Answered by AI
  • Q3. 

    Geometric Progression Subsequences Problem Statement

    Given an array of ‘N’ integers, determine the number of subsequences of length 3 that form a geometric progression with a specified common ratio ‘R’.

    ...

  • Ans. 

    Count the number of subsequences of length 3 forming a geometric progression with a specified common ratio in an array of integers.

    • Iterate through the array and for each element, check for possible subsequences of length 3 with the given common ratio.

    • Use a hashmap to store the count of possible subsequences for each element as the middle element.

    • Return the total count of subsequences modulo 10^9 + 7.

    • Example: For input ...

  • Answered by AI
  • Q4. What are the conditions for a deadlock to occur?
  • Ans. 

    Deadlock occurs when two or more processes are waiting for each other to release resources, resulting in a standstill.

    • Two or more processes must be holding resources and waiting for resources held by other processes

    • Processes cannot proceed because they are stuck in a circular wait

    • Resources cannot be forcibly released by the operating system

    • Examples: Process A holds Resource 1 and waits for Resource 2, while Process B h

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

It was held in the afternoon around 3pm. The interviewer was quite friendly. She started with my introduction. She asked 2-3 problems related to data structures and then asked about python libraries which I used in my projects.

  • Q1. 

    Group Anagrams Problem Statement

    Given an array or list of strings called inputStr, your task is to return the strings grouped as anagrams. Each group should contain strings that are anagrams of one anoth...

  • Ans. 

    Group anagrams in an array of strings based on their characters.

    • Iterate through each string in the input array/list.

    • For each string, sort the characters alphabetically to create a key for grouping.

    • Use a hashmap to group strings with the same key.

    • Return the grouped anagrams as separate arrays of strings.

  • Answered by AI
  • Q2. 

    Kth Smallest Element Problem Statement

    You are provided with an array of integers ARR of size N and an integer K. Your task is to find and return the K-th smallest value present in the array. All elements...

  • Ans. 

    Find the K-th smallest element in a given array of distinct integers.

    • Sort the array in ascending order.

    • Return the element at index K-1 from the sorted array.

    • Handle edge cases like K being out of bounds or array being empty.

  • Answered by AI
Round 4 - Face to Face 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

It was held in the evening around 6 pm. The interviewer started with a brief introduction of me. He asked about my projects and then asked some concepts of Operating System and problems related to data structures. I had projects of Machine Learning and Deep learning. Discussion about projects continued for about 25 minutes.

  • Q1. 

    Middle of a Linked List

    You are given the head node of a singly linked list. Your task is to return a pointer pointing to the middle of the linked list.

    If there is an odd number of elements, return the ...

  • Ans. 

    Return the middle element of a singly linked list, or the one farther from the head node if there are even elements.

    • Traverse the linked list with two pointers, one moving twice as fast as the other

    • When the fast pointer reaches the end, the slow pointer will be at the middle

    • Return the element pointed to by the slow pointer

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dr. B.R. Ambedkar National Institute of Technology. I applied for the job as Software Engineer in NoidaEligibility criteriaAbove 7 cgpaPaytm (One97 Communications Limited) interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, OOPS, C programming, C++ Programming, Machine Learning, Operating System, Deep learning.Time required to prepare for the interview - 10 monthsInterview preparation tips for other job seekers

Tip 1 : Practice problems related to data structures and algorithms 
Tip 2 : Brush up fundamental concepts deeply
Tip 3 : You should have a deep knowledge of your projects and related technology.

Application resume tips for other job seekers

Tip 1 : It should not be more than a page.
Tip 2 : It should be precise and university projects or prior experience like industrial training or internship should be mentioned.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Approached by Company and was interviewed before Feb 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic end user understanding

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and share your experiences in correct way

I applied via Referral and was interviewed before May 2021. There were 3 interview rounds.

Round 1 - Coding Test 

I dont remember exact questions but they are like leetcode easy and medium

Round 2 - One-on-one 

(2 Questions)

  • Q1. How web/internet works?
  • Ans. 

    The web/internet is a network of interconnected devices that communicate through standardized protocols to share information.

    • Devices connect to the internet through ISPs

    • Data is transmitted through packets using TCP/IP protocols

    • Web browsers use HTTP/HTTPS protocols to request and receive web pages

    • DNS servers translate domain names to IP addresses

    • Web servers host web pages and respond to requests

    • Search engines use web cr

  • Answered by AI
  • Q2. Coding questions with complete explanation
Round 3 - One-on-one 

(1 Question)

  • Q1. Coding and managerial round similar to round 2

Interview Preparation Tips

Interview preparation tips for other job seekers - practice coding well and some development skill. you are good to go

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. What is solid principles
  • Ans. 

    SOLID principles are a set of five design principles for writing maintainable and scalable code.

    • S - Single Responsibility Principle

    • O - Open/Closed Principle

    • L - Liskov Substitution Principle

    • I - Interface Segregation Principle

    • D - Dependency Inversion Principle

  • Answered by AI
  • Q2. What are internal working of has set
  • Ans. 

    HashSet is a collection that stores unique elements by using a hash table.

    • Elements are stored based on their hash code

    • Uses hashCode() and equals() methods to check for duplicates

    • Does not maintain insertion order

    • Allows null values

    • Example: HashSet set = new HashSet<>(); set.add("apple"); set.add("banana");

Answered by AI

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jun 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Normal coding question medium level , approach focusing rounds actually how you get up to result

Interview Preparation Tips

Interview preparation tips for other job seekers - "GfG must do" should be solved properly alteast , otherwise go keep on practicing on any platform .

I applied via Company Website and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Rate Limiter Design, Code Hash map from scratch, Integer to roman, rectangle overlap, repeating non overlapping subsequence in a given string
  • Q2. Few questions related to SQL, Merchant Onboard ing design, Restaurant design

Interview Preparation Tips

Interview preparation tips for other job seekers - Leetcode, Interviewbit PayPal questions

KFintech Interview FAQs

How many rounds are there in KFintech HR Intern interview?
KFintech interview process usually has 2 rounds. The most common rounds in the KFintech interview process are Resume Shortlist and Telephonic Call.
How to prepare for KFintech HR Intern 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 KFintech. The most common topics and skills that interviewers at KFintech expect are Human Resource Management.

Tell us how to improve this page.

KFintech HR Intern 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
 • 304 Interviews
PayPal Interview Questions
3.9
 • 210 Interviews
Fiserv Interview Questions
3.0
 • 174 Interviews
Razorpay Interview Questions
3.6
 • 153 Interviews
Visa Interview Questions
3.5
 • 139 Interviews
MasterCard Interview Questions
3.9
 • 136 Interviews
Revolut Interview Questions
2.5
 • 99 Interviews
CapitalOne Interview Questions
3.7
 • 79 Interviews
View all

KFintech HR Intern Reviews and Ratings

based on 2 reviews

4.5/5

Rating in categories

3.5

Skill development

4.0

Work-life balance

2.6

Salary

4.0

Job security

3.5

Company culture

3.5

Promotions

4.0

Work satisfaction

Explore 2 Reviews and Ratings
Senior Associate
1.4k salaries
unlock blur

₹1 L/yr - ₹4.5 L/yr

Executive
720 salaries
unlock blur

₹2 L/yr - ₹5.7 L/yr

Process Associate
639 salaries
unlock blur

₹1 L/yr - ₹4.3 L/yr

Assistant Manager
613 salaries
unlock blur

₹2.5 L/yr - ₹7.5 L/yr

Associate
573 salaries
unlock blur

₹1 L/yr - ₹4.3 L/yr

Explore more salaries
Compare KFintech with

Paytm

3.3
Compare

Fiserv

3.0
Compare

PhonePe

4.0
Compare

Broadridge Financial Solutions

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