Upload Button Icon Add office photos

Filter interviews by

Paisalo Digital Interview Questions and Answers

Updated 28 Dec 2024

Paisalo Digital Interview Experiences

Popular Designations

7 interviews found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Jwt, ajax call, mvc, web api, filter, middleware

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join this company at all. No growth

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The stages of the Software Development Life Cycle (SDLC), the definition of latent bugs, and an overview of TestNG annotations.

Software Tester Interview Questions asked at other Companies

Q1. Which is a best technique to generate automated test report ?
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Experience and all other things
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion

Legal Associate Interview Questions asked at other Companies

Q1. what is responsiness, issue codes and confidentiality in Document review?
View answer (1)

Area Manager Interview Questions & Answers

user image Anonymous

posted on 13 Oct 2023

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

(5 Questions)

  • Q1. Skills CV SALES
  • Q2. About yourself liable for necessary achievement in career
  • Q3. How's your day to day business development plans in current market and marketed
  • Ans. 

    My day to day business development plans involve identifying new market opportunities, building relationships with key stakeholders, and implementing strategic initiatives to drive growth.

    • Conduct market research to identify potential opportunities for expansion

    • Develop relationships with key clients and partners to increase market presence

    • Implement strategic initiatives such as promotional campaigns or product launches ...

  • Answered by AI
  • Q4. Previous employers Team size and lead by you
  • Q5. Customer portfolio xbkt collection ED LMD 90 DPD NPA Cases case study

Interview Preparation Tips

Interview preparation tips for other job seekers - Leadership skills and behavior all personal quality

Area Manager Interview Questions asked at other Companies

Q1. Tell me about a time when you changed or enhanced the existing process? What was it and and how it has helped the overall performance?
View answer (1)

Paisalo Digital interview questions for popular designations

 Area Manager

 (1)

 CSO

 (1)

 Legal

 (1)

 Legal Associate

 (1)

 Management Information System Executive

 (1)

 Software Developer

 (1)

 Software Tester

 (1)

Legal Interview Questions & Answers

user image sweta rana

posted on 18 Sep 2022

I applied via Recruitment Consulltant and was interviewed in Aug 2022. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic question form your cv

Interview Preparation Tips

Interview preparation tips for other job seekers - Know basic things that is it only, other they will not ask anything

Legal Interview Questions asked at other Companies

Q1. Is your GPA an accurate reflection of ur abilities ? Why or why not ?
View answer (1)

I applied via Walk-in and was interviewed in Dec 2021. There was 1 interview round.

Round 1 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Working in Paislow Digital Limited Company It was very nice to work as Miss, and we are interested in doing every single work of the office,

Management Information System Executive Interview Questions asked at other Companies

Q1. How much you know about the formulla of advenced excel ??
View answer (1)

Jobs at Paisalo Digital

View all

CSO Interview Questions & Answers

user image Anonymous

posted on 13 Jul 2022

I applied via Walk-in and was interviewed before Jul 2021. 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 - Group Discussion 

Communication Skill
Computer Knowledge
English Spoken
Ready to work in Feild

Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion Company Policies
Round 4 - Feild Investigation 

(1 Question)

  • Q1. Background Check Family Background

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Communication Skill
Computer Knowledge

CSO Interview Questions asked at other Companies

Q1. What is the difference between saving account and current account
View answer (1)

Interview questions from similar companies

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

1. Prime Factors Operations

You are given an integer n. In one operation, you can do the following

• Pick a number P such that P is prime and n is divisble by P. Assign P

Find the maximum number of operations you can perform.

Function description

Complete the primeGame function in the editor below. It has the following param

Name

Type

Description

INTEGER

The given integer n.

n

Return

The function must return an INTEGER denoting the maximum operations you can perform.

Constraints

• 1 ≤ n ≤ 10^9

Input format for debugging

• The first line contains an integer, n, denoting the initial value of n. desc

Round 2 - Technical 

(5 Questions)

  • Q1. What is Object-Oriented Programming (OOP) in Java, and can you explain concepts such as encapsulation and polymorphism with examples?
  • Ans. 

    OOP in Java is a programming paradigm that uses objects to design applications. Encapsulation is the bundling of data and methods, while polymorphism allows objects to be treated as instances of their parent class.

    • OOP in Java focuses on creating objects that interact with each other to design applications

    • Encapsulation in Java involves bundling data (variables) and methods (functions) within a class to restrict access f...

  • Answered by AI
  • Q2. What are wrapper classes in Java, and what is their purpose?
  • Ans. 

    Wrapper classes in Java are classes that allow primitive data types to be used as objects.

    • Wrapper classes provide a way to convert primitive data types into objects.

    • They are used when an object is required, such as in collections like ArrayList.

    • Examples include Integer for int, Double for double, Boolean for boolean, etc.

  • Answered by AI
  • Q3. Given an array, how can it be rotated to the left?
  • Ans. 

    To rotate an array to the left, shift all elements to the left by one position and move the first element to the end.

    • Create a temporary variable to store the first element of the array.

    • Shift all elements to the left by one position.

    • Assign the temporary variable value to the last element of the array.

  • Answered by AI
  • Q4. Can you explain the projects you have completed and provide details about your internships?
  • Ans. 

    I have completed projects in renewable energy and automation systems. I have also interned at a manufacturing company and a research institute.

    • Completed a project on designing a solar-powered irrigation system for a rural community

    • Completed a project on developing an automated warehouse management system using RFID technology

    • Interned at a manufacturing company where I worked on optimizing production processes

    • Interned a...

  • Answered by AI
  • Q5. What is the difference between an ArrayList and an array in Java?
  • Ans. 

    ArrayList is a dynamic array in Java that can grow or shrink in size, while an array has a fixed size.

    • ArrayList can dynamically resize itself, while array has a fixed size.

    • ArrayList is a class in Java, while array is a basic data structure.

    • ArrayList provides methods to add, remove, and access elements easily, while array requires manual manipulation.

    • Example: ArrayList<String> list = new ArrayList<>(); Strin...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Mahindra company mey dubara apply karne ke liye kya karna padega
  • Q2. Dubara joining ho payega ya nahi
Round 2 - One-on-one 

(1 Question)

  • Q1. One to one to round
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jul 2024.

Round 1 - Aptitude Test 

It's a series of aptitude questions, you must answer as many questions as you can correctly within 45 mins

Round 2 - One-on-one 

(3 Questions)

  • Q1. What are the golden rules of accounting?
  • Q2. Why do you want to work In Shriram Finance?
  • Q3. Tell me about yourself?

Paisalo Digital Interview FAQs

How many rounds are there in Paisalo Digital interview?
Paisalo Digital interview process usually has 1-2 rounds. The most common rounds in the Paisalo Digital interview process are HR, One-on-one Round and Resume Shortlist.
How to prepare for Paisalo Digital 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 Paisalo Digital. The most common topics and skills that interviewers at Paisalo Digital expect are AutoCAD, Bootstrap, HTML, HTML and CSS and Javascript.
What are the top questions asked in Paisalo Digital interview?

Some of the top questions asked at the Paisalo Digital interview -

  1. How's your day to day business development plans in current market and marke...read more
  2. Customer portfolio xbkt collection ED LMD 90 DPD NPA Cases case stu...read more
  3. Jwt, ajax call, mvc, web api, filter, middlew...read more

Tell us how to improve this page.

Paisalo Digital Interview Process

based on 12 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

IDFC FIRST Bank Interview Questions
4.0
 • 620 Interviews
Shriram Finance Interview Questions
4.1
 • 323 Interviews
Bajaj Finance Interview Questions
4.0
 • 291 Interviews
Muthoot Finance Interview Questions
3.6
 • 248 Interviews
L&T Finance Interview Questions
3.9
 • 147 Interviews
Mahindra Finance Interview Questions
4.1
 • 144 Interviews
Edelweiss Interview Questions
3.9
 • 58 Interviews
View all

Paisalo Digital Reviews and Ratings

based on 103 reviews

3.7/5

Rating in categories

3.4

Skill development

3.6

Work-life balance

3.1

Salary

3.6

Job security

3.5

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 103 Reviews and Ratings
Senior DevOps Engineer - CI/CD

Delhi/Ncr

3-5 Yrs

Not Disclosed

Dot Net Core Developer

Noida,

Gurgaon / Gurugram

+1

3-8 Yrs

Not Disclosed

Video Editor

New Delhi

2-5 Yrs

₹ 3-5.5 LPA

Explore more jobs
Back Office Executive
21 salaries
unlock blur

₹1.5 L/yr - ₹2.4 L/yr

Area Head
15 salaries
unlock blur

₹3 L/yr - ₹5.2 L/yr

State Head
7 salaries
unlock blur

₹5 L/yr - ₹12.6 L/yr

Branch Manager
6 salaries
unlock blur

₹2.4 L/yr - ₹3.6 L/yr

Finance Executive
6 salaries
unlock blur

₹1.4 L/yr - ₹3.2 L/yr

Explore more salaries
Compare Paisalo Digital with

Bajaj Finance

4.0
Compare

IDFC FIRST Bank

4.0
Compare

Muthoot Finance

3.6
Compare

Manappuram Finance

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