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 and Answers

Updated 18 Jun 2025
Popular Designations

30 Interview questions

A Software Engineer was asked
Q. What is polymorphism?
Ans. 

Polymorphism allows objects to be treated as instances of their parent class, enabling method overriding and overloading.

  • Types of polymorphism: compile-time (method overloading) and runtime (method overriding).

  • Example of method overloading: multiple functions with the same name but different parameters.

  • Example of method overriding: a subclass providing a specific implementation of a method defined in its superclas...

View all Software Engineer interview questions
A Software Developer was asked
Q. What is the difference between an array and a 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 lin...

View all Software Developer interview questions
A Software Developer was asked
Q. 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.

View all Software Developer interview questions
A Software Developer was asked
Q. Given a string s, return a string y which stores the first occurrence of each character in 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.

View all Software Developer interview questions
A Software Developer was asked
Q. How are ML models 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 u...

View all Software Developer interview questions
A Software Engineer was asked
Q. What are the key differences between Java and Python?
Ans. 

Java is a statically typed language with a strong emphasis on object-oriented programming, while Python is dynamically typed with a focus on simplicity and readability.

  • Java is statically typed, while Python is dynamically typed.

  • Java is strongly typed, while Python is weakly typed.

  • Java is compiled to bytecode and runs on the Java Virtual Machine (JVM), while Python is interpreted at runtime.

  • Java has a strong emphas...

View all Software Engineer interview questions
A Data Entry Operator was asked
Q. What was the 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.

View all Data Entry Operator interview questions
Are these interview questions helpful?
A Technical Specialist was asked
Q. What is the Degree of Freedom (DOF) of an Industrial Manipulator?
Ans. 

The DOF of an industrial manipulator refers to the number of degrees of freedom it has.

  • DOF stands for degrees of freedom.

  • It refers to the number of independent movements a manipulator can make.

  • A 6-DOF manipulator can move in six different directions.

  • The more DOF a manipulator has, the more versatile it is.

  • DOF can be increased by adding more joints or axes to the manipulator.

View all Technical Specialist interview questions
A ml engineer was asked 2w ago
Q. Bagging vs boosting.
Ans. 

Bagging and boosting are ensemble techniques that improve model performance by combining multiple learners.

  • Bagging (Bootstrap Aggregating) reduces variance by averaging predictions from multiple models trained on random subsets of data.

  • Example of bagging: Random Forest, which builds multiple decision trees and averages their predictions.

  • Boosting sequentially trains models, each focusing on the errors of the previo...

View all ml engineer interview questions
A ml engineer was asked 2w ago
Q. Kth largest element
Ans. 

Find the Kth largest element in an unsorted array using efficient algorithms.

  • Use a min-heap of size K to keep track of the largest K elements.

  • Example: For array [3, 2, 1, 5, 6, 4] and K=2, the 2nd largest is 5.

  • Alternatively, sort the array and access the element at index len(array) - K.

  • Example: Sorting [3, 2, 1, 5, 6, 4] gives [1, 2, 3, 4, 5, 6], 2nd largest is 5.

  • Quickselect algorithm can also be used for average ...

View all ml engineer interview questions

Autodesk Interview Experiences

43 interviews found

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

(2 Questions)

  • Q1. Write a program which will take string and number of occurrences as a input. Find a character with same occurrences count in single interation.(multiples cases around this, not able to recall)
  • Ans. 

    Program to find a character with same occurrences count in a string in a single iteration.

    • Iterate through the string and keep track of character occurrences in a hashmap.

    • Check for characters with the same occurrence count in the hashmap.

    • Return the first character found with the same occurrence count.

  • Answered by AI
  • Q2. Graph traversal
Round 2 - Technical 

(1 Question)

  • Q1. System design components discussed in detail with different scenarios
Round 3 - Behavioral 

(1 Question)

  • Q1. Prepare standard conflict manager round questions like conflict resolution, team leading experience, best work delivered, standard practices etc

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Prepare Javascript, Typescript l, NodeJs
2. Medium level questions of problem solving
3. Overall understanding of system design components
4. Standard managerial round

Sdet Interview Questions & Answers

user image Anonymous

posted on 18 Oct 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview in Sep 2024.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a dedicated SDET with a passion for automation testing and ensuring software quality.

    • Experienced in creating and executing automated test scripts using tools like Selenium and JUnit

    • Proficient in programming languages such as Java and Python

    • Skilled in identifying and reporting software defects

    • Strong understanding of software development lifecycle and agile methodologies

  • Answered by AI
  • Q2. Why you want to join autodesk
  • Ans. 

    I want to join Autodesk because of its innovative technology and global impact in the design industry.

    • Autodesk is a leader in providing cutting-edge software solutions for design and engineering professionals

    • I am excited about the opportunity to work on challenging projects and contribute to the company's success

    • I admire Autodesk's commitment to sustainability and diversity in the workplace

  • Answered by AI
Round 2 - Behavioral 

(3 Questions)

  • Q1. Work experinece
  • Ans. 

    I have extensive experience in software development and testing, focusing on automation and quality assurance.

    • Developed automated test scripts using Selenium and Java, improving test coverage by 40%.

    • Collaborated with developers to identify and resolve bugs early in the development cycle.

    • Implemented CI/CD pipelines using Jenkins, reducing deployment time by 30%.

    • Conducted performance testing using JMeter, identifying bot...

  • Answered by AI
  • Q2. Behavioral Questions
  • Q3. Scenario based questions
Round 3 - Technical 

(2 Questions)

  • Q1. Javascript basic difference between var let.
  • Ans. 

    var is function scoped, let is block scoped in JavaScript.

    • var is function scoped, let is block scoped

    • var can be redeclared, let cannot be redeclared

    • let is recommended for use over var in modern JavaScript

  • Answered by AI
  • Q2. OOPS concept of java
  • Ans. 

    OOPS concept of Java refers to Object-Oriented Programming principles like inheritance, encapsulation, polymorphism, and abstraction.

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

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

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

    • Abstraction: Hiding the implementation detail...

  • Answered by AI
Round 4 - Group Discussion 

How you handle a difficult situation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in the interview

Skills evaluated in this interview

ml engineer Interview Questions & Answers

user image Anonymous

posted on 18 Jun 2025

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

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Kth largest element
  • Ans. 

    Find the Kth largest element in an unsorted array using efficient algorithms.

    • Use a min-heap of size K to keep track of the largest K elements.

    • Example: For array [3, 2, 1, 5, 6, 4] and K=2, the 2nd largest is 5.

    • Alternatively, sort the array and access the element at index len(array) - K.

    • Example: Sorting [3, 2, 1, 5, 6, 4] gives [1, 2, 3, 4, 5, 6], 2nd largest is 5.

    • Quickselect algorithm can also be used for average O(n) ...

  • Answered by AI
  • Q2. Peak Element in an Array
  • Ans. 

    A peak element in an array is an element that is greater than its neighbors.

    • A peak element can be at the beginning, end, or middle of the array.

    • Example: In [1, 3, 20, 4, 1], 20 is a peak element.

    • If an array has only one element, that element is a peak.

    • Multiple peak elements can exist in an array.

    • To find a peak, compare each element with its neighbors.

  • Answered by AI
  • Q3. Bagging vs boosting.
  • Ans. 

    Bagging and boosting are ensemble techniques that improve model performance by combining multiple learners.

    • Bagging (Bootstrap Aggregating) reduces variance by averaging predictions from multiple models trained on random subsets of data.

    • Example of bagging: Random Forest, which builds multiple decision trees and averages their predictions.

    • Boosting sequentially trains models, each focusing on the errors of the previous on...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Apr 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on REST APIs, Python, 2 Coding questions medium, Web scrapping, JSON handling
  • Q2. Questions in depth on AWS services
Round 2 - Technical 

(2 Questions)

  • Q1. Same as on round1
  • Q2. Same as on round1 and in depth
Round 3 - Technical 

(2 Questions)

  • Q1. Same as on round 1
  • Q2. Same as on round and in depth
Round 4 - HR 

(2 Questions)

  • Q1. Questions related to ETA on tasks, architectures on aws
  • Q2. More aws questions

Intern Interview Questions & Answers

user image Anonymous

posted on 27 Apr 2025

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. First interview that is why i am here
  • Q2. What is experience
  • Q3. What is your roll in thae company
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Memory management cpp
  • Q2. Solid principles
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. A time when you introduced a process improvement
  • Ans. 

    Introduced a new project management tool to streamline communication and tracking

    • Identified inefficiencies in current project management process

    • Researched and evaluated different project management tools

    • Implemented new tool and provided training to team members

    • Monitored and measured improvements in communication and tracking

  • Answered by AI
  • Q2. Background about yourself
  • Ans. 

    Experienced technical program manager with a background in software development and project management.

    • Over 8 years of experience in leading cross-functional teams to deliver complex technical projects on time and within budget

    • Strong understanding of software development lifecycle and agile methodologies

    • Proven track record of successfully managing multiple projects simultaneously

    • Excellent communication and stakeholder ...

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

(2 Questions)

  • Q1. Type of projects handled describe one
  • Ans. 

    I have experience managing large-scale IT infrastructure projects for multinational companies.

    • Managed implementation of new data center for a global tech company

    • Led migration of legacy systems to cloud-based solutions

    • Coordinated cross-functional teams to ensure project milestones were met

  • Answered by AI
  • Q2. Project management skills use cases
Round 2 - HR 

(2 Questions)

  • Q1. Family background
  • Q2. Career growth related aspirations

Interview Preparation Tips

Interview preparation tips for other job seekers - Work culture is good but many organization changes may impact
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a seasoned SAP consultant with 5+ years of experience in implementing and optimizing SAP solutions for various clients.

    • 5+ years of experience in SAP consulting

    • Expertise in implementing and optimizing SAP solutions

    • Strong understanding of business processes and requirements

    • Ability to work with cross-functional teams

    • Certified in SAP modules such as SAP HANA or SAP S/4HANA

  • Answered by AI
  • Q2. IHC Payment process
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview in May 2024.

Round 1 - Technical 

(1 Question)

  • Q1. C++ oops core, copy constructor, run time polymorphism, ipc mechanisms, dsa coding
Round 2 - One-on-one 

(1 Question)

  • Q1. About my day to day work routine, what will you do if you have approach/design conflict with team architect, collaboration with team members, software development cycle in my company.

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

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 Resume Shortlist.
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. Given string s, return string y which stores first occurrence of characters of ...read more
  2. What is linked list? How it is stored in memory? Give real examples of linked-l...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.

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 41 interview experiences

Difficulty level

Easy 10%
Moderate 90%

Duration

Less than 2 weeks 65%
2-4 weeks 35%
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 894 Interviews
KPIT Technologies Interview Questions
3.3
 • 306 Interviews
Adobe Interview Questions
3.9
 • 247 Interviews
Salesforce Interview Questions
4.0
 • 234 Interviews
Freshworks Interview Questions
3.5
 • 171 Interviews
Oracle Cerner Interview Questions
3.6
 • 162 Interviews
Thomson Reuters Interview Questions
4.1
 • 125 Interviews
ServiceNow Interview Questions
4.1
 • 124 Interviews
View all

Autodesk Reviews and Ratings

based on 250 reviews

4.1/5

Rating in categories

3.7

Skill development

4.1

Work-life balance

3.9

Salary

3.5

Job security

4.2

Company culture

3.4

Promotions

3.7

Work satisfaction

Explore 250 Reviews and Ratings
Principal DevOps Engineer

Bangalore / Bengaluru

8-13 Yrs

₹ 30-45 LPA

Explore more jobs
Senior Software Engineer
167 salaries
unlock blur

₹14 L/yr - ₹52 L/yr

Software Engineer
121 salaries
unlock blur

₹9.6 L/yr - ₹32 L/yr

Software Developer
51 salaries
unlock blur

₹6.6 L/yr - ₹24.1 L/yr

Software Development Engineer
46 salaries
unlock blur

₹14.9 L/yr - ₹26.2 L/yr

Principal Engineer
42 salaries
unlock blur

₹25 L/yr - ₹65 L/yr

Explore more salaries
Compare Autodesk with

Adobe

3.9
Compare

Dassault Systemes

3.9
Compare

Oracle

3.7
Compare

KPIT Technologies

3.3
Compare
write
Share an Interview