Upload Button Icon Add office photos

Filter interviews by

Precisely Software Engineer Interview Questions and Answers

Updated 3 Apr 2024

Precisely Software Engineer Interview Experiences

2 interviews found

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

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Interview questions from similar companies

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

There will be 3 coding questions given to us for solving,we need solve two questions compulsory.

Round 2 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java, Spring, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring, and Angular

    • Strong problem-solving skills

  • Answered by AI
  • Q2. Questions related to frontend
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Coding Test 

Questions were high level

Interview Preparation Tips

Topics to prepare for SOTI Software Engineer interview:
  • array
  • Data Dictionary
  • tree
Interview preparation tips for other job seekers - before applying to soti you should have a good coding skill

I applied via Company Website and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

6 Questions

  • Q1. Worst interview process.
  • Q2. Don't go for interview
  • Q3. Worst organization
  • Ans. 

    Worst organization

    • Lack of communication and transparency

    • Inefficient management and decision-making

    • Toxic work culture and lack of employee support

    • Poorly defined goals and objectives

    • Lack of career growth opportunities

  • Answered by AI
  • Q4. I got offer from Oracle and this company also. But due drama I rejected offer this company
  • Q5. Politics in interview
  • Q6. They don't know how to take interview.

Interview Preparation Tips

Interview preparation tips for other job seekers - Better to don't go for interview.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Campus Placement

Round 1 - Coding Test 

Coding round and level was good, one araay question and two dp questions

Round 2 - Technical 

(1 Question)

  • Q1. Interview round was also good, questions asked from stack and queues, puzzle, dbms, sql, and dsa problem
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Move negative elements to right side of array
  • Ans. 

    Move negative elements to right side of array

    • Iterate through the array and swap negative elements to the right side

    • Use two pointers approach to keep track of positive and negative elements

    • Maintain the order of elements while moving negatives to the right side

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. 1 round of hacker rank online test + 2 rounds of technical + 1 managerial round.
  • Q2. Round 1 Q1: Reverse the Linked List
  • Q3. Round 1 Q2: Related to array simply sorting type problems
  • Q4. Level order traversal of tree
  • Ans. 

    Level order traversal of tree is a breadth-first search algorithm to visit all nodes in a tree level by level.

    • Use a queue to keep track of nodes to be visited

    • Enqueue the root node and loop until the queue is empty

    • Dequeue a node, visit it, and enqueue its children

    • Repeat until all nodes have been visited

  • Answered by AI
  • Q5. Round 2 Q1 : Simple design related questions how will you insert bulk data in db, expecting both maintaining consistency as well as without maintaining consistency.

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a easy to medium level interview try to do well in technical round 1 and next will be easier.

Skills evaluated in this interview

I appeared for an interview in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 minutes
Round difficulty - Easy

The test had it's webcam on, we were not allowed to go out of the frame.

  • 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:

    ...
  • Ans. 

    The program calculates the Nth Fibonacci number using a recursive formula.

    • The Fibonacci series starts with 1, 1, and each subsequent number is the sum of the two preceding numbers.

    • The program uses a recursive function to calculate the Nth Fibonacci number.

    • The time complexity of the program is O(2^N), which can be optimized using memoization or dynamic programming.

  • Answered by AI
  • Q2. 

    Longest Consecutive Sequence Problem Statement

    You are provided with an unsorted array/list ARR of N integers. Your task is to determine the length of the longest consecutive sequence present in the array...

  • Ans. 

    The task is to find the length of the longest consecutive sequence in an unsorted array of integers.

    • Sort the array to bring consecutive numbers together

    • Iterate through the sorted array and keep track of the current consecutive sequence length

    • Update the maximum length if a longer sequence is found

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

The interview was online from home.

  • 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:
    "e...
  • Ans. 

    The task is to reverse a given string containing lowercase letters, uppercase letters, digits, and special characters.

    • Iterate through the string from the last character to the first character and append each character to a new string.

    • Alternatively, you can use built-in string reversal functions or methods available in your programming language.

    • To solve the follow-up question with O(1) space complexity, you can use a tw...

  • Answered by AI
Round 3 - HR 

Round duration - 20 minutes
Round difficulty - Easy

This was last round. In this round interviewer ask about me and what i know about company. Also he ask about my projects as well as my future goals . 
The interviewer was very understanding and supportive.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in GurgaonEligibility criteriaNoGreyOrange interview preparation:Topics to prepare for the interview - Data Structures, Object-Oriented Programming, Algorithms, Dynamic programming, Graphs, Operating Systems and Database Management System,Java, MySQL, HTML, CSS, JavaScript, Nodejs, PythonTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Find a good course, and first clear all your fundamentals and implementation of every data structure. You should be thorough with their time as well as space complexities. 
Tip 2 : Upon clearing the fundamentals, select a platform where you have a large no of questions, also whose test cases are good. eg. LeetCode, InterviewBit or Codezen. Go and complete 300-400 questions.
Tip 3 : Also whenever you're not able to solve the problem, check out the editorial and then re-attempt it again. Also, check the discussion if there is some good solution to the same problem.
Tip 4 : For OOPS, DS and programming, I recommend Codezen, Leetcode, InterviewBit and GeeksforGeeks.
Tip 5 : For OS, DBMS and Computer Network, I recommend GateSmasher, Knowledge Gate and TutorialsPoint.

Application resume tips for other job seekers

Tip 1 : Resume should contain facts, numbers, and data comparison.
Tip 2 : Mention only those projects and internships in your resume that you are comfortable with, that is, you can explain to the interviewee.
Tip 3 : Technical achievements in the field you're applying to, would be good.
Tip 4 : DO NOT FAKE THINGS, the interviewer is smart enough.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

Interview Questionnaire 

4 Questions

  • Q1. Core java concepts
  • Q2. Multithreading questions
  • Q3. Previous project details
  • Ans. 

    Developed a web application for managing customer orders and inventory

    • Used Java and Spring framework for backend development

    • Implemented a responsive user interface using HTML, CSS, and JavaScript

    • Integrated with a relational database for data storage and retrieval

    • Implemented authentication and authorization features for secure access

    • Performed unit testing and bug fixing throughout the development process

  • Answered by AI
  • Q4. Java Programs

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in basics and practice coding questions to increase performance and quality of code

Precisely Interview FAQs

How many rounds are there in Precisely Software Engineer interview?
Precisely interview process usually has 3 rounds. The most common rounds in the Precisely interview process are Technical, Resume Shortlist and HR.
How to prepare for Precisely Software Engineer 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 Agile, Computer science, Data Quality, JIRA and Microservices.
What are the top questions asked in Precisely Software Engineer interview?

Some of the top questions asked at the Precisely Software Engineer interview -

  1. It's a technical discussion round 2. Explain about my previous projects, some i...read more
  2. It's a technical 1:1 discussion with a Senior Solution Architect. Resume based ...read more
  3. Oops concept, git commands, Java arraylist and map, java multithreading, rest a...read more

Tell us how to improve this page.

Precisely Software Engineer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more
Precisely Software Engineer Salary
based on 49 salaries
₹8 L/yr - ₹22 L/yr
78% more than the average Software Engineer Salary in India
View more details

Precisely Software Engineer Reviews and Ratings

based on 8 reviews

3.8/5

Rating in categories

4.3

Skill development

4.5

Work-life balance

3.6

Salary

3.9

Job security

4.3

Company culture

2.7

Promotions

3.9

Work satisfaction

Explore 8 Reviews and Ratings
Software Engineer
49 salaries
unlock blur

₹8 L/yr - ₹22 L/yr

Senior Software Engineer 2
46 salaries
unlock blur

₹17 L/yr - ₹38 L/yr

Principal Software Engineer
38 salaries
unlock blur

₹24 L/yr - ₹59 L/yr

Software Engineer Level 1
34 salaries
unlock blur

₹7 L/yr - ₹15 L/yr

Software Engineer2
27 salaries
unlock blur

₹11.8 L/yr - ₹21.8 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