Upload Button Icon Add office photos
Engaged Employer

i

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

Autodesk Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Autodesk Interview Questions, Process, and Tips

Updated 8 Feb 2025

Top Autodesk Interview Questions and Answers

View all 26 questions

Autodesk Interview Experiences

Popular Designations

38 interviews found

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

4 question asked medium and hard

Round 2 - Coding Test 

1 question asked and oops concept

Round 3 - HR 

(1 Question)

  • Q1. Normal question

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Topics: maps, sorting and simple DSA question

Round 2 - Technical 

(3 Questions)

  • Q1. What is linked list? How it is stored in memory? Give real examples of linked-list.
  • Ans. 

    A linked list is a data structure where each element points to the next element in the sequence.

    • Linked list is stored in memory as nodes, where each node contains data and a reference to the next node.

    • Examples of linked-list include a singly linked list, doubly linked list, and circular linked list.

    • In a singly linked list, each node points to the next node. In a doubly linked list, each node points to both the next and

  • Answered by AI
  • Q2. How does ML models are built?
  • Ans. 

    ML models are built by collecting and preparing data, selecting a model, training the model on the data, and evaluating its performance.

    • Collect and prepare data by cleaning, transforming, and encoding it

    • Select a model based on the problem at hand (e.g. regression, classification, clustering)

    • Train the model using algorithms like linear regression, decision trees, or neural networks

    • Evaluate the model's performance using ...

  • Answered by AI
  • Q3. Difference between array and linked list.
  • Ans. 

    Arrays store elements in contiguous memory locations, while linked lists store elements in nodes with pointers to the next node.

    • Arrays have fixed size, while linked lists can dynamically grow or shrink.

    • Accessing elements in arrays is faster (O(1)), while accessing elements in linked lists is slower (O(n)).

    • Inserting or deleting elements in arrays can be inefficient, as it may require shifting elements, while in linked l...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Given string s, return string y which stores first occurrence of characters of s .
  • Ans. 

    Return a string containing the first occurrence of characters in the input string.

    • Create an empty string to store the result.

    • Iterate through each character in the input string.

    • If the character is not already in the result string, add it to the result string.

    • Return the result string.

  • Answered by AI
  • Q2. Describe the hardest DSA questions you have ever done.
  • Ans. 

    One of the hardest DSA questions I have done involved implementing a complex graph traversal algorithm.

    • The question required understanding of graph data structures and algorithms.

    • I had to implement a depth-first search or breadth-first search algorithm.

    • The question may have involved finding the shortest path in a weighted graph.

    • I had to consider edge cases and optimize the algorithm for efficiency.

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. What are your hobbies, plans for future after 5 years?

Interview Preparation Tips

Topics to prepare for Autodesk Software Developer interview:
  • OS
  • OOPS
Interview preparation tips for other job seekers - When you know the answer, be very concise with your answer, try to explain without rambling with minimum word count.
When you don't know the answer try repeating the question back to interviewer to be super clear about the question and then say that currently you don't hold that much clarity about the topic but you will learn it soon.

Skills evaluated in this interview

Top Autodesk Software Developer Interview Questions and Answers

Q1. What is linked list? How it is stored in memory? Give real examples of linked-list.
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Autodesk Interview Questions and Answers for Freshers
illustration image

Software Engineer Interview Questions & Answers

user image Prasad Patil

posted on 16 Feb 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(3 Questions)

  • Q1. What is polymorphism?
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as the same type.

    • Polymorphism is a fundamental concept in object-oriented programming.

    • It enables code reusability and flexibility.

    • Polymorphism can be achieved through method overriding and method overloading.

    • Example: A parent class Animal can have multiple child classes like Dog, Cat, and Bird. They can ...

  • Answered by AI
  • Q2. What is static polymorphism?
  • Ans. 

    Static polymorphism refers to the ability of a programming language to select the appropriate function or method at compile-time.

    • Static polymorphism is achieved through function overloading or operator overloading.

    • It allows different functions with the same name but different parameters to be called based on the arguments provided.

    • The selection of the appropriate function is determined at compile-time, based on the sta...

  • Answered by AI
  • Q3. What is dynamic polymorphism?
  • Ans. 

    Dynamic polymorphism is the ability of an object to take on many forms based on the context it is used.

    • It allows objects of different classes to be treated as objects of a common superclass.

    • It is achieved through method overriding and virtual functions.

    • Example: A superclass 'Animal' with subclasses 'Dog' and 'Cat'. Both can be treated as 'Animal' objects.

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Nov 2023.

Round 1 - Coding Test 

F2F coding test which was pretty simple based on basic c++ concepts and few logical questions.

Round 2 - Technical 

(1 Question)

  • Q1. Project and design level with mid level difficulty.
Round 3 - Culture fit 

(2 Questions)

  • Q1. Oops.here the magic happened. Prior to each stage HR was giving clue about the next round and the rounds were more or less same. But in this round,no was expecting managerial question and was not prepared ...
  • Q2. Array multiple logical questions, design pattern writing, other class relates coding..

Senior Engineer Interview Questions asked at other Companies

Q1. what is the meaning of M in M20,M25,M30 grade of concrete?
View answer (57)

Autodesk interview questions for popular designations

 Senior Software Engineer

 (6)

 Software Engineer

 (4)

 Software Developer

 (3)

 Technical Consultant

 (2)

 Project Manager

 (1)

 Senior Engineer

 (1)

 QA Lead

 (1)

 Client Servicing Executive

 (1)

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Mingodb queries

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)

Get interview-ready with Top Autodesk Interview Questions

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. What is oops, Mostly Debugging Questions
  • Q2. Pointers, Memory Allocation

Top Autodesk Software Developer Interview Questions and Answers

Q1. What is linked list? How it is stored in memory? Give real examples of linked-list.
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Behavioral 

(2 Questions)

  • Q1. What project worked on
  • Ans. 

    I worked on a project to develop a web-based inventory management system for a retail company.

    • Implemented user authentication and authorization features

    • Designed database schema for storing product information

    • Developed frontend using React and backend using Node.js

    • Integrated payment gateway for online transactions

  • Answered by AI
  • Q2. Explain a scenario
  • Ans. 

    Explaining a scenario in software development

    • Scenario: A team is working on developing a new feature for a mobile app

    • Discussing the requirements with the product owner and stakeholders

    • Breaking down the feature into smaller tasks for the development team

    • Assigning tasks to team members based on their expertise

    • Regularly reviewing progress and making adjustments as needed

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - First Round was with Team Manager if u fit for team

Mostly asked questions about project currently working on
Some behaviroal questions

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. General discussion about the role
  • Q2. Behavioural questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Aug 2023. 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 - Coding Test 

Name of the first citizen

Round 3 - Technical 

(5 Questions)

  • Q1. How old are you
  • Q2. What is your favorite thing
  • Q3. Whats your institute name
  • Q4. Jspm college of engineering
  • Q5. Who is first engineering branch
  • Ans. 

    Civil Engineering is considered the first engineering branch.

    • Civil Engineering is one of the oldest branches of engineering.

    • It deals with the design, construction, and maintenance of physical and naturally built environment.

    • Examples of civil engineering projects include bridges, roads, buildings, and dams.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good work

Data Entry Operator Interview Questions asked at other Companies

Q1. What is skills matrix of Return center Department?
View answer (44)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Operating systems
  • Q2. Data base management systems

Apprenticeship Trainee Interview Questions asked at other Companies

Q1. What is the circuit breaker.circuit breaker protect by short circuit
View answer (8)
Contribute & help others!
anonymous
You can choose to be anonymous

Autodesk Interview FAQs

How many rounds are there in Autodesk interview?
Autodesk interview process usually has 2-3 rounds. The most common rounds in the Autodesk interview process are Technical, One-on-one Round and Coding Test.
How to prepare for Autodesk 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 Autodesk. The most common topics and skills that interviewers at Autodesk expect are Autodesk, Python, Agile, Computer science and Automation.
What are the top questions asked in Autodesk interview?

Some of the top questions asked at the Autodesk interview -

  1. What is linked list? How it is stored in memory? Give real examples of linked-l...read more
  2. Given string s, return string y which stores first occurrence of characters of ...read more
  3. Write a program which will take string and number of occurrences as a input. Fi...read more
How long is the Autodesk interview process?

The duration of Autodesk interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

INTERVIEWS

Autodesk

No Interviews

DESIGNATION

SALARIES

Truebil

SALARIES

RapidBox

SALARIES

Autodesk

SALARIES

RapidBox

LIST OF COMPANIES

Story Design

Overview

INTERVIEWS

nVent

No Interviews

INTERVIEWS

Autodesk

No Interviews

SALARIES

Exxat

Tell us how to improve this page.

Autodesk Interview Process

based on 37 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 846 Interviews
Siemens Interview Questions
4.1
 • 417 Interviews
Adobe Interview Questions
3.9
 • 233 Interviews
Dassault Systemes Interview Questions
4.0
 • 161 Interviews
PTC Interview Questions
4.2
 • 62 Interviews
AVEVA Interview Questions
4.3
 • 27 Interviews
Trimble Interview Questions
4.2
 • 26 Interviews
Bentley Systems Interview Questions
4.3
 • 20 Interviews
Hexagon AB Interview Questions
4.2
 • 1 Interview
View all

Autodesk Reviews and Ratings

based on 218 reviews

4.2/5

Rating in categories

3.8

Skill development

4.2

Work-life balance

4.1

Salary

3.8

Job security

4.2

Company culture

3.6

Promotions

3.8

Work satisfaction

Explore 218 Reviews and Ratings
Senior Software Engineer
102 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
84 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer
36 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
26 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Principal Engineer
24 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Autodesk with

Adobe

3.9
Compare

Dassault Systemes

4.0
Compare

PTC

4.2
Compare

Siemens

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