Premium Employer

i

This company page is being actively managed by Bentley Systems Team. If you also belong to the team, you can get access from here

Bentley Systems Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Bentley Systems Interview Questions and Answers

Updated 29 Mar 2025
Popular Designations

21 Interview questions

A Graduate Engineer was asked 6mo ago
Q. Create a class, constructor, and demonstrate inheritance with various scenarios.
Ans. 

Demonstrating class creation, constructors, and inheritance in object-oriented programming.

  • Class Definition: A blueprint for creating objects. Example: class Vehicle { }

  • Constructor: A special method to initialize objects. Example: class Car { constructor(make) { this.make = make; } }

  • Inheritance: A mechanism to create a new class from an existing class. Example: class ElectricCar extends Car { }

  • Method Overriding: R...

View all Graduate Engineer interview questions
A Software Engineer Intern Trainee was asked 7mo ago
Q. Explain the four pillars of OOP.
Ans. 

The 4 pillars of OOP are encapsulation, inheritance, polymorphism, and abstraction.

  • Encapsulation: Bundling data and methods that operate on the data into a single unit.

  • Inheritance: Allowing a class to inherit properties and behavior from another class.

  • Polymorphism: The ability for objects to be treated as instances of their parent class.

  • Abstraction: Hiding the complex implementation details and showing only the ne...

View all Software Engineer Intern Trainee interview questions
An Associate Software Engineer was asked 12mo ago
Q. Explain OOPS concepts with examples.
Ans. 

Oops concepts are fundamental principles of object-oriented programming.

  • Encapsulation: bundling data and methods that operate on the data into a single unit (class)

  • Inheritance: allows a class to inherit properties and behavior from another class

  • Polymorphism: ability to present the same interface for different data types

  • Abstraction: hiding the complex implementation details and showing only the necessary features

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. Is Function Overloading the Only Example of Compile Time Polymorphism?
Ans. 

No, Function Overloading is not the only example of Compile Time Polymorphism.

  • Function Templates are another example of Compile Time Polymorphism where a single function can operate on different data types.

  • Operator Overloading is also an example of Compile Time Polymorphism where operators can be overloaded to work with different data types.

  • Static Polymorphism achieved through method overloading is another example...

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. Reverse a String without using any loop or any other data structure.
Ans. 

Use recursion to reverse the string without using loops or other data structures.

  • Create a recursive function that takes the string as input.

  • In the function, check if the string is empty or has only one character, return the string in that case.

  • Otherwise, call the function recursively with the substring excluding the first character and concatenate the first character at the end.

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. How do you approach writing base and different test cases for a given problem statement?
Ans. 

Creating test cases involves identifying base cases and edge cases to ensure software reliability and correctness.

  • Identify base cases: Test with standard inputs, e.g., for a function calculating square, test with 2 (expected output: 4).

  • Consider edge cases: Test with extreme values, e.g., for an array sorting function, test with an empty array (expected output: []).

  • Include negative cases: Test with invalid inputs, ...

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. Describe the system design for a carrom board game.
Ans. 

Designing a carrom board game system

  • Define game rules and mechanics

  • Create game board and pieces

  • Implement player turns and scoring system

  • Include AI for single player mode

  • Consider multiplayer options and networking

  • Test and debug thoroughly

View all Associate Software Engineer interview questions
Are these interview questions helpful?
An Associate Software Engineer was asked
Q. What are pre-increment, post-increment, pre-decrement, and post-decrement operators?
Ans. 

Pre/post increment/decrement operators are used to increase/decrease the value of a variable by 1.

  • Pre-increment operator (++x) increases the value of x by 1 before using it in an expression.

  • Post-increment operator (x++) increases the value of x by 1 after using it in an expression.

  • Pre-decrement operator (--x) decreases the value of x by 1 before using it in an expression.

  • Post-decrement operator (x--) decreases the...

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. Given a singly linked list, find the middle of the linked list.
Ans. 

Program to find middle of a linked list

  • Traverse the linked list using two pointers, one moving twice as fast as the other

  • When the faster pointer reaches the end, the slower pointer will be at the middle

  • Handle even and odd length linked lists separately

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. Write a function to swap two variables. What exceptions might it throw?
Ans. 

Function to swap two variables and possible exceptions

  • Function should take two variables as input

  • Use a temporary variable to swap the values

  • Possible exceptions include null pointer exception or out of bounds exception

View all Associate Software Engineer interview questions

Bentley Systems Interview Experiences

21 interviews found

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

It was good. The platform could be better.

Round 2 - Technical 

(1 Question)

  • Q1. Explain code from Round 1
  • Ans. 

    The code from Round 1 involved implementing a sorting algorithm in Python.

    • Implemented a sorting algorithm in Python

    • Used concepts like loops, conditionals, and list manipulation

    • Example: Implemented bubble sort or selection sort

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Question about Tree and Linked List.
Round 4 - Technical 

(1 Question)

  • Q1. Questions from OOPs, DBs. Practical questions
Round 5 - HR 

(1 Question)

  • Q1. Create class, constructor, inheritance various scenarios related to that
  • Ans. 

    Demonstrating class creation, constructors, and inheritance in object-oriented programming.

    • Class Definition: A blueprint for creating objects. Example: class Vehicle { }

    • Constructor: A special method to initialize objects. Example: class Car { constructor(make) { this.make = make; } }

    • Inheritance: A mechanism to create a new class from an existing class. Example: class ElectricCar extends Car { }

    • Method Overriding: Redefi...

  • Answered by AI
Round 6 - HR 

(1 Question)

  • Q1. HR questions like goals, aspirations etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be familiar with basics.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

A good, basic understanding will suffice.

Round 2 - Technical 

(1 Question)

  • Q1. Questions about OOPs, DBMS. Fundamental understanding will work
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Feb 2024. There were 4 interview rounds.

Round 1 - Coding Test 

First Round was Coding Test On Codility Platform . 3 Questions were Asked On Medium to Hard Level Arrays and Strings Topics.

Round 2 - Technical 

(4 Questions)

  • Q1. Questions on the Approach of Solving the 1st Round Coding Problems.
  • Q2. Questions on String Methods , Questions on String Palindrome and Substrings Palindrome.
  • Q3. Sorting Techniques on Arrays , Questions on Two-Dimensional Arrays.
  • Q4. Questions on Writing Base and Different Test Cases as per the Mentioned Problem Statement Given.
  • Ans. 

    Creating test cases involves identifying base cases and edge cases to ensure software reliability and correctness.

    • Identify base cases: Test with standard inputs, e.g., for a function calculating square, test with 2 (expected output: 4).

    • Consider edge cases: Test with extreme values, e.g., for an array sorting function, test with an empty array (expected output: []).

    • Include negative cases: Test with invalid inputs, e.g.,...

  • Answered by AI
Round 3 - Technical 

(8 Questions)

  • Q1. Pillars of Object Oriented Programming. Real Life Example of Pillars of OOPS.
  • Ans. 

    Pillars of OOP are Inheritance, Encapsulation, Abstraction, and Polymorphism. Real life example: Vehicles.

    • Inheritance: Car and Bike classes inheriting from Vehicle class.

    • Encapsulation: Data hiding in a class to protect it from outside interference.

    • Abstraction: Using a remote control to operate a TV without knowing its internal workings.

    • Polymorphism: Overloading a method with different parameters in a class.

  • Answered by AI
  • Q2. Is Function Overloading the Only Example of Compile Time Polymorphism ?
  • Ans. 

    No, Function Overloading is not the only example of Compile Time Polymorphism.

    • Function Templates are another example of Compile Time Polymorphism where a single function can operate on different data types.

    • Operator Overloading is also an example of Compile Time Polymorphism where operators can be overloaded to work with different data types.

    • Static Polymorphism achieved through method overloading is another example of C...

  • Answered by AI
  • Q3. Difference Between Arrays and LinkedLists. Cons and Pros of Using Them. Which Out of Both Would be Preferable in Different Situations ?
  • Ans. 

    Arrays store elements in contiguous memory locations, while LinkedLists store elements in nodes with pointers to the next element.

    • Arrays have constant time access to elements using index, while LinkedLists have O(n) access time as they need to traverse from the beginning.

    • Arrays have fixed size, while LinkedLists can dynamically grow and shrink in size.

    • Arrays are better for random access and search operations, while Lin...

  • Answered by AI
  • Q4. Creating LinkedList Class , Insertion and Deletion in a LinkedList , Reversing and Sorting a LinkedList , Questions on Circular Linked List.
  • Ans. 

    Answering questions related to LinkedList operations and Circular LinkedList.

    • LinkedList Class: Implement a class with nodes containing data and a reference to the next node.

    • Insertion: Add a new node at the beginning, end, or at a specific position in the LinkedList.

    • Deletion: Remove a node by updating references to skip over it.

    • Reversing: Traverse the LinkedList and reverse the links between nodes.

    • Sorting: Implement a s...

  • Answered by AI
  • Q5. Questions Based on Binary Trees , Binary Search Trees and Recursion.
  • Q6. Reverse a String without Using Any Loop or Using Any Other Data Structure.
  • Ans. 

    Use recursion to reverse the string without using loops or other data structures.

    • Create a recursive function that takes the string as input.

    • In the function, check if the string is empty or has only one character, return the string in that case.

    • Otherwise, call the function recursively with the substring excluding the first character and concatenate the first character at the end.

  • Answered by AI
  • Q7. Program to Find the Maximum Occurring Number in an Array. Which Data Structure can be Used for Making the Code More Efficient ?
  • Ans. 

    Use a hashmap to store frequency of each number in the array for efficient retrieval of maximum occurring number.

    • Use a hashmap to store the frequency of each number in the array.

    • Iterate through the array and update the frequency count in the hashmap.

    • Find the number with the highest frequency in the hashmap to get the maximum occurring number.

  • Answered by AI
  • Q8. What is Multi-Threading in Java ? What are Generics ?
  • Ans. 

    Multi-Threading in Java allows multiple threads to execute concurrently. Generics in Java enable type-safe collections and classes.

    • Multi-Threading in Java allows for concurrent execution of multiple threads.

    • Generics in Java enable type-safe collections and classes by allowing the use of parameterized types.

    • Example of Multi-Threading: creating a new thread using the Thread class and implementing the run() method.

    • Example...

  • Answered by AI
Round 4 - HR 

(4 Questions)

  • Q1. Questions Based on Resume , Skills and Projects.
  • Q2. Why Bentley Systems ?
  • Ans. 

    Bentley Systems is a global leader in infrastructure engineering software, providing innovative solutions for sustainable development.

    • Bentley Systems offers cutting-edge technology and tools for infrastructure engineering projects.

    • The company has a strong reputation for innovation and sustainability in the industry.

    • Bentley Systems has a global presence, providing opportunities to work on diverse projects around the wor...

  • Answered by AI
  • Q3. Questions Based on Previous Employment and Internships.
  • Q4. How Soon You Can Join Us ?

Skills evaluated in this interview

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

They asked two medium level coding questions.

Round 2 - One-on-one 

(1 Question)

  • Q1. Explain 4 pillars of OOP.
  • Ans. 

    The 4 pillars of OOP are encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Allowing a class to inherit properties and behavior from another class.

    • Polymorphism: The ability for objects to be treated as instances of their parent class.

    • Abstraction: Hiding the complex implementation details and showing only the necessa...

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain yourself
  • Ans. 

    I am a dedicated and experienced Technical Support Executive with a strong background in troubleshooting and customer service.

    • Experienced in providing technical support to customers via phone, email, and chat

    • Proficient in troubleshooting hardware and software issues

    • Strong communication and problem-solving skills

    • Ability to work under pressure and meet deadlines

    • Certified in ITIL and other relevant certifications

  • Answered by AI
  • Q2. How much do you know about the product
  • Ans. 

    I have a comprehensive understanding of the product, including its features, functionalities, and troubleshooting techniques.

    • I have undergone extensive training on the product

    • I have hands-on experience using the product in real-life scenarios

    • I am familiar with common issues and their solutions related to the product

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain why you want to join
  • Ans. 

    I am passionate about helping customers solve technical issues and enjoy working in a fast-paced environment.

    • Passionate about troubleshooting technical issues

    • Enjoy working in a fast-paced environment

    • Excited about the opportunity to help customers

  • Answered by AI
  • Q2. Explain where do want to go in next 5 years
  • Ans. 

    In the next 5 years, I aim to advance my technical skills, take on more responsibilities, and potentially move into a leadership role within the company.

    • Continuously upgrade my technical knowledge through training and certifications

    • Seek opportunities to lead projects and teams to develop my leadership skills

    • Work towards becoming a subject matter expert in technical support

    • Build strong relationships with colleagues and ...

  • Answered by AI
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

It was for 2 hours, there were 3 questions

Round 2 - Coding Test 

On-paper test which had to be appeared from Kolkata

Round 3 - Technical 

(1 Question)

  • Q1. Mainly based on JS and oops
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

3 question . . . . . . . . . . .

Round 2 - Coding Test 

2 questions . . . . . . . .

Round 3 - Technical 

(2 Questions)

  • Q1. Oops . . . . . .
  • Q2. Projects . . . . . .. .
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was a 75 mins coding round with array strings and matrix problem were there

Round 2 - Coding Test 

Round 2 was another coding round with graph and arrays questions were there

Round 3 - Technical 

(3 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for software development.

    • Recent graduate with a degree in Computer Science

    • Passionate about software development

    • Experience with programming languages like Java and Python

  • Answered by AI
  • Q2. Oops concepts explain with examples
  • Ans. 

    Oops concepts are fundamental principles of object-oriented programming.

    • Encapsulation: bundling data and methods that operate on the data into a single unit (class)

    • Inheritance: allows a class to inherit properties and behavior from another class

    • Polymorphism: ability to present the same interface for different data types

    • Abstraction: hiding the complex implementation details and showing only the necessary features

  • Answered by AI
  • Q3. Projects explain with role

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - All rounder 

(1 Question)

  • Q1. Discipline and timeing frist in my life and hard working thankyou sir 🙏
Round 2 - HR 

(3 Questions)

  • Q1. I am very hard working person sir 🙏
  • Q2. What is the next question ❓
  • Q3. Workig fast in morning 🌄 in all campus areas
Round 3 - One-on-one 

(1 Question)

  • Q1. Every time and day cleand all areas

Interview Preparation Tips

Topics to prepare for Bentley Systems Housekeeping Supervisor interview:
  • Housekeeping
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jan 2024. There were 4 interview rounds.

Round 1 - Coding Test 

I received easy to medium LeetCode questions, which focused on basic math and hash maps.

Round 2 - Technical 

(1 Question)

  • Q1. Discussion on resume, told me to design database tables and classes for an ordering system.
Round 3 - Technical 

(1 Question)

  • Q1. Again discussion on resume projects and current ongoing internship.
Round 4 - HR 

(2 Questions)

  • Q1. What you know about the company?
  • Ans. 

    The company is a leading software development firm specializing in creating innovative solutions for various industries.

    • Specializes in creating innovative software solutions

    • Works with various industries such as healthcare, finance, and technology

    • Known for their strong focus on quality and customer satisfaction

  • Answered by AI
  • Q2. Tell your interests outside study.
  • Ans. 

    I enjoy playing musical instruments, reading books, and hiking in my free time.

    • Playing musical instruments like guitar and piano

    • Reading books on various topics such as technology and fiction

    • Hiking in nature trails and exploring new places

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Bentley Systems Associate Software Engineer interview:
  • OOPS
  • DSA
  • Database
  • Operating Systems
Interview preparation tips for other job seekers - Prepare DSA well so that you can solve medium Leetcode questions. Don't forget to brush up on CS core subjects and be prepared to answer any question from your resume.

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 Bentley Systems?
Ask anonymously on communities.

Bentley Systems Interview FAQs

How many rounds are there in Bentley Systems interview?
Bentley Systems interview process usually has 3-4 rounds. The most common rounds in the Bentley Systems interview process are Technical, Coding Test and HR.
How to prepare for Bentley Systems 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 Bentley Systems. The most common topics and skills that interviewers at Bentley Systems expect are Microstation, Simulation, Project Delivery, Recruitment and Construction Management.
What are the top questions asked in Bentley Systems interview?

Some of the top questions asked at the Bentley Systems interview -

  1. Write a function to swap. What exceptions it may thr...read more
  2. If there is any bug/defect leakage, how will you tackle that situation and what...read more
  3. What data structures would you use to save imag...read more
What are the most common questions asked in Bentley Systems HR round?

The most common HR questions asked in Bentley Systems interview are -

  1. Tell me about yourse...read more
  2. Where do you see yourself in 5 yea...read more
  3. Why are you looking for a chan...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.4/5

based on 22 interview experiences

Difficulty level

Easy 13%
Moderate 75%
Hard 13%

Duration

Less than 2 weeks 25%
2-4 weeks 38%
4-6 weeks 13%
6-8 weeks 13%
More than 8 weeks 13%
View more
Join Bentley Systems Providing software that advances the world’s infrastructure.

Interview Questions from Similar Companies

Oracle Cerner Interview Questions
3.7
 • 161 Interviews
Thomson Reuters Interview Questions
4.1
 • 124 Interviews
ServiceNow Interview Questions
4.1
 • 124 Interviews
Amadeus Interview Questions
3.8
 • 115 Interviews
UKG Interview Questions
3.1
 • 111 Interviews
Atlassian Interview Questions
3.4
 • 91 Interviews
Temenos Interview Questions
3.1
 • 90 Interviews
Wolters Kluwer Interview Questions
3.9
 • 87 Interviews
Nutanix Interview Questions
3.8
 • 79 Interviews
View all

Bentley Systems Reviews and Ratings

based on 157 reviews

4.3/5

Rating in categories

4.0

Skill development

4.5

Work-life balance

3.9

Salary

4.1

Job security

4.3

Company culture

3.6

Promotions

4.0

Work satisfaction

Explore 157 Reviews and Ratings
Manager , Software Development

Pune

5-10 Yrs

Not Disclosed

Senior Software Engineer

Pune

5-10 Yrs

Not Disclosed

Senior Partner Development Manager

New Delhi

5-7 Yrs

Not Disclosed

Explore more jobs
Software Engineer Level 1
86 salaries
unlock blur

₹6.2 L/yr - ₹18.5 L/yr

Software Engineer
54 salaries
unlock blur

₹6 L/yr - ₹16.8 L/yr

Technical Support Engineer
53 salaries
unlock blur

₹9.6 L/yr - ₹15.4 L/yr

Associate Software Engineer
52 salaries
unlock blur

₹6 L/yr - ₹11.5 L/yr

Software Quality Analyst
48 salaries
unlock blur

₹8.1 L/yr - ₹22 L/yr

Explore more salaries
Compare Bentley Systems with

Thomson Reuters

4.1
Compare

Oracle Cerner

3.6
Compare

Temenos

3.1
Compare

Amadeus

3.8
Compare
write
Share an Interview