Upload Button Icon Add office photos

Filter interviews by

FRSPL Interview Questions, Process, and Tips

Updated 18 Dec 2024

Top FRSPL Interview Questions and Answers

View all 11 questions

FRSPL Interview Experiences

Popular Designations

6 interviews found

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

I applied via Approached by Company and was interviewed in Aug 2023. There were 4 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 - HR 

(6 Questions)

  • Q1. Please tell me about yourself
  • Q2. How much experience do you have in the financial industry
  • Q3. How do you handle conflict between your team members
  • Q4. Give an example where you were able to solve a conflict within your team. What was your learning from this incident?
  • Q5. What are your expectations from our company?
  • Q6. Are you a technical person or a pure managerial person? Are you an individual contributor?
Round 3 - Technical 

(4 Questions)

  • Q1. Questions related to immutability
  • Q2. Questions related to Multi-threading and garbage collection
  • Q3. Question related to streams API, sorting, average, min, max, range etc
  • Q4. Java 8 specific questions related to static interfaces, default methods in interfaces etc.
Round 4 - Technical 

(13 Questions)

  • Q1. What are different types of cloning in javascript?
  • Ans. 

    There are two types of cloning in JavaScript: Shallow cloning and Deep cloning.

    • Shallow cloning creates a new object and copies the references of the original object's properties.

    • Deep cloning creates a new object and recursively copies all nested objects and their properties.

    • Shallow cloning can be achieved using Object.assign() or the spread operator (...).

    • Deep cloning can be achieved using libraries like Lodash or by i

  • Answered by AI
  • Q2. How familar are you with FlexBox
  • Q3. What do you mean by asynchronous operations and how do you handle them
  • Ans. 

    Asynchronous operations allow tasks to be executed independently of the main program flow, improving performance and responsiveness.

    • Asynchronous operations are tasks that can run independently of the main program flow, allowing other tasks to continue without waiting for them to finish.

    • In Java, asynchronous operations can be handled using features like CompletableFuture, ExecutorService, and callbacks.

    • Example: Using Co...

  • Answered by AI
  • Q4. Difference between promise.all and promise.AllSettled
  • Ans. 

    promise.all waits for all promises to be resolved or any to be rejected, while promise.allSettled waits for all promises to be settled (either resolved or rejected)

    • promise.all waits for all promises to be resolved or any to be rejected

    • promise.allSettled waits for all promises to be settled (either resolved or rejected)

    • promise.all will reject immediately if any promise is rejected, while promise.allSettled always resolv

  • Answered by AI
  • Q5. How quickly can you learn Angular in our project
  • Q6. What is a bean in spring? What is a spring bean life cycle?
  • Ans. 

    A bean in Spring is a Java object managed by the Spring IoC container. Spring bean life cycle includes instantiation, initialization, and destruction.

    • A Spring bean is a Java object that is instantiated, assembled, and managed by the Spring IoC container.

    • The life cycle of a Spring bean includes instantiation, initialization, in-use, and destruction phases.

    • Spring provides various ways to define beans, such as XML configu...

  • Answered by AI
  • Q7. What is an ORM framework?
  • Ans. 

    ORM framework stands for Object-Relational Mapping framework, which is used to map objects in code to tables in a database.

    • ORM frameworks help developers to interact with databases using objects instead of SQL queries.

    • They provide a way to perform CRUD operations on database tables using object-oriented programming.

    • Popular ORM frameworks include Hibernate, JPA (Java Persistence API), and Entity Framework.

  • Answered by AI
  • Q8. What are different types of object relations we can have in Hibernate? Explain them
  • Ans. 

    Different types of object relations in Hibernate include one-to-one, one-to-many, many-to-one, and many-to-many.

    • One-to-one: Each record in one table is related to only one record in another table.

    • One-to-many: Each record in one table can be related to multiple records in another table.

    • Many-to-one: Multiple records in one table can be related to only one record in another table.

    • Many-to-many: Multiple records in one tabl...

  • Answered by AI
  • Q9. Difference between lazy and eager initialisation. Pros and cons. Applications of them.
  • Ans. 

    Lazy initialization delays the creation of an object until it is actually needed, while eager initialization creates the object immediately.

    • Lazy initialization can improve performance by only creating objects when necessary.

    • Eager initialization can lead to higher memory usage as objects are created upfront.

    • Lazy initialization is commonly used in singleton design pattern to delay the creation of the instance until it is...

  • Answered by AI
  • Q10. How do you pass an object in an API request body
  • Ans. 

    Passing an object in an API request body involves serializing the object into JSON or XML format.

    • Serialize the object into JSON or XML format before sending it in the request body

    • Use libraries like Jackson or Gson in Java to convert the object to JSON

    • Set the content type of the request to application/json or application/xml

  • Answered by AI
  • Q11. What are different design patterns you are familiar with.
  • Ans. 

    I am familiar with Singleton, Factory, Observer, and Strategy design patterns.

    • Singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • Factory pattern creates objects without specifying the exact class of object that will be created.

    • Observer pattern defines a one-to-many dependency between objects so that when one object changes state, all its dependents are notified and updat...

  • Answered by AI
  • Q12. What are SOLID principles
  • Ans. 

    SOLID principles are a set of five design principles in object-oriented programming to make software more maintainable, flexible, and understandable.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with ob...

  • Answered by AI
  • Q13. What are ACID properties
  • Ans. 

    ACID properties are a set of properties that guarantee the reliability of database transactions.

    • ACID stands for Atomicity, Consistency, Isolation, and Durability.

    • Atomicity ensures that either all operations in a transaction are completed successfully or none of them are.

    • Consistency ensures that the database remains in a consistent state before and after the transaction.

    • Isolation ensures that the concurrent execution of...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview panels are from South Africa and you'll be working under them. Have strong command on English and be clear, precise in your answers. And be really good in your tech stacks.

Skills evaluated in this interview

Top FRSPL Java Developer Interview Questions and Answers

Q1. What is a bean in spring? What is a spring bean life cycle?
View answer (1)

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself

Automation Test Engineer Interview Questions asked at other Companies

Q1. How to handle scrollbar and mouse activities Jenkins and Github Story Point in Agile
Backlogs in Agile
Jira workflow explain framework pom.xml wap number reverse program StellException
Exception in Selenium diff - getwindowhandles() and get... read more
View answer (2)

Hybrid Tester Interview Questions & Answers

user image Vinay More

posted on 21 Jun 2023

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

I applied via Approached by Company and was interviewed in May 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What is Agile and Waterfall model? How to handle popups? Explain framework? Why are you leaving previous company? Logical Programs on string
Round 2 - Technical 

(1 Question)

  • Q1. How to design test cases? Selenium based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident with your clear ideas on your current experience! It's enough if you have a real time experience.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Dec 2023. There were 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Basic questions about roles and responsibilities
  • Q2. Can you work on both project simultaneously (manual and auto)
  • Ans. 

    Yes, I can work on both manual and automated projects simultaneously.

    • I have experience in managing multiple projects at the same time.

    • I can prioritize tasks effectively to ensure both manual and automated projects are completed on time.

    • I am proficient in using tools and technologies for both manual and automated testing.

    • For example, I have worked on a project where I created automated test scripts while also performing

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Basic java questions
Round 3 - Client Interview 

(1 Question)

  • Q1. Asked about dependency in project

Automation Test Engineer Interview Questions asked at other Companies

Q1. How to handle scrollbar and mouse activities Jenkins and Github Story Point in Agile
Backlogs in Agile
Jira workflow explain framework pom.xml wap number reverse program StellException
Exception in Selenium diff - getwindowhandles() and get... read more
View answer (2)

FRSPL interview questions for popular designations

 Automation Test Engineer

 (2)

 Java Developer

 (1)

 Linux System Administrator

 (1)

 Test Analyst

 (1)

I applied via Naukri.com and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Linux administration
  • Q2. User management Lvm Process management
  • Q3. Devops admin
  • Q4. Git Maven Ansible Puppet Chef

Interview Preparation Tips

Interview preparation tips for other job seekers - Good. Asked all the devops things

Linux System Administrator Interview Questions asked at other Companies

Q1. What are the causes of user not able to login application
View answer (9)

Test Analyst Interview Questions & Answers

user image Anonymous

posted on 26 Nov 2019

I applied via Recruitment Consultant and was interviewed in Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Testing and Analytical Questions, also, Project based scenario questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and polite. Answer all the question in polite manner

Test Analyst Interview Questions asked at other Companies

Q1. What is the difference between manual testing and automated testing?
Add answer

Interview questions from similar companies

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

I was interviewed in Jan 2025.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Circular wait Ans A circular chain with two or more processes, each one waiting for a resource held by the next process within the chain
  • Q2. Hold and wait Ans A process must be holding at least one resource while waiting to acquire additional resources held by other process holding them
Round 2 - One-on-one 

(2 Questions)

  • Q1. The phrase 'lavish with his hospitality' in the third sentence of the first paragraph means Ans Extravagance in entertaining guest
  • Q2. What is an Accenture coding Test Ans The Accenture coding Test but not like the one in the first stage,its much lengthier and more comprehensive.

Interview Preparation Tips

Interview preparation tips for other job seekers - . Be prepared for anything
. Act kindly to everyone
. Send follow-up emails
. Learn job keywords
. Be mindful of your job location
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Aug 2024.

Round 1 - Technical 

(4 Questions)

  • Q1. Can you please tell us about yourself?
  • Q2. Can you describe some recent development work that you have completed?
  • Q3. What are the differences between DDP, DPP and process property?
  • Q4. What steps can you take to speed up execution through development changes?
Round 2 - HR 

(3 Questions)

  • Q1. What are your reasons for wanting to leave your current organization and join ours?
  • Q2. What are your preferences between financial compensation and job satisfaction?
  • Q3. Where do you envision yourself in the next five years?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident during the interview and maintain eye contact throughout. Always include in your CV only the points you have genuinely worked on, ensuring you are well-versed in them and can provide relevant examples. Explain your recent development work with confidence, detailing it in a manner that helps the interviewer easily grasp your technical knowledge, which will guide the subsequent questions toward your strengths.
Interview experience
4
Good
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Not Selected

I was interviewed in Aug 2024.

Round 1 - Aptitude Test 

Attended the TCS NQT, depending on how many advanced questions and the test cases you pass in coding section, you'll get assigned Ninja (3L) Digital (7L) or prime (9L)

Round 2 - Behavioral 

(8 Questions)

  • Q1. Code to get prime nos
  • Q2. What do you know about cloud computing
  • Q3. Self introduction
  • Q4. Difference between cloud computing and computer networking
  • Q5. If you know any os like linux
  • Q6. Oops based questions, very basic if you're not from it or cse related fields but they might ask advanced questions if you're related to cs/it fields
  • Q7. If you're okay Relocation
  • Q8. Questions about your projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Look up the current technologies used in tcs and Prepare well to answer those questions and have good basic knowledge in cse/it

It depends on what type of questions the interviewer asks you though! Good luck, prepare well
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. What makes you the ideal candidate for this position?
  • Ans. 

    I have a strong background in customer service, excellent communication skills, and a passion for helping customers.

    • Extensive experience in customer service roles

    • Excellent communication skills

    • Strong problem-solving abilities

    • Passion for helping customers

    • Proven track record of resolving customer issues efficiently

  • Answered by AI
Round 2 - Verscent 

(1 Question)

  • Q1. They will Voice test
Round 3 - Client Interview 

(1 Question)

  • Q1. Tell me about your self, what are languages you know, what do you know about phone pe
  • Ans. 

    I am fluent in English, Hindi, and Spanish. I have knowledge about PhonePe's services and features.

    • Fluent in English, Hindi, and Spanish

    • Knowledge about PhonePe's services and features

    • Experience in customer service roles

  • Answered by AI
Round 4 - Typing Test 

(1 Question)

  • Q1. They will check our typing test

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not feel nervous; instead, be confident. If you experience fear and anxiety, you may be eliminated in the first round.

FRSPL Interview FAQs

How many rounds are there in FRSPL interview?
FRSPL interview process usually has 2-3 rounds. The most common rounds in the FRSPL interview process are Technical, HR and Resume Shortlist.
What are the top questions asked in FRSPL interview?

Some of the top questions asked at the FRSPL interview -

  1. What is a bean in spring? What is a spring bean life cyc...read more
  2. What are different types of object relations we can have in Hibernate? Explain ...read more
  3. What do you mean by asynchronous operations and how do you handle t...read more

Tell us how to improve this page.

FRSPL Interview Process

based on 4 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all

FRSPL Reviews and Ratings

based on 27 reviews

4.5/5

Rating in categories

4.4

Skill development

4.5

Work-life balance

4.5

Salary

4.3

Job security

4.2

Company culture

4.1

Promotions

4.3

Work satisfaction

Explore 27 Reviews and Ratings
Java Developer
17 salaries
unlock blur

₹9.5 L/yr - ₹32 L/yr

Storage Backup Administrator
13 salaries
unlock blur

₹8.8 L/yr - ₹15 L/yr

Backup Administrator
8 salaries
unlock blur

₹8.4 L/yr - ₹10 L/yr

Senior Java Developer
7 salaries
unlock blur

₹23 L/yr - ₹46 L/yr

Senior Software Engineer
7 salaries
unlock blur

₹12 L/yr - ₹30 L/yr

Explore more salaries
Compare FRSPL with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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