Upload Button Icon Add office photos

Filter interviews by

Precisely Interview Questions, Process, and Tips

Updated 25 Jan 2025

Top Precisely Interview Questions and Answers

Precisely Interview Experiences

Popular Designations

10 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. What is Linked List
  • Ans. 

    A linked list is a linear data structure where elements are stored in nodes that have a reference to the next node in the sequence.

    • Consists of nodes connected by pointers or references

    • Each node contains data and a reference to the next node

    • Can be singly linked (each node points to the next) or doubly linked (each node points to the next and previous)

    • Example: Singly linked list: 1 -> 2 -> 3 -> 4 -> null

    • Example: Doubly l

  • Answered by AI
  • Q2. Linked list coding
Round 2 - Technical 

(2 Questions)

  • Q1. Trees structure
  • Q2. Dsa codingwith screen sharing
Round 3 - HR 

(1 Question)

  • Q1. Salary expectation

Skills evaluated in this interview

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)

Sopra Steria

Rated 4 for Job Security by our employees on AmbitionBox

Secure your future with a company that values your job stability.

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. It is 1:1 round with the hiring manager where I get to know about the company, the team they are hiring for and the tech stack.
Round 2 - Technical 

(1 Question)

  • Q1. It's a technical 1:1 discussion with a Senior Solution Architect. Resume based questions and SQL schema related questions and Kafka usecase related questions.
Round 3 - Technical 

(1 Question)

  • Q1. It's a technical discussion round 2. Explain about my previous projects, some infrastructure related questions and 1 simple program.

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (203)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Mar 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. Difference between InjectMocks and MockBean in Mockito
  • Ans. 

    InjectMocks is used to inject mocks into a test class, while MockBean is used to mock Spring beans in a Spring context.

    • InjectMocks is a Mockito annotation used to inject mock objects into a test class.

    • MockBean is a Spring Boot annotation used to mock Spring beans in a Spring context.

    • InjectMocks is used in standalone tests, while MockBean is used in integration tests.

    • Example: @InjectMocks private UserService userService...

  • Answered by AI
  • Q2. What is Circuit breaker pattern
  • Ans. 

    Circuit breaker pattern is a design pattern used in software development to prevent cascading failures in distributed systems.

    • It is used to handle faults and failures in a distributed system by temporarily blocking requests to a failing service.

    • When the circuit breaker detects that the service is healthy again, it allows requests to flow through.

    • It helps in improving the resilience and fault tolerance of the system.

    • Exa...

  • Answered by AI
  • Q3. SOLID principles
  • Q4. How to implement resiliency in microservice architecture
  • Ans. 

    Implementing resiliency in microservice architecture involves using techniques like circuit breakers, retries, timeouts, and load balancing.

    • Use circuit breakers to prevent cascading failures by stopping requests to a service that is not responding.

    • Implement retries with exponential backoff to handle transient failures and give the service time to recover.

    • Set timeouts for requests to avoid blocking resources and waiting...

  • Answered by AI
  • Q5. What is real benefit of docker
  • Ans. 

    Docker allows for easy and efficient containerization of applications, leading to improved scalability, portability, and resource utilization.

    • Improved scalability: Docker containers can be easily scaled up or down based on demand, allowing for efficient resource allocation.

    • Portability: Docker containers can run on any system that supports Docker, making it easy to deploy applications across different environments.

    • Resou...

  • Answered by AI

Skills evaluated in this interview

Senior Software Engineer 2 Interview Questions asked at other Companies

Q1. What microservices patterns are you aware ? let's assume that there is a microservice based architecture and service A is calling service B which in turn service C. If service b fails, how will you manage transaction and logging ?
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. One of the achievements you are most proud of
Round 2 - Panel interview 

(1 Question)

  • Q1. Tech questions around the role
Round 3 - One-on-one 

(1 Question)

  • Q1. With Hiring Manager

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself. They want to understand you.

Product Manager Interview Questions asked at other Companies

Q1. You see the number of people cancelling the order increasing. Cancel window 24 hours. What would you do?
View answer (26)

Precisely interview questions for popular designations

 Software Engineer

 (2)

 Senior Software Engineer 2

 (2)

 Software Engineer Level 1

 (1)

 Product Manager

 (1)

 Staff Accountant 1

 (1)

 Data Engineer 2

 (1)

 Software Development Engineer II

 (1)

 Associate Software Engineer

 (1)

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

(1 Question)

  • Q1. Depreciation journal entry

Staff Accountant 1 Interview Questions asked at other Companies

Q1. Would you like to take up tax roles if audit is not available
View answer (1)

Data Engineer 2 Interview Questions & Answers

user image Prince Bhardwaj

posted on 18 May 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. General discussion on resume
Round 2 - One-on-one 

(1 Question)

  • Q1. Discussion on projects and tech stacks used.

Data Engineer 2 Interview Questions asked at other Companies

Q1. Design a datawarehouse for an e-commerce for buy and sell transaction.
View answer (1)

Jobs at Precisely

View all
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Basic questions about your domain

Software Development Engineer II Interview Questions asked at other Companies

Q1. Given 2 large numeric comma seperated strings. You need to calculate their sum along with maintaining the correct position of commas. Example Test Case - s1 - "123,456,788" s2 - "1" output - "123,456,789" constraints - since the strings can... read more
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Sep 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Keep your basics strong & prepare last projects that you have worked on
  • Q2. Oops concept, git commands, Java arraylist and map, java multithreading, rest assured, testng
Round 3 - HR 

(1 Question)

  • Q1. Simple HR round

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (203)
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Puzzles , JAVA OOPs , SQL , HTML , CSS
Round 2 - HR 

(1 Question)

  • Q1. Normal questions

Software Engineer Level 1 Interview Questions asked at other Companies

Q1. Input a file. Select first 3 lines of the file. Select the longest line and count the number of words in that line. It was easy. I used Java methods to solve the problem. I explained the logic and he accepted it.
View answer (1)

I applied via Recruitment Consulltant and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Coding Test 

Basic coding
Framework development

Round 2 - Coding Test 

Collections
Devops
Coding assignment

Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial round and directorial round

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good with data structures.
QA should be good with framework.
Know CI Cd well.

Senior Software Engineer 2 Interview Questions asked at other Companies

Q1. What microservices patterns are you aware ? let's assume that there is a microservice based architecture and service A is calling service B which in turn service C. If service b fails, how will you manage transaction and logging ?
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

Precisely Interview FAQs

How many rounds are there in Precisely interview?
Precisely interview process usually has 2-3 rounds. The most common rounds in the Precisely interview process are Technical, One-on-one Round and HR.
How to prepare for Precisely 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 Precisely. The most common topics and skills that interviewers at Precisely expect are SQL, Data Quality, Python, Career Development and Agile.
What are the top questions asked in Precisely interview?

Some of the top questions asked at the Precisely interview -

  1. How to implement resiliency in microservice architect...read more
  2. Difference between InjectMocks and MockBean in Mock...read more
  3. What is Circuit breaker patt...read more

Recently Viewed

PHOTOS

Perfios Software Solutions

No Photos

JOBS

Perfios Software Solutions

No Jobs

JOBS

Risk Management Solutions

No Jobs

JOBS

Stratsol Software Systems

No Jobs

SALARIES

Benison Technologies

No Salaries

PHOTOS

Risk Management Solutions

No Photos

PHOTOS

Stratsol Software Systems

No Photos

COMPANY BENEFITS

Highlands Info Tech

No Benefits

COMPANY BENEFITS

Benison Technologies

No Benefits

SALARIES

Highlands Info Tech

No Salaries

Tell us how to improve this page.

Precisely Interview Process

based on 11 interviews

Interview experience

4
  
Good
View more

HCLTech

An opportunity to work for Fortune 500 companies

Interview Questions from Similar Companies

Mu Sigma Interview Questions
2.6
 • 229 Interviews
Tiger Analytics Interview Questions
3.7
 • 222 Interviews
Fractal Analytics Interview Questions
4.0
 • 204 Interviews
Axtria Interview Questions
3.1
 • 115 Interviews
C5i Interview Questions
3.7
 • 46 Interviews
AbsolutData Interview Questions
3.6
 • 9 Interviews
Algonomy Interview Questions
4.0
 • 9 Interviews
Analytic Edge Interview Questions
3.1
 • 6 Interviews
View all

Precisely Reviews and Ratings

based on 62 reviews

3.8/5

Rating in categories

3.9

Skill development

4.2

Work-life balance

3.6

Salary

3.6

Job security

3.9

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 62 Reviews and Ratings
Software Engineer I

Kolkata,

Mumbai

+5

3-4 Yrs

Not Disclosed

Senior Software Engineer II

Kolkata,

Mumbai

+5

1-5 Yrs

Not Disclosed

Manager, Customer Support (B2Bi / IBM B2B sterling Integrator)

Kolkata,

Mumbai

+5

12-15 Yrs

Not Disclosed

Explore more jobs
Software Engineer
46 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer 2
43 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Principal Software Engineer
37 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer Level 1
35 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer2
27 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Precisely with

Fractal Analytics

4.0
Compare

Mu Sigma

2.6
Compare

Tiger Analytics

3.7
Compare

LatentView Analytics

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