Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Asite Solutions Associate Software Engineer Interview Questions and Answers

Updated 20 Oct 2023

Asite Solutions Associate Software Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2022. There were 3 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 - Aptitude Test 

Spring boot questions MCQ

Round 3 - HR 

(2 Questions)

  • Q1. Living location
  • Q2. Able to relocate?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare java features

Interview questions from similar companies

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

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.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Please check aptitude question in google

Round 2 - Coding Test 

Related to Javascript

Round 3 - HR 

(1 Question)

  • Q1. Expectations and why do you want to join?
Round 4 - Group Discussion 

Discussion related to company

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
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Focus on the Database questions and Your related technologies. Just clear your basics and provide examples based on explanation.

Interview Preparation Tips

Round: Test
Experience: PAPER DURATION: 3 hours
NO. OF QUESTIONS: 2 (20 marks each)
MAXIMUM MARKS: 20*2 = 40 marksQUESTION 1:
JSON Prettier:-Write a program which takes JSON as input and gives prettified JSONYou need to read JSON from STDIN. Input gives one line of uglified JSON.Output should be formatted JSON. Check the standard output link.Use 2 white spaces (not‘\t’) for one indentation.SAMPLE INPUT:{“group” : {list : [1,2,3]}, “list” : [“a”,”b”,”c”]}SAMPLE OUTPUT:{“group” : {List : [1,2,3]},“list” : [“a”,”b”,”c”]}EXPLANATION: Input will be uglifiedjson in one line and output will be prettified format of that. QUESTION 2:XML parse plus series computationEvaluate an expression given in XML format. Keys will be Expr- contains the entire expression. Elem – contains the digit, sum, Prod- contains two or more keys whose evaluation needs to be summed or multiplied respectively. Sub will contain 2 keys or more, where the second key onwards will have to be subtracted from the first one. Div- will contain 2 keys in which first key will need to be divided by second. SAMPLE INPUT:4673 SAMPLE OUTPUT:
20EXPLANATION:Input will be xml file through standard input. End of xml file marked by .
Duration: 180 minutes
Total Questions: 2

College Name: NA
Contribute & help others!
anonymous
You can choose to be anonymous

Asite Solutions Interview FAQs

How many rounds are there in Asite Solutions Associate Software Engineer interview?
Asite Solutions interview process usually has 3 rounds. The most common rounds in the Asite Solutions interview process are Resume Shortlist, Aptitude Test and HR.

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

ArisGlobal

No Interviews

INTERVIEWS

LenDenClub

No Interviews

INTERVIEWS

ArisGlobal

No Interviews

INTERVIEWS

Asite Solutions

No Interviews

INTERVIEWS

ArisGlobal

No Interviews

Tell us how to improve this page.

Asite Solutions Associate Software Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

BrowserStack Interview Questions
3.6
 • 48 Interviews
Autodesk Interview Questions
4.2
 • 38 Interviews
Winman Software Interview Questions
4.0
 • 28 Interviews
Fleetx.io Interview Questions
3.7
 • 28 Interviews
Trimble Interview Questions
4.2
 • 26 Interviews
ZIGRAM Interview Questions
3.2
 • 26 Interviews
View all
Asite Solutions Associate Software Engineer Salary
based on 11 salaries
₹6 L/yr - ₹9.3 L/yr
37% more than the average Associate Software Engineer Salary in India
View more details

Asite Solutions Associate Software Engineer Reviews and Ratings

based on 3 reviews

2.6/5

Rating in categories

1.4

Skill development

3.5

Work-life balance

3.1

Salary

1.4

Job security

3.3

Company culture

2.3

Promotions

2.3

Work satisfaction

Explore 3 Reviews and Ratings
Java Developer
21 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

UI Developer
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Asite Solutions with

Aconex

4.1
Compare

Procore

2.1
Compare

Trimble

4.2
Compare

Autodesk

4.2
Compare
Did you find this page helpful?
Yes No
write
Share an Interview