Upload Button Icon Add office photos

Petrus Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Petrus Technologies Interview Questions and Answers

Updated 29 Apr 2025
Popular Designations

Petrus Technologies Interview Experiences

5 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. Project worked in previous

Quality Head Interview Questions & Answers

user image Siva Prasad RV

posted on 29 Apr 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Knowing work history
  • Q2. Achivements during the career
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Its easy will ask about redux

Round 2 - One-on-one 

(5 Questions)

  • Q1. Its easy they will ask you about previous experience
  • Q2. Intro about yourself
  • Q3. Explain about previous project
  • Q4. How did you overcome your problem in previous project
  • Q5. Types of state management
  • Ans. 

    Types of state management include local state, global state, and session state.

    • Local state is managed within a component and is not shared with other components.

    • Global state is managed at a higher level and can be accessed by multiple components.

    • Session state is stored temporarily for a user session and is typically cleared when the session ends.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Got Selected

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. About experience
  • Ans. 

    I have over 10 years of experience in design engineering, specializing in product development and project management.

    • Led a team in designing a new consumer electronics product, resulting in a 20% increase in market share.

    • Implemented CAD software to streamline the design process, reducing project timelines by 15%.

    • Collaborated with cross-functional teams to ensure designs met both aesthetic and functional requirements.

    • Co...

  • Answered by AI

Software Developer Trainee Interview Questions & Answers

user image SRI HARIESH K.G 20CSR206

posted on 22 Jan 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic and easy questions

Round 2 - Technical 

(2 Questions)

  • Q1. Data structure-stack and queue
  • Q2. Css box model,sql quries,sql injection,project works

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Petrus Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Walk-in and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

9 Questions

  • Q1. Tell me about yourself
  • Q2. Process details
  • Q3. Company information
  • Q4. Tell me about yourself
  • Q5. Process details
  • Q6. Company information
  • Q7. Tell me about yourself
  • Q8. Process details
  • Q9. Company information

Interview Preparation Tips

Interview preparation tips for other job seekers - Be frank and give proper answers

I applied via Naukri.com and was interviewed before Jun 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Financial domain

Interview Preparation Tips

Interview preparation tips for other job seekers - Listen to questions and only answer that.Dont get overexcited.Take a deep breath
Are these interview questions helpful?

I applied via Campus Placement and was interviewed before Mar 2021. There were 4 interview rounds.

Round 1 - Coding Test 

90 minute test on hacker rank consisting of 3 coding questions all of medium difficulty. Most candidates are required to solve more than 1 question.

Round 2 - Technical 

(3 Questions)

  • Q1. Questions on concepts of OOPS and Operating Systems.
  • Q2. Find least common ancestor of a binary tree.
  • Ans. 

    Find the lowest common ancestor of a binary tree.

    • Traverse the tree recursively from the root node.

    • If the current node is null or matches either of the given nodes, return the current node.

    • Recursively search for the nodes in the left and right subtrees.

    • If both nodes are found in different subtrees, return the current node.

    • If both nodes are found in the same subtree, continue the search in that subtree.

  • Answered by AI
  • Q3. Find first missing positive integer from an array for non-negative integers.
  • Ans. 

    Find first missing positive integer from an array of non-negative integers.

    • Create a hash set to store all positive integers in the array

    • Loop through the array and add all positive integers to the hash set

    • Loop through positive integers starting from 1 and return the first missing integer not in the hash set

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Design a parking lot
  • Ans. 

    Design a parking lot

    • Consider the size and capacity of the parking lot

    • Decide on the layout and organization of parking spaces

    • Implement a system to manage parking availability and reservations

    • Include features like ticketing, payment, and security

    • Consider scalability and future expansion

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Given a grid which represents an ocean( For all index i,j if mat[i][j] = 1 is island and mat[i][j] = 0 means water). Find the island with largest area.
  • Ans. 

    Find the largest island area in a grid representing an ocean using DFS or BFS.

    • Use Depth-First Search (DFS) or Breadth-First Search (BFS) to explore the grid.

    • Mark visited cells to avoid counting them multiple times.

    • Count the size of each island during the traversal.

    • Example: For a grid [[1,0,0],[1,1,0],[0,0,1]], the largest island has area 3.

    • Keep track of the maximum area found during the exploration.

  • Answered by AI
  • Q2. Given list of strings group them into distinct anagrams.
  • Ans. 

    Group list of strings into distinct anagrams.

    • Create a hash table with sorted string as key and list of anagrams as value.

    • Iterate through the list of strings and add each string to its corresponding anagram list in the hash table.

    • Return the values of the hash table as a list of lists.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Arcesium Senior Software Engineer interview:
  • Low Level Design
  • Object Oriented Programming
  • Data Structures
  • Algorithms
  • DBMS
Interview preparation tips for other job seekers - Focus on Data Structures & Algorithms and Low Level Designing. Some brushup of DBMS will also help.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Standard Aptitude topics, 30 mins - 30 questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Case Study for how to design a data Lake ? standard questions - tell me about yourself, why us
  • Q2. Case Study for how to design a chess game
  • Ans. 

    Designing a chess game involves defining rules, user interface, and game mechanics for an engaging experience.

    • Define the rules: Standard chess rules include piece movement, check, checkmate, and stalemate.

    • User interface: Create a visually appealing board and pieces, with options for 2D or 3D views.

    • Game mechanics: Implement turn-based play, timers, and difficulty levels for AI opponents.

    • Multiplayer options: Allow for on...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Quantiphi Analytics Solutions Private Limited Intern interview:
  • SQL
  • Java
Interview preparation tips for other job seekers - Easy, They want to check for approach and ability of the candidate

I appeared for an interview in Aug 2021.

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 - One-on-one 

(1 Question)

  • Q1. What you do and how you can sell the product to customer
  • Ans. 

    I understand the customer's needs and demonstrate how our product can meet those needs, highlighting its unique features and benefits.

    • Listen actively to the customer's needs and concerns

    • Explain how our product can solve their problems or meet their needs

    • Highlight the unique features and benefits of our product

    • Provide examples of how our product has helped other customers

    • Address any objections or concerns the customer m...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Dotpe is a company where the management will say somethink else at the time of interview and when you get on board there points get changes . There is lot and lot of sales pressure and if you dont get a sale in a week they will put you on PIP and the management even dont help you how to geg out of PIP

Petrus Technologies Interview FAQs

How many rounds are there in Petrus Technologies interview?
Petrus Technologies interview process usually has 1-2 rounds. The most common rounds in the Petrus Technologies interview process are Technical, One-on-one Round and Aptitude Test.
How to prepare for Petrus Technologies 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 Petrus Technologies. The most common topics and skills that interviewers at Petrus Technologies expect are Analytics, Analytical, Python, Social Media and Design Engineering.
What are the top questions asked in Petrus Technologies interview?

Some of the top questions asked at the Petrus Technologies interview -

  1. Types of state managem...read more
  2. Project worked in previ...read more
  3. css box model,sql quries,sql injection,project wo...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.5/5

based on 6 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 50%
2-4 weeks 50%
View more

Interview Questions from Similar Companies

CMS IT Services Interview Questions
3.1
 • 146 Interviews
iMerit Interview Questions
3.3
 • 108 Interviews
Arcesium Interview Questions
3.5
 • 85 Interviews
QualiZeal Interview Questions
4.3
 • 59 Interviews
Mavenir Systems Interview Questions
3.4
 • 58 Interviews
DotPe Interview Questions
3.1
 • 42 Interviews
NexTurn Interview Questions
4.1
 • 34 Interviews
View all

Petrus Technologies Reviews and Ratings

based on 26 reviews

3.7/5

Rating in categories

3.2

Skill development

4.1

Work-life balance

3.4

Salary

3.8

Job security

3.6

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 26 Reviews and Ratings
Data Engineer

Coimbatore

3-8 Yrs

Not Disclosed

IoT Developer

Chennai,

Coimbatore

+1

5-10 Yrs

Not Disclosed

Web Developer

Coimbatore

3-8 Yrs

Not Disclosed

Explore more jobs
Design Engineer
51 salaries
unlock blur

₹3.2 L/yr - ₹6 L/yr

Engineer
33 salaries
unlock blur

₹2.8 L/yr - ₹7 L/yr

Software Engineer
21 salaries
unlock blur

₹5 L/yr - ₹6.4 L/yr

Senior Engineer
19 salaries
unlock blur

₹3.2 L/yr - ₹9.2 L/yr

Senior Software Engineer
12 salaries
unlock blur

₹11.6 L/yr - ₹18 L/yr

Explore more salaries
Compare Petrus Technologies with

CMS IT Services

3.1
Compare

iMerit

3.3
Compare

Quantiphi Analytics Solutions Private Limited

3.2
Compare

Hapag-Lloyd

3.8
Compare
write
Share an Interview