Upload Button Icon Add office photos

Precisely

Compare button icon Compare button icon Compare

Filter interviews by

Precisely Interview Questions and Answers

Updated 25 Jan 2025
Popular Designations

7 Interview questions

A Staff Accountant 1 was asked 4mo ago
Q. How do you record a depreciation journal entry?
Ans. 

Depreciation journal entry records the allocation of an asset's cost over its useful life.

  • Debit Depreciation Expense to reflect the cost of using the asset.

  • Credit Accumulated Depreciation to reduce the asset's book value.

  • Example: For a $10,000 asset with a 5-year life, annual depreciation is $2,000.

  • Journal entry: Debit Depreciation Expense $2,000; Credit Accumulated Depreciation $2,000.

View all Staff Accountant 1 interview questions
An Associate Software Engineer was asked 9mo ago
Q. What is a 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: Dou...

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked 9mo ago
Q. Implement linked list data structure.
Ans. 

Linked lists are dynamic data structures that consist of nodes, each containing data and a reference to the next node.

  • A linked list consists of nodes, where each node has data and a pointer to the next node.

  • Types of linked lists: singly linked list, doubly linked list, and circular linked list.

  • Example of a singly linked list: Node1 -> Node2 -> Node3 -> NULL.

  • In a doubly linked list, each node points to bot...

View all Associate Software Engineer interview questions
A Senior Software Engineer 2 was asked
Q. What is the 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 userSe...

View all Senior Software Engineer 2 interview questions
A Senior Software Engineer 2 was asked
Q. What are the real benefits 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.

  • ...

View all Senior Software Engineer 2 interview questions
A Senior Software Engineer 2 was asked
Q. What is the 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 syste...

View all Senior Software Engineer 2 interview questions
A Senior Software Engineer 2 was asked
Q. How do you implement resiliency in a 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 wa...

View all Senior Software Engineer 2 interview questions
Are these interview questions helpful?

Precisely Interview Experiences

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
  • Ans. 

    Linked lists are dynamic data structures that consist of nodes, each containing data and a reference to the next node.

    • A linked list consists of nodes, where each node has data and a pointer to the next node.

    • Types of linked lists: singly linked list, doubly linked list, and circular linked list.

    • Example of a singly linked list: Node1 -> Node2 -> Node3 -> NULL.

    • In a doubly linked list, each node points to both the...

  • Answered by AI
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

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.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview 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

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.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Depreciation journal entry
  • Ans. 

    Depreciation journal entry records the allocation of an asset's cost over its useful life.

    • Debit Depreciation Expense to reflect the cost of using the asset.

    • Credit Accumulated Depreciation to reduce the asset's book value.

    • Example: For a $10,000 asset with a 5-year life, annual depreciation is $2,000.

    • Journal entry: Debit Depreciation Expense $2,000; Credit Accumulated Depreciation $2,000.

  • Answered by AI

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.
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
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 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
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

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.

Top trending discussions

View All
Office Jokes
2w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about Precisely?
Ask anonymously on communities.

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, Career Development, Python and Data Integrity.
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

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 11 interview experiences

Difficulty level

Moderate 83%
Hard 17%

Duration

Less than 2 weeks 80%
2-4 weeks 20%
View more

Interview Questions from Similar Companies

Darwinbox Interview Questions
3.9
 • 47 Interviews
CodeClouds Interview Questions
4.4
 • 42 Interviews
Grey Orange Interview Questions
3.2
 • 40 Interviews
Mobileum Interview Questions
3.3
 • 38 Interviews
SirionLabs Interview Questions
3.8
 • 26 Interviews
SOTI Interview Questions
3.2
 • 24 Interviews
FinThrive Interview Questions
3.7
 • 21 Interviews
View all

Precisely Reviews and Ratings

based on 74 reviews

3.8/5

Rating in categories

3.8

Skill development

4.1

Work-life balance

3.4

Salary

3.6

Job security

3.8

Company culture

3.1

Promotions

3.7

Work satisfaction

Explore 74 Reviews and Ratings
Senior Support Engineer II (Mainframe Storage)

Noida,

Bangalore / Bengaluru

+1

6-11 Yrs

Not Disclosed

Software Engineer II (C, Java, ETL)

Kolkata,

Mumbai

+5

2-7 Yrs

Not Disclosed

Senior Software Engineer I (C, Java, ETL)

Kolkata,

Mumbai

+5

5-10 Yrs

Not Disclosed

Explore more jobs
Software Engineer
51 salaries
unlock blur

₹11 L/yr - ₹16.5 L/yr

Senior Software Engineer 2
50 salaries
unlock blur

₹17 L/yr - ₹36 L/yr

Principal Software Engineer
38 salaries
unlock blur

₹29 L/yr - ₹45.4 L/yr

Software Engineer Level 1
35 salaries
unlock blur

₹7 L/yr - ₹15 L/yr

Software Engineer2
30 salaries
unlock blur

₹11.8 L/yr - ₹32 L/yr

Explore more salaries
Compare Precisely with

Duck Creek Technologies

4.4
Compare

FinThrive

3.7
Compare

CodeClouds

4.4
Compare

Grey Orange

3.2
Compare
write
Share an Interview