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

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)

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 was interviewed 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
  • 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

Sdet Interview Questions asked at other Companies

Q1. Given a M x N 2D array containing random alphabets and a function Dict(string word) which returns whether the 'word' is a valid English word. Find all possible valid words you can get from the 2D array, where the alphabets are adjacent to e... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed 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

Software Development Engineer II Interview Questions asked at other Companies

Q1. Given 2 large numeric comma seperated strings. You need to calculate their sum along with maintaining the correct position of commas. Example Test Case - s1 - "123,456,788" s2 - "1" output - "123,456,789" constraints - since the strings can... read more
View answer (1)

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

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)

Get interview-ready with Top Autodesk Interview Questions

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

Technical Program Manager Interview Questions asked at other Companies

Q1. consider a scenario where you are collaborating with multiple PoDs (product teams), each of these are working on business critical deliverables with dedicated engineering teams but a common QA team for all. How will you ensure that the QA b... read more
View answer (2)
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

Project Manager Interview Questions asked at other Companies

Q1. What is success & what is failure to you? How do you handle failure? - not much interviewer asks such questions, but I believe these are very important questions, if you want to succeed.
View answer (1)
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

SAP Consultant Interview Questions asked at other Companies

Q1. what all changes are there from AS to IND-AS in IND-AS 116
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed 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.

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 Questions & Answers

user image Anonymous

posted on 30 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How do you define DEI
  • Ans. 

    DEI stands for Diversity, Equity, and Inclusion, encompassing the representation and fair treatment of all individuals.

    • Diversity: Refers to the variety of differences among people, including but not limited to race, gender, age, religion, sexual orientation, and abilities.

    • Equity: Focuses on ensuring fairness and justice in processes, systems, and opportunities for all individuals, regardless of their background or iden...

  • Answered by AI
  • Q2. What are your greatest strenghts?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 hours of duration and medium level leetcode questions

Round 2 - Technical 

(2 Questions)

  • Q1. What do you mean by os?
  • Ans. 

    OS stands for Operating System. It is a software that manages computer hardware and provides services for computer programs.

    • OS is the software that acts as an intermediary between computer hardware and user applications.

    • It manages computer resources such as memory, processors, devices, and file systems.

    • Examples of popular operating systems include Windows, macOS, Linux, and Android.

  • Answered by AI
  • Q2. How can deadlock be avoided?
  • Ans. 

    Deadlock can be avoided by implementing proper resource allocation strategies and using techniques like deadlock prevention, avoidance, detection, and recovery.

    • Implement proper resource allocation strategies such as resource ordering, wait-die, wound-wait, etc.

    • Use techniques like deadlock prevention by ensuring that the system never enters a deadlock state, avoidance by ensuring that the system does not enter an unsafe...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while answering.

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

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 217 reviews

4.2/5

Rating in categories

3.9

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

Devops 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