Upload Button Icon Add office photos
Engaged Employer

i

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

Faircent.com Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Faircent.com Deputy Collection Manager Interview Questions and Answers

Updated 15 Feb 2022

Faircent.com Deputy Collection Manager Interview Experiences

1 interview found

Interview Preparation Tips

Interview preparation tips for other job seekers - This the company to grow & also to get real corporate habit / life style

Interview questions from similar companies

I appeared for an interview before Jun 2016.

Interview Questionnaire 

2 Questions

  • Q1.  Given k and DFS traversal string for a k-ary tree, construct the tree. The String contains P (if a parent) and L (if a leaf). E.g. - k=3, str="PPLLLLL" 2. All the strings are arranged in the following ord...
  • Ans. 

    The question asks to construct a k-ary tree using the given k and DFS traversal string.

    • Iterate through the DFS traversal string

    • If the current character is 'P', create a parent node

    • If the current character is 'L', create a leaf node

    • Link the nodes according to the DFS traversal order

  • Answered by AI
  • Q2. "How would you tell whether a graph has a node with n degree?"
  • Ans. 

    To determine if a graph has a node with n degree, iterate through all nodes and count their edges.

    • Iterate through each node in the graph

    • Count the number of edges connected to each node

    • If any node has n edges, then the graph has a node with n degree

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Questions on C++(Virtual fns, inheritance). Two on probability, 12 on Algorithms
Duration: 45 minutes

Round: Technical + HR Interview
Experience: He asked some more puzzles and some probability (expectation) questions. Then, he modified one question asked in the written test and asked me write code for it on paper.
Tips: First of all, prepare all the questions asked in the test before going for the interviews.


Skills evaluated in this interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear C++ concepts and also machine learning concepts.

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Oct 2022. There were 2 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

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

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

Interview Preparation Tips

Interview preparation tips for other job seekers - Great organization, No work pressure, Good incentive
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I appeared for an interview in Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was the qualification round which comprised of several MCQs and 3 coding questions.
It was held on Hackerearth from 3:00 PM to 4:00 PM.
Use of any other IDE was prohibited.

  • Q1. Given a problem statement and a piece of code, how would you find and correct the bug in the code?
  • Ans. 

    To find and correct a bug in code, analyze problem statement, review code, use debugging tools, and test different scenarios.

    • Understand the problem statement and expected output.

    • Review the code for syntax errors, logical errors, and potential bugs.

    • Use debugging tools like breakpoints, print statements, and IDE debuggers.

    • Test the code with different inputs to identify the bug.

    • Make necessary corrections based on the iden...

  • Answered by AI
  • Q2. 

    Print Nodes at Distance K from a Given Node

    Given an arbitrary binary tree, a node of the tree, and an integer 'K', find all nodes that are at a distance K from the specified node, and return a list of th...

  • Ans. 

    Given a binary tree, a target node, and an integer K, find all nodes at distance K from the target node.

    • Traverse the binary tree to find the target node.

    • Use BFS to traverse the tree from the target node to nodes at distance K.

    • Keep track of the distance while traversing the tree.

    • Return the values of nodes at distance K in any order.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

I was shared a link of Google Meet and the Google Docs was shared where there was 1 coding problem to be coded there and then the code was run on an IDE to check the sample tests.
Then the interview was followed by a lot of Operating System and Computer System Architecture Questions.
There were 2 Interviewers and both were helpful.
The timing was from 2:30 PM to 4:00 PM

  • Q1. 

    Subarray Challenge: Largest Equal 0s and 1s

    Determine the length of the largest subarray within a given array of 0s and 1s, such that the subarray contains an equal number of 0s and 1s.

    Input:

    Input beg...

  • Ans. 

    Find the length of the largest subarray with equal number of 0s and 1s in a given array.

    • Iterate through the array and maintain a count of 0s and 1s encountered so far.

    • Store the count difference in a hashmap with the index as the key.

    • If the same count difference is encountered again, the subarray between the two indices has equal 0s and 1s.

    • Return the length of the longest subarray found.

  • Answered by AI
Round 3 - HR 

Round duration - 45 minutes
Round difficulty - Easy

The round was held on Google Meet with HR from 2:30 PM to 3:15 PM.
The HR was friendly and asked the basic questions.

Interview Preparation Tips

Eligibility criteriaNeeded Work Experience in a leading Tech CompanyTower Research Capital interview preparation:Topics to prepare for the interview - Dynamic Programming, Data Structures - Sets, HashMap, Priority Queue, SQL, OOPS, Operating System, AlgorithmsTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Practice daily 4-5 medium level problems on sites like Leetcode, CodeZen, Hackerearth
Tip 2 : Even though Data Structures and Algorithms is the base but study Course Subjects like DBMS,OS,OOPS too.
Tip 3 : Try to Participate in Contests on LeetCode,Codeforces.

Application resume tips for other job seekers

Tip 1 : Mention the projects you worked on in your past work experience and how it helped your company.
Tip 2 : Keep your resume up to date in accordance with the role you are applying for
Tip 3 : Don't put false things on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Feb 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

Consisted of 3 DSA questions and MCQ on python proficiency

  • Q1. 

    Palindromic Substrings Problem Statement

    Given a string S, your task is to return all distinct palindromic substrings of the given string in alphabetical order.

    Explanation:

    A string is considered a pal...

  • Ans. 

    Return all distinct palindromic substrings of a given string in alphabetical order.

    • Iterate through all possible substrings of the given string.

    • Check if each substring is a palindrome by comparing it with its reverse.

    • Store all palindromic substrings in a set to ensure uniqueness.

    • Return the sorted list of palindromic substrings.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

It was a pure DSA round and interviewer was very helpful with providing significant hints to solve the given problems

  • Q1. 

    Island Perimeter Calculation Problem

    Given a binary grid representation of a map of an island, calculate the perimeter of the island. The grid uses '0' for water and '1' for land.

    The grid has only one i...

  • Ans. 

    Calculate the perimeter of an island represented by a binary grid.

    • Iterate through the grid and count the perimeter based on land cells and their adjacent cells.

    • Each land cell contributes 4 units to the perimeter, subtract 2 units for each adjacent land cell.

    • Handle edge cases where land cells are at the boundaries of the grid.

    • Return the total perimeter for each test case.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Hard

DSA+OS

  • Q1. 

    Clearing the Forest Problem Statement

    Ninja lives in a city called Byteland where a festive event is being organized. To make space for this event, Ninja is tasked with clearing a nearby forest. The fores...

  • Ans. 

    Calculate the minimum number of steps Ninja needs to cut down all trees in a forest grid.

    • Iterate through the grid to find the shortest path to cut down all trees in order.

    • Use a priority queue to keep track of the shortest trees to cut next.

    • If it's impossible to cut all trees, return -1.

    • Consider all four cardinal directions for movement in the grid.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaPython ProficiencyTower Research Capital interview preparation:Topics to prepare for the interview - Data Structures, Algorithms , OOPS , DBMS , OSTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 250 questions
Tip 2 : Do at least two projects
 

Application resume tips for other job seekers

Tip 1 : Should be covered in One page
Tip 2 : Project description should be professional

Final outcome of the interviewSelected

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Faircent.com Interview FAQs

How many rounds are there in Faircent.com Deputy Collection Manager interview?
Faircent.com interview process usually has 2 rounds. The most common rounds in the Faircent.com interview process are Resume Shortlist and HR.

Recently Viewed

INTERVIEWS

Asite Solutions

No Interviews

INTERVIEWS

Asite Solutions

No Interviews

INTERVIEWS

HCLTech

No Interviews

INTERVIEWS

Deloitte

200 top interview questions

SALARIES

Payswiff Solutions

INTERVIEWS

Faircent.com

No Interviews

INTERVIEWS

DuPont

No Interviews

INTERVIEWS

Tech Mahindra

No Interviews

DESIGNATION

INTERVIEWS

ArisGlobal

No Interviews

Tell us how to improve this page.

Interview Questions from Similar Companies

LendingKart Interview Questions
3.2
 • 29 Interviews
Epimoney Interview Questions
3.4
 • 11 Interviews
Wise Finserv Interview Questions
3.0
 • 10 Interviews
View all
Deputy Manager
28 salaries
unlock blur

₹4 L/yr - ₹6.6 L/yr

Senior Executive
23 salaries
unlock blur

₹3.3 L/yr - ₹4.3 L/yr

Portfolio Manager
16 salaries
unlock blur

₹2.7 L/yr - ₹5 L/yr

Software Developer
15 salaries
unlock blur

₹3.4 L/yr - ₹9 L/yr

Manager
11 salaries
unlock blur

₹3.8 L/yr - ₹7.8 L/yr

Explore more salaries
Compare Faircent.com with

LendingKart

3.2
Compare

Axio

3.7
Compare

Rubique

2.4
Compare

NeoGrowth Credit

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