Upload Button Icon Add office photos

Procore

Compare button icon Compare button icon Compare

Filter interviews by

Procore Senior Software Engineer Interview Questions and Answers

Updated 31 May 2025

Procore Senior Software Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. Variations of the knapsack problem 0/1 problem?
  • Ans. 

    The 0/1 knapsack problem involves selecting items with given weights and values to maximize total value without exceeding capacity.

    • The problem is defined by a set of items, each with a weight and value.

    • You can either include an item in the knapsack or exclude it (hence 0/1).

    • Dynamic programming is a common approach to solve this problem efficiently.

    • Example: Given items with weights [1, 2, 3] and values [10, 15, 40], and...

  • Answered by AI
  • Q2. Why use record in Java when you have lombok.
  • Ans. 

    Java records provide a concise way to create immutable data classes, offering built-in features that Lombok cannot fully replicate.

    • Records are immutable by default, ensuring thread safety and reducing bugs related to state changes.

    • Records automatically generate equals(), hashCode(), and toString() methods based on their fields, simplifying code.

    • Records provide a clear and concise syntax for declaring data classes, redu...

  • Answered by AI
  • Q3. Difference between DOM and SAX parsor
  • Ans. 

    DOM is a tree-based parser, while SAX is an event-driven parser for XML data processing.

    • DOM (Document Object Model) loads the entire XML document into memory as a tree structure, allowing random access to elements.

    • SAX (Simple API for XML) reads the XML document sequentially and triggers events (like start and end of elements) without loading the entire document.

    • DOM is suitable for smaller XML files where random access ...

  • Answered by AI
  • Q4. Why to use spring for microservices as it's already easy to maintain
  • Ans. 

    Spring simplifies microservices development with robust features, enhancing maintainability and scalability.

    • Dependency Injection: Spring's IoC container manages dependencies, making code easier to test and maintain.

    • Spring Boot: Rapidly create stand-alone, production-grade Spring applications with minimal configuration.

    • Microservices Support: Spring Cloud provides tools for service discovery, configuration management, an...

  • Answered by AI

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Procore?
Ask anonymously on communities.

Interview questions from similar companies

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

(1 Question)

  • Q1. It was more into problem solving using python

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in GlobalLogic
Q4. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
Q5. If you have to prioritize between coding standards and project de ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Assignment 

Had a take home coding test

Round 2 - Technical 

(2 Questions)

  • Q1. Python questions were asked
  • Q2. Django questions were asked
Round 3 - HR 

(2 Questions)

  • Q1. Basic HR questions were asked
  • Q2. Salary discussion was done

Interview Preparation Tips

Interview preparation tips for other job seekers - Wait for revenues and situation to normalise before joining

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

Interview Questionnaire 

1 Question

  • Q1. All related to project worked on wlan testing and networking concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall Good.
They gave taken 3 technical and 1hr round

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

Interview Questionnaire 

7 Questions

  • Q1. 1) What is volatile? 2) What is constant? 3) Can we use volatile and const at a time?4) What is ISR how it works?
  • Ans. 

    Answers to questions related to software engineering concepts.

    • Volatile is a keyword used to indicate that a variable's value can be changed unexpectedly.

    • Constant is a keyword used to indicate that a variable's value cannot be changed once it is assigned.

    • Volatile and const can be used together to indicate that a variable's value cannot be changed and that it may change unexpectedly.

    • ISR stands for Interrupt Service Routi...

  • Answered by AI
  • Q2. What is pointer? Explain dangling pointer, null pointer, void pointer.
  • Ans. 

    A pointer is a variable that stores the memory address of another variable. Dangling, null, and void pointers are types of pointers.

    • Dangling pointer: a pointer that points to a memory location that has been deallocated or freed

    • Null pointer: a pointer that does not point to any memory location

    • Void pointer: a pointer that has no specific data type and can point to any data type

  • Answered by AI
  • Q3. Storage classes explain all the storage classes in c.
  • Ans. 

    Storage classes in C define the scope and lifetime of variables.

    • auto: default storage class for local variables

    • register: stores variables in CPU registers for faster access

    • static: retains value between function calls

    • extern: used to access global variables across multiple files

  • Answered by AI
  • Q4. Compilation stages.
  • Q5. Projects done at previous company with clear explanation.
  • Ans. 

    Led multiple projects focusing on scalable web applications and microservices architecture, enhancing performance and user experience.

    • Developed a scalable e-commerce platform using React and Node.js, improving load times by 30%.

    • Implemented a microservices architecture for a healthcare application, enabling independent deployment and scaling of services.

    • Optimized an existing legacy system by refactoring code and introdu...

  • Answered by AI
  • Q6. CAN, SPI, I2C, UART differences.
  • Q7. Explain CAN data frame.
  • Ans. 

    CAN data frame is a message format used in Controller Area Network (CAN) protocol.

    • CAN data frame consists of 7 fields: Start of Frame (SOF), Arbitration ID, Control Bits, Data Length Code (DLC), Data Field, Cyclic Redundancy Check (CRC), and End of Frame (EOF).

    • The Arbitration ID field is used to identify the message priority and the source of the message.

    • The Data Field can contain up to 8 bytes of data.

    • The CRC field is...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go through whatever things you have kept on your resume. Go through the project. Practice C as much as possible most of the questions will be asked on C programming.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Sep 2020. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Python program like print day, month and year from current date and fibonacci series
  • Q2. Bluetooth concept basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare only program and basic concepts
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Mar 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. MVVM, struct vs class, method dispatch
Round 2 - Coding Test 

Debugging swift code

Round 3 - One-on-one 

(1 Question)

  • Q1. Behavioral questions - what is hour worst trait regarding work.
  • Ans. 

    My worst trait regarding work is perfectionism.

    • I tend to spend too much time on small details, which can delay project deadlines.

    • I have difficulty delegating tasks because I want everything done perfectly.

    • I can be overly critical of my own work and the work of others.

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. What do you know about ModMed
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Naukri.com

Round 1 - Technical 

(1 Question)

  • Q1. Technical questions that includes coding as well
Round 2 - Technical 

(1 Question)

  • Q1. Technical and Managerial discussion
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Software Engineer Interview Questions & Answers

CyberArk user image Prasad Ashok Ajmire

posted on 29 Feb 2024

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. List tuple python memory management Codig question RestAPIs HTTP methods State Management UI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Implement readers-writer lock
  • Ans. 

    A readers-writer lock allows concurrent access for readers and exclusive access for writers, ensuring data consistency.

    • Readers can access the resource simultaneously, improving performance.

    • Writers require exclusive access, blocking readers during write operations.

    • Use a counter to track active readers and a mutex for writers.

    • Example: In a database, multiple queries can read data while updates are restricted.

  • Answered by AI

Procore Interview FAQs

How to prepare for Procore Senior 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 Procore. The most common topics and skills that interviewers at Procore expect are Healthcare, Web Development, CCTV Monitoring, Data Security and Product Design.
What are the top questions asked in Procore Senior Software Engineer interview?

Some of the top questions asked at the Procore Senior Software Engineer interview -

  1. Why to use spring for microservices as it's already easy to maint...read more
  2. Why use record in Java when you have lomb...read more
  3. variations of the knapsack problem 0/1 probl...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

6-8 weeks 100%
View more
Procore Senior Software Engineer Salary
based on 29 salaries
₹30 L/yr - ₹46.7 L/yr
135% more than the average Senior Software Engineer Salary in India
View more details

Procore Senior Software Engineer Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

5.0

Skill development

4.5

Work-life balance

4.0

Salary

3.0

Job security

4.5

Company culture

3.0

Promotions

3.4

Work satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Senior Software Engineer - Data Platform

Bangalore / Bengaluru

3-7 Yrs

Not Disclosed

Senior Software Engineer

Pune

5-10 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
30 salaries
unlock blur

₹30 L/yr - ₹46.7 L/yr

Software Developer
11 salaries
unlock blur

₹15 L/yr - ₹15.7 L/yr

Software Engineer
8 salaries
unlock blur

₹15 L/yr - ₹16 L/yr

Softwaretest Engineer
8 salaries
unlock blur

₹25 L/yr - ₹28 L/yr

Product Manager
6 salaries
unlock blur

₹24 L/yr - ₹50 L/yr

Explore more salaries
Compare Procore with

Global Edge Software

3.5
Compare

Prometric Testing

3.4
Compare

Upland Software

4.6
Compare

QAD

3.8
Compare
write
Share an Interview