Upload Button Icon Add office photos

Filter interviews by

Arthmate Interview Questions and Answers

Updated 14 Nov 2024

Arthmate Interview Experiences

Popular Designations

8 interviews found

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

(2 Questions)

  • Q1. Nbfc and Fintech knowledge
  • Q2. Foir Credit rating cibil and other financial related keywords knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Regional Sales Manager Interview Questions asked at other Companies

Q1. If there are 1500 shops that need to be visited twice a month, how many executives you need?
View answer (14)

Interview Questions & Answers

user image Anonymous

posted on 14 Nov 2024

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Everything About yourself and what have you done in the past ?
  • Q2. Specific questions related to your last organisation.
Round 2 - One-on-one 

(2 Questions)

  • Q1. Most difficult & complex problem you have solved at work till now ?
  • Q2. What value will you bring here ?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Product question
  • Q2. About the product
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic lending industry questions

Senior Manager Interview Questions asked at other Companies

Q1. 1. What you understand the requirement of shuttering material at project site?
View answer (19)

Arthmate interview questions for popular designations

 Credit Manager

 (1)

 Credit Officer

 (1)

 Senior Credit Associate

 (1)

 Software Development Engineer 3

 (1)

 Regional Sales Manager

 (1)

 Software Developer Intern

 (1)

 Senior Manager

 (1)

Credit Officer Interview Questions & Answers

user image Sarvesh Kumar

posted on 4 Aug 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How to check banking
  • Ans. 

    Checking banking involves verifying financial transactions, account balances, and ensuring compliance with regulations.

    • Verify financial transactions for accuracy

    • Check account balances to ensure sufficient funds

    • Ensure compliance with banking regulations and policies

    • Review customer information for accuracy and completeness

  • Answered by AI
  • Q2. What is dpd in cibil
  • Ans. 

    DPD in CIBIL stands for Days Past Due, which indicates the number of days a borrower has delayed in making a payment.

    • DPD is a crucial factor in determining a borrower's creditworthiness.

    • It ranges from 0 to 180+ days, with higher DPD indicating a higher risk borrower.

    • Lenders use DPD information from CIBIL to assess the credit risk of potential borrowers.

    • For example, a DPD of 30 days means the borrower has delayed paymen

  • Answered by AI
Round 2 - Group Discussion 

Credit related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared for interview

Credit Officer Interview Questions asked at other Companies

Q1. How can you are calculate income if customer not filing the income tax return in business class
View answer (7)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Javascript questions
Round 2 - Technical 

(1 Question)

  • Q1. Project experience

Software Development Engineer 3 Interview Questions asked at other Companies

Q1. What are triggers , where can they be used ? What is a mutating trigger problem , how can it be solved?
View answer (1)

Jobs at Arthmate

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

(1 Question)

  • Q1. Bubble sort , arrays vs linked lists etc

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 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 - One-on-one 

(2 Questions)

  • Q1. Introduction about yourself and past experience
  • Q2. General interview. No hard questions
Round 3 - HR 

(1 Question)

  • Q1. Asked About salary expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Good pay. Good work life balance if you are in the right team.

Credit Manager Interview Questions asked at other Companies

Q1. If a client comes to take a loan & he haven't got any type of documents with him (primary or secondary), how will you deal with him? & Tell me first 5 things comes to your mind.
View answer (21)

Interview questions from similar companies

I was interviewed before Jan 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This was a typical DS/Algo where I was asked to solve two questions related to Binary Trees and write the pseudo code for both of them followed by some theoretical questions related to Operating Systems.

  • Q1. 

    K-th Largest Number in a BST

    Given a binary search tree (BST) consisting of integers and containing 'N' nodes, your task is to find and return the K-th largest element in this BST.

    If there is no K-th la...

  • Ans. 

    Find the K-th largest element in a BST.

    • Perform reverse in-order traversal of the BST to find the K-th largest element.

    • Keep track of the count of visited nodes to determine the K-th largest element.

    • Return -1 if there is no K-th largest element in the BST.

  • Answered by AI
  • Q2. 

    Is Height Balanced Binary Tree Problem Statement

    Determine if the given binary tree is height-balanced. A tree is considered height-balanced when:

    1. The left subtree is balanced.
    2. The right subtree is bala...
  • Ans. 

    Determine if a given binary tree is height-balanced by checking if left and right subtrees are balanced and their height difference is at most 1.

    • Check if the left subtree is balanced

    • Check if the right subtree is balanced

    • Calculate the height difference between the left and right subtrees

    • Return 'True' if all conditions are met, otherwise return 'False'

  • Answered by AI
  • Q3. Can you explain the concepts of Zombie Process and Orphan Process in operating systems?
  • Ans. 

    Zombie process is a terminated process that has completed execution but still has an entry in the process table. Orphan process is a process whose parent process has terminated.

    • Zombie process is created when a child process completes execution but its parent process has not yet read its exit status.

    • Zombie processes consume system resources and should be cleaned up by the parent process using wait() system call.

    • Orphan p...

  • Answered by AI
Round 2 - Face to Face 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This was also a Data Structures and Algorithm round where I was asked to solve 3 medium to hard level problems along with their pseudo code within 60 minutes .

  • Q1. 

    Longest Substring Without Repeating Characters Problem Statement

    Given a string S of length L, determine the length of the longest substring that contains no repeating characters.

    Example:

    Input:
    "abac...
  • Ans. 

    Find the length of the longest substring without repeating characters in a given string.

    • Use a sliding window approach to keep track of the longest substring without repeating characters.

    • Use a hashmap to store the index of each character in the string.

    • Update the start index of the window when a repeating character is found.

    • Calculate the maximum length of the window as you iterate through the string.

    • Return the maximum le

  • Answered by AI
  • Q2. 

    Problem: Search In Rotated Sorted Array

    Given a sorted array that has been rotated clockwise by an unknown amount, you need to answer Q queries. Each query is represented by an integer Q[i], and you must ...

  • Ans. 

    Search for integers in a rotated sorted array efficiently.

    • Use binary search to efficiently search for integers in the rotated sorted array.

    • Handle the rotation of the array while performing binary search.

    • Return the index of the integer if found, else return -1.

  • Answered by AI
  • Q3. 

    Count Subarrays with Sum Divisible by K

    Given an array ARR and an integer K, your task is to count all subarrays whose sum is divisible by the given integer K.

    Input:

    The first line of input contains an...
  • Ans. 

    Count subarrays with sum divisible by K in an array.

    • Iterate through the array and keep track of the prefix sum modulo K.

    • Use a hashmap to store the frequency of each prefix sum modulo K.

    • For each prefix sum, increment the count by the frequency of (prefix sum - K) modulo K.

    • Handle the case when prefix sum itself is divisible by K.

    • Return the total count of subarrays with sum divisible by K.

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

In this round , I was asked to code a simple question related to BST . After that I was asked the internal implementation of a Hash Map where I was supposed to design a Hash Map using any of the Hashing Algorithms that I know . This was preety challenging for me but I got to learn so much from it.

  • Q1. 

    Ceil Value from BST Problem Statement

    Given a Binary Search Tree (BST) and an integer, write a function to return the ceil value of a particular key in the BST.

    The ceil of an integer is defined as the s...

  • Ans. 

    Ceil value of a key in a Binary Search Tree (BST) is found by returning the smallest integer greater than or equal to the given number.

    • Traverse the BST to find the closest value greater than or equal to the key.

    • Compare the key with the current node value and update the ceil value accordingly.

    • Recursively move to the left or right subtree based on the comparison.

    • Return the ceil value once the traversal is complete.

  • Answered by AI
  • Q2. 

    Design a Constant Time Data Structure

    Create a data structure that maintains mappings between keys and values, supporting the following operations in constant time:

    1. INSERT(key, value): Add or update t...
  • Ans. 

    Design a constant time data structure to maintain mappings between keys and values with various operations.

    • Use a hash table to achieve constant time complexity for INSERT, DELETE, SEARCH, and GET operations.

    • Keep track of the number of key-value pairs for GET_SIZE operation.

    • Check if the hash table is empty for IS_EMPTY operation.

    • Return true or false for SEARCH operation based on key existence.

    • Return the value associated...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAFlipkart interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 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 was interviewed before Jan 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 Minutes
Round difficulty - Hard

I found the online coding round of Flipkart to be quite difficult based on the constraints of the problem and their time limits. I coded the first problem quite easily but on the second and the third problem , my code could only pass a few test cases and gave TLE for most of them. Both the questions required very efficient solution and the last 5 to 10 Test Cases carried more weight than the rest so I didn't get through this round.

  • Q1. 

    Print the Kth Digit

    Given three non-negative integers N, M, and K, compute the Kth digit from the right in the number obtained from N raised to the power M (i.e., N ^ M).

    Input:

    The first line contains ...
  • Ans. 

    The task is to find the Kth digit from the right in the number obtained from N raised to the power M.

    • Iterate through the digits of N^M from right to left

    • Keep track of the position of the current digit

    • Return the digit at position K from the right

  • Answered by AI
  • Q2. 

    The Skyline Problem

    Compute the skyline of given rectangular buildings in a 2D city, eliminating hidden lines and forming the outer contour of the silhouette when viewed from a distance. Each building is ...

  • Ans. 

    Compute the skyline of given rectangular buildings in a 2D city, eliminating hidden lines and forming the outer contour of the silhouette.

    • Iterate through the buildings and create a list of critical points (x, y) where the height changes.

    • Sort the critical points based on x-coordinate and process them to form the skyline.

    • Merge consecutive horizontal segments of equal height into one to ensure no duplicates.

    • Return the fin...

  • Answered by AI
  • Q3. 

    Longest Palindromic Substring Problem Statement

    You are provided with a string STR of length N. The goal is to identify the longest palindromic substring within this string. In cases where multiple palind...

  • Ans. 

    Identify the longest palindromic substring in a given string.

    • Iterate through the string and expand around each character to find palindromes

    • Keep track of the longest palindrome found

    • Return the longest palindrome with the smallest start index

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAFlipkart 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 interviewRejected

Skills evaluated in this interview

Arthmate Interview FAQs

How many rounds are there in Arthmate interview?
Arthmate interview process usually has 1-2 rounds. The most common rounds in the Arthmate interview process are One-on-one Round, Technical and Resume Shortlist.
How to prepare for Arthmate 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 Arthmate. The most common topics and skills that interviewers at Arthmate expect are NBFC, Java, AWS, Banking and NoSQL.
What are the top questions asked in Arthmate interview?

Some of the top questions asked at the Arthmate interview -

  1. How to check bank...read more
  2. What is dpd in ci...read more
  3. Foir Credit rating cibil and other financial related keywords knowle...read more

Tell us how to improve this page.

Arthmate Interview Process

based on 12 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

Flipkart Interview Questions
4.0
 • 1.4k Interviews
Paytm Interview Questions
3.3
 • 778 Interviews
Swiggy Interview Questions
3.8
 • 439 Interviews
PhonePe Interview Questions
4.0
 • 307 Interviews
Uber Interview Questions
4.2
 • 168 Interviews
Ola Cabs Interview Questions
3.4
 • 143 Interviews
Freecharge Interview Questions
4.0
 • 53 Interviews
Mobikwik Interview Questions
4.1
 • 47 Interviews
Google Pay Interview Questions
4.2
 • 35 Interviews
Amazon Pay Interview Questions
4.0
 • 13 Interviews
View all

Arthmate Reviews and Ratings

based on 49 reviews

3.1/5

Rating in categories

2.8

Skill development

3.0

Work-life balance

3.3

Salary

2.3

Job security

2.8

Company culture

2.9

Promotions

2.7

Work satisfaction

Explore 49 Reviews and Ratings
Company Secretary

Gurgaon / Gurugram

5-7 Yrs

₹ 10-12 LPA

Legal Manager

Gurgaon / Gurugram

3-6 Yrs

₹ 9-12 LPA

Explore more jobs
Senior Manager
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Director
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Arthmate with

Paytm

3.3
Compare

PhonePe

4.0
Compare

Mobikwik

3.7
Compare

Freecharge

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