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

Updated 29 Mar 2025
Popular Designations

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

  • Ex...

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. 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: Implemen...

View all Associate Software Engineer interview questions
Are these interview questions helpful?
An Associate Software Engineer was asked
Q. 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.

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. 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.

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. 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, whil...

View all Associate Software Engineer interview questions

Bentley Systems Interview Experiences for Freshers

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

I applied via Campus Placement and was interviewed in Oct 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 tips
Round 2 - Coding Test 

3 Questions of medium to easy level.

Round 3 - Technical 

(2 Questions)

  • Q1. Details about project?
  • Ans. 

    Developed a web application for managing inventory and sales

    • Used HTML, CSS, and JavaScript for the frontend

    • Implemented a RESTful API using Node.js and Express.js for the backend

    • Utilized a MySQL database for storing and retrieving data

    • Implemented authentication and authorization using JSON Web Tokens (JWT)

    • Implemented features like product search, order management, and reporting

  • Answered by AI
  • Q2. DBMS and OOPs concept related questions
Round 4 - Technical 

(1 Question)

  • Q1. General discussion about C++ and tech stacks with which the company works with.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep the basics clear and learn C++ if not because they prefer C++ over Java.

I applied via Walk-in and was interviewed in Jan 2022. There were 6 interview rounds.

Round 1 - Coding Test 

Coding test purely on DSA. Platform was Codility. Four programming questions in two hours. Difficulty level was a bit above medium.

Round 2 - Coding Test 

Those who cleared first coding test were called to the Pune office. Again a coding test. Two Questions in 55mins. Same platform.

Round 3 - HR 

(4 Questions)

  • Q1. Tell me about yourself.
  • Ans. 

    I am a passionate software developer with experience in various programming languages and a strong problem-solving skills.

    • Experienced in Java, C++, and Python

    • Proficient in web development using HTML, CSS, and JavaScript

    • Strong understanding of data structures and algorithms

    • Worked on projects involving database management and API integration

    • Excellent communication and teamwork skills

  • Answered by AI
  • Q2. Your entire background.
  • Ans. 

    I have a strong background in software development with experience in various programming languages and technologies.

    • Bachelor's degree in Computer Science

    • 3 years of experience as a software developer

    • Proficient in Java, C++, and Python

    • Familiarity with web development using HTML, CSS, and JavaScript

    • Experience with database management systems like MySQL

    • Knowledge of software development methodologies like Agile

    • Strong probl...

  • Answered by AI
  • Q3. Previous projects and internships.
  • Ans. 

    I have worked on various projects and internships related to software development.

    • Developed a web application using HTML, CSS, and JavaScript.

    • Created a mobile app using React Native.

    • Interned at a software company and contributed to the development of a CRM system.

    • Worked on a team project to build a database management system using SQL.

  • Answered by AI
  • Q4. Role you're interested in.
  • Ans. 

    I am interested in the role of Associate Software Developer.

    • I have a strong background in programming languages such as Java, C++, and Python.

    • I have experience in developing web applications using frameworks like React and Angular.

    • I am familiar with software development methodologies such as Agile and Scrum.

    • I enjoy problem-solving and finding efficient solutions to complex technical challenges.

  • Answered by AI
Round 4 - Technical 

(5 Questions)

  • Q1. Tell me about yourself and your background.
  • Ans. 

    I am a software developer with a strong background in programming and problem-solving.

    • Bachelor's degree in Computer Science

    • Experience in developing web applications using Java and JavaScript

    • Proficient in database management systems like MySQL

    • Strong analytical and problem-solving skills

    • Ability to work well in a team and meet deadlines

  • Answered by AI
  • Q2. Questions on previous projects & internships.
  • Q3. Questions based on the entire resume
  • Q4. Deep dive in the DSA.
  • Ans. 

    DSA stands for Data Structures and Algorithms, which are fundamental concepts in computer science.

    • DSA is used to solve complex problems efficiently.

    • Data Structures are ways of organizing and storing data, such as arrays, linked lists, and trees.

    • Algorithms are step-by-step procedures for solving problems, such as sorting and searching.

    • Understanding DSA is essential for software development and programming interviews.

    • Exa...

  • Answered by AI
  • Q5. Interview took around an hour.
Round 5 - HR 

(1 Question)

  • Q1. It was just an informal HR Discussion. Wasn't actually a round.
Round 6 - One-on-one 

(3 Questions)

  • Q1. This round took a month to happen.
  • Q2. It was a 45min interview revolving around the programming paradigms.
  • Q3. This round was with one of the very Senior Authority in the organization

Interview Preparation Tips

Topics to prepare for Bentley Systems Associate Software Developer interview:
  • C++
  • Algorithms
  • Data Structures
  • Basics of Computer Science
Interview preparation tips for other job seekers - 1. A short and crisp resume.
2. Be thorough with the resume.
3. Keep practicing problem solving questions from HackerRank/LeetCode.
4. Sound bold and confident throughout the process.
5. Believe in yourself

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. They mostly asked me about my skill set and the tools I know and some marketing questions.
Round 2 - Technical 

(1 Question)

  • Q1. They asked me about the tools more and few technical terms about marketing .
Round 3 - HR 

(1 Question)

  • Q1. My aspirations and goals

Interview Preparation Tips

Topics to prepare for Bentley Systems Marketing Intern interview:
  • Marketing domain
Interview preparation tips for other job seekers - Have proper domain knowledge and have solid response when they ask about your resume.

Intern Interview Questions & Answers

user image Anonymous

posted on 27 Jun 2021

I applied via Recruitment Consultant and was interviewed in Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. First round was coding round : 1. One string rotaion of other 2. Nearest largest and smallest prime value of given input. interview questions:What is difference between reference variable and pointer ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Study on cpp , python basic if specified , data structure , oop.

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.

Interview questions from similar companies

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

(1 Question)

  • Q1. Explain threads, Collection framework, code to remove duplicates and code on linkedlists
  • Ans. 

    Threads are lightweight processes within a program, Collection framework provides data structures, code to remove duplicates involves using sets, code on linkedlists involves traversal and manipulation.

    • Threads are independent paths of execution within a program.

    • Collection framework provides interfaces and classes for storing and manipulating groups of objects.

    • To remove duplicates from a list, we can use a Set data stru...

  • Answered by AI

Bentley Systems Interview FAQs

How many rounds are there in Bentley Systems interview for freshers?
Bentley Systems interview process for freshers usually has 4 rounds. The most common rounds in the Bentley Systems interview process for freshers are Technical, Coding Test and HR.
How to prepare for Bentley Systems interview for freshers?
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 Project Delivery, CRM, Mining, Recruitment and SAP.
What are the top questions asked in Bentley Systems interview for freshers?

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

  1. Program to Find the Maximum Occurring Number in an Array. Which Data Structure ...read more
  2. Difference Between Arrays and LinkedLists. Cons and Pros of Using Them. Which O...read more
  3. Is Function Overloading the Only Example of Compile Time Polymorphis...read more
What are the most common questions asked in Bentley Systems HR round for freshers?

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

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

based on 6 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 33%
2-4 weeks 33%
More than 8 weeks 33%
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 Partner Development Manager

New Delhi

5-7 Yrs

Not Disclosed

Technical Support Engineer I

New Delhi

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

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