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

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Bentley Systems Associate Software Engineer Interview Questions, Process, and Tips

Updated 15 Jan 2025

Top Bentley Systems Associate Software Engineer Interview Questions and Answers

  • Q1. Write a function to swap. What exceptions it may throw?
  • Q2. What data structures would you use to save images?
  • Q3. Difference Between Arrays and LinkedLists. Cons and Pros of Using Them. Which Out of Both Would be Preferable in Different Situations ?
View all 14 questions

Bentley Systems Associate Software Engineer Interview Experiences

6 interviews found

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

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
asked in Gainsight
Q2. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more
Q3. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
Q5. Ninja and Alternating Largest Problem Statement Ninja is given a ... read more
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
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.

Bentley Systems interview questions for designations

 Associate Software Developer

 (1)

 Software Engineer

 (1)

 Software Developer Intern

 (1)

 Senior Software Quality Analyst

 (1)

 Software Engineer Intern Trainee

 (2)

 Softwaretest Engineer

 (1)

 Graduate Engineer

 (1)

 Technical Support Engineer

 (1)

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all Resume tips
Round 2 - Coding Test 

1 hour for 2 coding questions on Codility Platform

Round 3 - Coding Test 

(1 Question)

  • Q1. Coding questions on Codility Platform (on-site)

Get interview-ready with Top Bentley Systems Interview Questions

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

I applied via CoCubes and was interviewed before Dec 2021. There were 5 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 Resume tips
Round 2 - Coding Test 

There were some basic aptitude questions and OOP questions as MCQs. At the end there was a simple conding question.

Round 3 - Technical 

(2 Questions)

  • Q1. What is pre/post increment/decrement operator?
  • 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 valu...

  • Answered by AI
  • Q2. Projects worked on Internships
  • Ans. 

    I have worked on various projects and internships during my time as a software engineer.

    • Developed a web application for a retail company to manage inventory and sales.

    • Collaborated with a team to create a mobile app for a healthcare startup to track patient vitals.

    • Implemented a machine learning algorithm for a research project in the field of natural language processing.

    • Optimized database queries and improved performanc...

  • Answered by AI
Round 4 - Technical 

(3 Questions)

  • Q1. Program to find middle of a 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

  • Answered by AI
  • Q2. Discussion on projects and internships
  • Q3. Other simple DSA questions
Round 5 - Technical 

(3 Questions)

  • Q1. What data structures would you use to save images?
  • Ans. 

    I would use a binary format like JPEG or PNG to save images.

    • JPEG and PNG are common binary formats used to save images.

    • These formats use compression to reduce file size without losing quality.

    • Other options include BMP, GIF, and TIFF, but they may not be as efficient.

    • Images can also be saved as arrays of pixels or as vectors, depending on the type of image.

    • The choice of data structure depends on the specific use case an

  • Answered by AI
  • Q2. Write a function to swap. What exceptions it may 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

  • Answered by AI
  • Q3. System design of 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

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Bentley Systems Associate Software Engineer interview:
  • C
  • C++
  • Javascript
  • React.Js
  • C#
Interview preparation tips for other job seekers - Keep your fundamentals strong. Do some projects. Have good communication.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Referral and was interviewed in Sep 2022. There were 4 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Questions regarding oops concept
Round 3 - Technical 

(1 Question)

  • Q1. Implement atoi , and just basic programming questions
Round 4 - HR 

(1 Question)

  • Q1. Why u want to join siemens and salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Try for better companies , tech is quite old not good for fresher even though salary is good
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

1 hour, around 40 questions on well known aptitude topics.

Round 2 - Coding Test 

Simple questions - overlapping area, bit manipulation

Round 3 - Technical 

(1 Question)

  • Q1. Simple program on printing even numbers, optimizing the code. Interviewer wanted to test your logical ability.
Round 4 - Behavioral 

(1 Question)

  • Q1. Three facts about you, you haven't mentioned in resume, why should we hire you etc..
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - Aptitude Test 

Interviewed as part of college placements, first round consisted of aptitude and CS related MCQs;

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and explain in detail about your passion for CS.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all Resume tips
Round 2 - Assignment 

20 MCQs, 1 RestAPI Problem, 1 Dp problem

Round 3 - One-on-one 

(1 Question)

  • Q1. Graphs, RestAPI, Linked list, Puzzle
Contribute & help others!
anonymous
You can choose to be anonymous

Bentley Systems Interview FAQs

How many rounds are there in Bentley Systems Associate Software Engineer 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 Resume Shortlist.
How to prepare for Bentley Systems Associate 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 Bentley Systems. The most common topics and skills that interviewers at Bentley Systems expect are Coding, Recruitment, Android, Azure and C.
What are the top questions asked in Bentley Systems Associate Software Engineer interview?

Some of the top questions asked at the Bentley Systems Associate Software Engineer interview -

  1. Write a function to swap. What exceptions it may thr...read more
  2. What data structures would you use to save imag...read more
  3. Difference Between Arrays and LinkedLists. Cons and Pros of Using Them. Which O...read more

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

INTERVIEWS

Desire Energy Solution

No Interviews

INTERVIEWS

Mobikwik

10 top interview questions

INTERVIEWS

JPMorgan Chase & Co.

No Interviews

INTERVIEWS

Axtria

No Interviews

INTERVIEWS

Toshiba Software India

No Interviews

Tell us how to improve this page.

Bentley Systems Associate Software Engineer Interview Process

based on 8 interviews

3 Interview rounds

  • Coding Test Round - 1
  • Coding Test Round - 2
  • Technical Round
View more
Join Bentley Systems Providing software that advances the world’s infrastructure.

Fast track your campus placements

View all
Bentley Systems Associate Software Engineer Salary
based on 44 salaries
₹5 L/yr - ₹11.5 L/yr
63% more than the average Associate Software Engineer Salary in India
View more details

Bentley Systems Associate Software Engineer Reviews and Ratings

based on 7 reviews

3.9/5

Rating in categories

3.3

Skill development

3.9

Work-life balance

3.2

Salary

3.5

Job security

4.0

Company culture

2.8

Promotions

3.7

Work satisfaction

Explore 7 Reviews and Ratings
Software Engineer Level 1
88 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
51 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
44 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Support Engineer
41 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer II
33 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Bentley Systems with

Autodesk

4.2
Compare

Dassault Systemes

4.0
Compare

Siemens PLM Software

4.2
Compare

Trimble

4.2
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent