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 Intern Interview Questions and Answers

Updated 28 Mar 2022

Autodesk Intern Interview Experiences

1 interview found

Intern Interview Questions & Answers

user image Anonymous

posted on 28 Mar 2022

Round 1 - One-on-one 

(1 Question)

  • Q1. Advantages of Autodesk products over other products.
  • Ans. 

    Autodesk products offer advanced features, user-friendly interface, and seamless integration.

    • Autodesk products have advanced features that allow for more complex designs and simulations.

    • The user interface is designed to be intuitive and easy to use, making it accessible to both beginners and experts.

    • Autodesk products seamlessly integrate with other software and tools, allowing for a more efficient workflow.

    • For example,...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through the software basics and try to master as much Autodesk software you can !!

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Aug 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 tips
Round 2 - HR 

(2 Questions)

  • Q1. Describe a time when y ou had to learn a new kill to complete a project
  • Q2. Tell me about your resume
Round 3 - Coding Test 

Reverse a given string using for loop

Interview Preparation Tips

Topics to prepare for Bentley Systems Software Engineer interview:
  • Data Structures
  • Algorithms
  • Coding
Interview preparation tips for other job seekers - Master Data Structures and Algorithms and be prepared to talk your experience written in your resume

I applied via Campus Placement and was interviewed in Aug 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Types of data structure and their time complexities
  • Ans. 

    Data structures are used to organize and store data efficiently. Time complexity is the measure of efficiency.

    • Arrays - O(1) for access, O(n) for search and insertion

    • Linked Lists - O(n) for access, O(1) for insertion and deletion

    • Stacks - O(1) for access, insertion and deletion

    • Queues - O(1) for access, insertion and deletion

    • Trees - O(log n) for access, insertion and deletion

    • Hash Tables - O(1) for access, insertion and de

  • Answered by AI
  • Q2. Types of Binary Tree
  • Ans. 

    Binary trees are classified based on the number of children each node can have.

    • Full binary tree: every node has either 0 or 2 children

    • Complete binary tree: all levels except possibly the last are completely filled, and all nodes are as far left as possible

    • Perfect binary tree: all internal nodes have two children and all leaf nodes are at the same level

    • Balanced binary tree: the difference in height between the left and ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare time complexities of the data structure algorithms and be through with oops concept

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

Trimble user image Saminathan Alagu Sundaram

posted on 25 Oct 2024

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

(1 Question)

  • Q1. Based on DSA, OOPS
Round 2 - Technical 

(1 Question)

  • Q1. Based on Projects in Resume
Round 3 - Technical 

(1 Question)

  • Q1. Technical Discussion about earlier projects
Round 4 - HR 

(1 Question)

  • Q1. Salary Discussion
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Topics were on dbms, dsa and oops mostly

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

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

Round 1 - Coding Test 

Moderate level questions

Round 2 - Technical 

(1 Question)

  • Q1. OOPS,DBMS,SQL queries,Web Development essentials,GitHub
Round 3 - Behavioral 

(1 Question)

  • Q1. Questions about your interests
Round 4 - HR 

(1 Question)

  • Q1. Questions like what is your dream company,will you re-locate,..etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be clear with basics and foundation of what you have learnt..
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Logical verbal non verbal question

Round 2 - Group Discussion 

Java object oriented language

Interview Preparation Tips

Interview preparation tips for other job seekers - Hard work
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Nice and difficult work from home

Round 2 - Technical 

(2 Questions)

  • Q1. Array and haah was aaked
  • Q2. It was difficult

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice pic of you

Interview Questionnaire 

11 Questions

  • Q1. Difference between single and doubly linked list?Why do we prefer doubly over single linked list?
  • Ans. 

    Single linked list has one pointer while doubly linked list has two. Doubly linked list is preferred for easier traversal in both directions.

    • Single linked list has only one pointer which points to the next node while doubly linked list has two pointers which point to the next and previous nodes.

    • Doubly linked list allows for easier traversal in both directions, while single linked list only allows for traversal in one d...

  • Answered by AI
  • Q2. What is the purpose of cloud other than storage?The answer is processing
  • Q3. Difference between LINUX/UNIX and WINDOWS
  • Ans. 

    LINUX/UNIX are open-source, command-line based OS while WINDOWS is a proprietary, GUI-based OS.

    • LINUX/UNIX have a steep learning curve due to command-line interface

    • WINDOWS is more user-friendly with a graphical user interface (GUI)

    • LINUX/UNIX are more stable and secure than WINDOWS

    • LINUX/UNIX are free and open-source while WINDOWS is proprietary and requires a license

    • LINUX/UNIX are preferred for servers and development wh...

  • Answered by AI
  • Q4. Program for sorting an array
  • Ans. 

    Program to sort an array of strings

    • Use a sorting algorithm like bubble sort, insertion sort, or quicksort

    • Compare adjacent elements and swap if necessary

    • Repeat until the array is sorted

  • Answered by AI
  • Q5. Time complexity of different types of sorting technique?Which one is most efficient one?
  • Ans. 

    Sorting techniques and their time complexity

    • Bubble sort - O(n^2)

    • Selection sort - O(n^2)

    • Insertion sort - O(n^2)

    • Merge sort - O(n log n)

    • Quick sort - O(n log n)

    • Heap sort - O(n log n)

    • Radix sort - O(nk)

    • Most efficient: Quick sort or Merge sort

    • Efficiency depends on the size of the array and the data distribution

  • Answered by AI
  • Q6. What do you mean by big data?
  • Ans. 

    Big data refers to large and complex data sets that cannot be processed using traditional data processing methods.

    • Big data is characterized by the 3Vs - volume, velocity, and variety.

    • It requires specialized tools and techniques for processing and analysis.

    • Examples of big data include social media data, sensor data, and financial market data.

  • Answered by AI
  • Q7. Advantage of ASP.net over JAVA
  • Ans. 

    ASP.net is better for enterprise-level applications due to its integration with Windows and Microsoft technologies.

    • ASP.net has better integration with Windows and Microsoft technologies

    • ASP.net has better performance and scalability for enterprise-level applications

    • ASP.net has a larger developer community and more resources available

    • Java is better for cross-platform development and open-source projects

  • Answered by AI
  • Q8. Tell me about yourself?
  • Ans. 

    I am a software engineer with experience in developing web applications and a passion for problem-solving.

    • Experienced in developing web applications using technologies such as HTML, CSS, JavaScript, and React

    • Proficient in programming languages such as Java and Python

    • Strong problem-solving skills and ability to work in a team environment

    • Passionate about learning new technologies and staying up-to-date with industry tren

  • Answered by AI
  • Q9. Why do you want to join our company?
  • Ans. 

    I am impressed with the company's innovative approach and would love to be a part of the team.

    • I have researched the company and am impressed with its achievements

    • I am excited about the company's focus on innovation and cutting-edge technology

    • I believe that the company's values align with my own and I would be proud to work here

  • Answered by AI
  • Q10. Any question regarding the company?
  • Ans. 

    Yes, can you tell me about the company culture?

    • Our company values collaboration and innovation

    • We prioritize work-life balance for our employees

    • We have a diverse and inclusive workplace culture

  • Answered by AI
  • Q11. Do you have any questions for me?

Interview Preparation Tips

Round: Test
Experience: In the analytical section questions were mostly asked from percentage,speed distance and time,match the pattern,boats and streams and There were many number of questions like If '+' stands for '*', '-' stands for '/' , '*' stands for '-' and '/' stands for '+' then what is the value of 7*45-9/4+2?

In the Logical section questions were asked from topics like blood relation, venn diagram,direction sense .

In the Verbal section we were asked to fill the sentences with proper preposition,few synonyms and antonyms.

In the computer fundamental section the questions were related to the versions of the operating system,few programming fundamentals.There were also few basic questions from electrical subjects like symbol of capacitor,resistor,transformer etc.
Tips: The paper was very easy and only basic questions were asked but you need to score good. The cutoff was 30 out of 60 but it may vary.R S Agarwal text book for quantitative apitude and verbal non verbal reasoning is enough.
Duration: 65 minutes
Total Questions: 60

Round: Group Discussion
Experience: They gave some time like 1 min to recollect the points and then start.Start the discussion only if u know the topic well otherwise listen to others and try to add few additional points to support there statements.Examples are best thing to support your statement.Never Add new points while concluding at last.
Tips: Stay updated to the most frequently asked topics in GD before attending one.This will make you more confident during the GD.
Duration: 10 minutes

Round: Technical Interview
Experience: The questions were asked from the subjects, I have mentioned in my resume.Explaining with a diagram is always a good thing.
Tips: Prepare the subjects well which you have mentioned in your resume.Only the basic questions are asked.Prepare The mini project or summer internship project well.

Round: HR Interview
Experience: The interviewer was really good and friendly.I Heard about the company in the Pre placement talk and found it the best company to work for and moreover its a product based company i always desired to work with. Out of around 300 students who wrote the test 200 were select for GD then 45 students were selected for the interview and finally 10 got selected in the company.
Tips: Be confident and honest in whatever you speak out about yourself.Research well about the company by going through the website.

General Tips: Be confident and prepare well.If you are not aware about the topic asked don't beat around the bush answer straight to the point.
Skill Tips: Prepare your resume well.
Skills: Knowledge Of Your Resume Points, Ability To Express Your Ideas, How Much You Are Interested In The Company?, Core Courses Concepts, Clarity Of Concepts, Technical Skill And Speaking Skill, Verbal Communication Skills, Good Knowledge Of Basics
College Name: GITAM University, Visakhapatnam
Motivation: The company is different form other software companies which are product based.
" -----/" I went through this website and got the detailed info about the company which made my desire to work for the company grow more stronger.
Funny Moments: Interviews unfortunately are never funny :( but yes my face certainly looked funny coz it turned into a red hot tomato :D

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

Adobe user image Devendra Bendkhale

posted on 4 Dec 2015

Interview Questionnaire 

8 Questions

  • Q1. WRITE A GENERIC SWAP FUNCTION
  • Ans. 

    A generic swap function swaps two values of any data type.

    • The function should take two parameters of any data type.

    • Use a temporary variable to store the value of one parameter.

    • Assign the value of the second parameter to the first parameter.

    • Assign the value of the temporary variable to the second parameter.

  • Answered by AI
  • Q2. SEARCH AN ELEMENT IN ROTATED SORTED LINKLIST .
  • Ans. 

    Search for an element in a rotated sorted linked list.

    • Find the pivot point where the list is rotated.

    • Divide the list into two sublists based on the pivot point.

    • Perform binary search on the appropriate sublist.

    • Handle edge cases such as empty list and list with only one element.

  • Answered by AI
  • Q3. SEARCH AN ELEMENT IN ROTATED SORTED ARRAY. WRITED A CODE FOR IT
  • Ans. 

    Search an element in a rotated sorted array

    • Find the pivot point where the array is rotated

    • Divide the array into two sub-arrays based on pivot point

    • Perform binary search on the appropriate sub-array

    • Repeat until element is found or sub-array size is 1

  • Answered by AI
  • Q4. In an Array of size 95 contain numbers in range 1 to 100. each number is at max once in the array. find the 5 missing numbers in array between 1-100
  • Ans. 

    Find 5 missing numbers in an array of size 95 containing numbers in range 1 to 100.

    • Create a boolean array of size 100 and mark the present numbers

    • Iterate through the boolean array and find the missing numbers

    • Alternatively, use a HashSet to store the present numbers and find the missing ones

  • Answered by AI
  • Q5. Given sudoku as id array of size . in a given empty cell find the possible numbers that could be possible. Asked me to write code for it
  • Ans. 

    Given a Sudoku board, find possible numbers for an empty cell.

    • Iterate through empty cells and check possible numbers using row, column, and box constraints.

    • Use a set to keep track of possible numbers for each empty cell.

    • Return the set of possible numbers for the given empty cell.

  • Answered by AI
  • Q6. Given 4 unsigned integers find their integer average (eg. (2,2,2,3) => (2+2+2+3)/4 = 2) consider integer division ) without typecasting
  • Ans. 

    Find integer average of 4 unsigned integers without typecasting

    • Add all the integers and divide by 4

    • Use bit shifting to divide by 4

    • Handle overflow by using long long data type

    • Use unsigned int data type for input

  • Answered by AI
  • Q7. Write a code to identify wheter given processor is of 32 bit architecture or 64 bit architecture
  • Ans. 

    Code to identify 32 bit or 64 bit architecture of a processor

    • Check if the operating system is 32 bit or 64 bit

    • If OS is 32 bit, processor is 32 bit

    • If OS is 64 bit, check if processor supports 64 bit architecture

    • Use CPUID instruction to check if processor supports 64 bit architecture

  • Answered by AI
  • Q8. Convert a binary number into base 64 integer
  • Ans. 

    Convert binary number to base 64 integer

    • Divide the binary number into groups of 6 bits

    • Convert each group of 6 bits to decimal

    • Map the decimal value to the corresponding base 64 character

    • Concatenate the base 64 characters to form the final integer

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: SIMPLE CODING QUESTIONS SPEED MATTERS.
Duration: 60 minutes
Total Questions: 3

Skills: Analytics And Coding
College Name: IIT Guwahati

Skills evaluated in this interview

Autodesk Interview FAQs

How many rounds are there in Autodesk Intern interview?
Autodesk interview process usually has 1 rounds. The most common rounds in the Autodesk interview process are One-on-one Round.
How to prepare for Autodesk Intern 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, Data Analysis, Data Science, Python and Computer Vision.

Tell us how to improve this page.

Intern Interview Questions from Similar Companies

Oracle Intern Interview Questions
3.7
 • 8 Interviews
PTC Intern Interview Questions
4.2
 • 7 Interviews
Siemens Intern Interview Questions
4.1
 • 5 Interviews
Adobe Intern Interview Questions
3.9
 • 4 Interviews
Trimble Intern Interview Questions
4.2
 • 2 Interviews
View all
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