Upload Button Icon Add office photos
Engaged Employer

i

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

Sapiens Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Sapiens Interview Questions, Process, and Tips

Updated 7 Mar 2025

Top Sapiens Interview Questions and Answers

View all 37 questions

Sapiens Interview Experiences

Popular Designations

60 interviews found

Test Engineer Interview Questions & Answers

user image purushotam tewari

posted on 8 Feb 2024

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

I applied via Naukri.com and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. SDLC, bug life cycle

Test Engineer Interview Questions asked at other Companies

Q1. 1. What is the frame work u have worked and explain the framework with folder structure? 2. purely based on testing, different testing types like functional and non functional tests 3. real time scenarios like last min bugs before release? ... read more
View answer (4)

Senior Developer Interview Questions & Answers

user image Raksha Desai

posted on 15 May 2024

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

Asked coding questions

Round 2 - HR 

(1 Question)

  • Q1. Questions related to measuring using 2 buckets

Senior Developer Interview Questions asked at other Companies

Q1. What is your current CTC and what is your expected CTC?
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 1 Feb 2024

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

I applied via Naukri.com and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Develop a input form
Round 2 - Technical 

(1 Question)

  • Q1. Difficult javascript questions be prepared well, don't just go through js questions and answers.

Interview Preparation Tips

Interview preparation tips for other job seekers - They will going to ask all the aspects of development so be prepared

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jan 2023. 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 - Technical 

(3 Questions)

  • Q1. Specificity in CSS and how does it works?
  • Ans. 

    Specificity in CSS determines which style rule is applied to an element when multiple rules have conflicting selectors.

    • Specificity is calculated based on the selector types and values.

    • Inline styles have the highest specificity, followed by IDs, classes, and elements.

    • Specificity is represented by a four-part value (a,b,c,d) where a is the most significant and d is the least significant.

    • Example: div p .class has a specif...

  • Answered by AI
  • Q2. What is state uplifting in react
  • Ans. 

    State uplifting in React is the process of moving the state of a child component to its parent component.

    • State uplifting helps in managing the state of multiple components by lifting it up to a common ancestor component.

    • It involves passing down state and functions as props from parent to child components.

    • State uplifting improves the reusability and maintainability of components in React.

    • Example: If multiple child compo...

  • Answered by AI
  • Q3. How does async - await works ?
  • Ans. 

    Async-await is a feature in JavaScript that allows for asynchronous code to be written in a synchronous manner.

    • Async functions return a Promise.

    • Await keyword is used to pause the execution of async function until the Promise is settled.

    • Async-await makes asynchronous code easier to read and write compared to using callbacks or Promises.

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Guess the output questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Indepth understand of javascript.

Skills evaluated in this interview

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)

Sapiens interview questions for popular designations

 Quality Analyst

 (6)

 Software Developer

 (4)

 Associate Software Developer

 (3)

 Senior Developer

 (3)

 Developer

 (3)

 Devops Engineer

 (2)

 Senior Business Analyst

 (2)

 Business Analyst

 (2)

Associate Interview Questions & Answers

user image Anonymous

posted on 30 Oct 2023

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Coding round and aptitude

Round 2 - Technical 

(1 Question)

  • Q1. Questions related to testing tools

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well from your past experience

Associate Interview Questions asked at other Companies

Q1. What is mean of TTR & why required for powder coating process ?
View answer (17)

Get interview-ready with Top Sapiens Interview Questions

Interview experience
1
Bad
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 

(1 Question)

  • Q1. Salary expectation more then 35k
Round 3 - One-on-one 

(1 Question)

  • Q1. About the hvac,cooling tower

Jobs at Sapiens

View all

Developer Interview Questions & Answers

user image Anonymous

posted on 7 Feb 2023

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

I applied via Naukri.com 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 - Technical 

(2 Questions)

  • Q1. OOPS concepts explain in details ?
  • Ans. 

    OOPS concepts are fundamental principles in object-oriented programming.

    • Encapsulation: bundling data and methods together in a class

    • Inheritance: creating new classes from existing ones

    • Polymorphism: using a single interface to represent different types

    • Abstraction: hiding unnecessary details and exposing only essential features

    • Encapsulation example: a class with private variables and public methods

    • Inheritance example: a ...

  • Answered by AI
  • Q2. What is shallow and deep copy
  • Ans. 

    Shallow copy creates a new reference to the original object, while deep copy creates a new object with its own copy of the data.

    • Shallow copy only copies the references of the original object's data, not the actual data itself.

    • Deep copy creates a new object and recursively copies all the data from the original object.

    • Shallow copy is faster and more memory-efficient, but changes to the copied data will affect the origina...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare best for coding , explain in depth as well as provide code samples if you can

Developer Interview Questions asked at other Companies

Q1. Which programming language do you use regular in work
View answer (2)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Jan 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. ITIL process : INC Managemnet
  • Q2. Random question which doesn’t aling with the jobl

Application Support Analyst Interview Questions asked at other Companies

Q1. Dhcp and dns server ? What is latest version of Windows server? Ip address denge ? What's the range of private ip address? Diffrent between public and private ip address.
View answer (1)

I applied via LinkedIn and was interviewed in Oct 2022. There were 5 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 - Aptitude Test 

Questions asked in aptitude test was easy to medium level

Round 3 - Technical 

(2 Questions)

  • Q1. About projects and basic cse stuff
  • Q2. Questions based on role which we have choosen
Round 4 - One-on-one 

(1 Question)

  • Q1. Here they are testing whether we are fit for this role or not
Round 5 - HR 

(1 Question)

  • Q1. General HR questions

Interview Preparation Tips

Topics to prepare for Sapiens Devops Engineer interview:
  • Devops
Interview preparation tips for other job seekers - Be confident,don't get panic in interview and give your best answers to the interviewer.

Top Sapiens Devops Engineer Interview Questions and Answers

Q1. Docker: Dockerfile arguements explain usage, how to retain docker container data, Do we have to use EXPOSE command for container or it can be omitted?
View answer (1)

Devops Engineer Interview Questions asked at other Companies

Q1. Reverse the String Problem Statement You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string. Example: Input: STR = "abcde" Output: "edcba" Input: The first line of input cont... read more
View answer (3)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jan 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Aptitude test including coding question

Round 2 - Technical 

(1 Question)

  • Q1. Basic core java ans sql questions
Round 3 - Technical 

(1 Question)

  • Q1. Basic sde question
Round 4 - HR 

(1 Question)

  • Q1. Typical Hr discussion

Associate Software Developer Interview Questions asked at other Companies

Q1. Nth Fibonacci Number Problem Statement Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1. Input: The input consists of a single intege... read more
View answer (1)

Sapiens Interview FAQs

How many rounds are there in Sapiens interview?
Sapiens interview process usually has 2-3 rounds. The most common rounds in the Sapiens interview process are Technical, HR and One-on-one Round.
How to prepare for Sapiens 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 Sapiens. The most common topics and skills that interviewers at Sapiens expect are Business Intelligence, Billing, Financial Services, SQL and Claims.
What are the top questions asked in Sapiens interview?

Some of the top questions asked at the Sapiens interview -

  1. From Selenium -> Which Automation framework I have implemented in my project ....read more
  2. Difference between annuity and pension, types of annuity and pension, actions d...read more
  3. 2) Shuffle a list of songs playlist and no song should be repeat...read more
How long is the Sapiens interview process?

The duration of Sapiens interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Sapiens Interview Process

based on 54 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
Chetu Interview Questions
3.3
 • 172 Interviews
View all

Sapiens Reviews and Ratings

based on 457 reviews

3.4/5

Rating in categories

3.0

Skill development

3.4

Work-life balance

3.4

Salary

3.4

Job security

3.3

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 457 Reviews and Ratings
Functional Architect

Bangalore / Bengaluru

10-18 Yrs

Not Disclosed

Director Product Development

Bangalore / Bengaluru

15-24 Yrs

Not Disclosed

Quality Analyst ( Automation)

Bangalore / Bengaluru

3-5 Yrs

₹ 4.4-12.57492 LPA

Explore more jobs
Software Developer
271 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Quality Analyst
240 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Quality Analyst
228 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
165 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Developer
153 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Sapiens 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