Upload Button Icon Add office photos

Filter interviews by

Cad Desk Interview Questions and Answers

Updated 11 Aug 2023

Cad Desk Interview Experiences

Popular Designations

2 interviews found

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

(2 Questions)

  • Q1. About autocad how to oprate
  • Q2. Tell about of your self
Round 2 - Technical 

(1 Question)

  • Q1. Tell about autocad intertwine
  • Ans. 

    AutoCAD Intertwine is a feature that allows users to link objects together in a drawing, creating relationships between them.

    • AutoCAD Intertwine helps in maintaining consistency and accuracy in drawings by ensuring that related objects are updated together.

    • Users can create relationships between objects such as dimensions, text, and blocks, so that when one object is modified, the related objects are automatically update...

  • Answered by AI

Autocad Draughtsman Interview Questions asked at other Companies

Q1. Can you do hand sketch from site if needed? Or manage site work with out detailed drawing?
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Nov 2022. There were 2 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 - Technical 

(3 Questions)

  • Q1. Views in Engineering drawing.
  • Ans. 

    Views in engineering drawing are used to show different angles and perspectives of a 3D object.

    • Views can include front, top, side, and isometric perspectives.

    • Each view is labeled with a corresponding letter or number.

    • Views can also include section views to show internal features of the object.

    • Views must be consistent and follow standard conventions to ensure clear communication.

    • Views can be created using CAD software o

  • Answered by AI
  • Q2. AutoCad commands
  • Q3. SolidWorks features

Interview Preparation Tips

Topics to prepare for Cad Desk Mechanical CAD Designer interview:
  • Solid Works
  • AutoCAD Mechanical

Mechanical CAD Designer Interview Questions asked at other Companies

Q1. Views in Engineering drawing.
View answer (1)

Jobs at Cad Desk

View all

Interview questions from similar companies

Software Developer Interview Questions & Answers

PTC user image Snehal Jaipurker

posted on 18 Sep 2017

I was interviewed in Jul 2017.

Interview Questionnaire 

6 Questions

  • Q1. Code to print * in five consecutive lines
  • Ans. 

    Code to print * in five consecutive lines

    • Use a loop to iterate five times

    • Inside the loop, print a string containing a single * character

  • Answered by AI
  • Q2. A ball is left from a height of 10 meters. After bouncing first time it looses 10% of its previous height the next time it bounces. Write a code to calculate the number of bounces the ball goes through unt...
  • Ans. 

    Code to calculate number of bounces a ball goes through until it comes to rest.

    • Use a loop to simulate the bounces until the ball stops bouncing

    • Calculate the height of each bounce using the given formula

    • Keep track of the number of bounces in a counter variable

  • Answered by AI
  • Q3. Which is the best and less time consuming way to calculate factorial of a number?
  • Ans. 

    The best and less time consuming way to calculate factorial of a number is using iterative approach.

    • Iteratively multiply the number with all the numbers from 1 to the given number

    • Start with a result variable initialized to 1

    • Multiply the result with each number in the range

    • Return the final result

  • Answered by AI
  • Q4. Write the code to find factorial using function recursion.
  • Ans. 

    Code to find factorial using function recursion

    • Define a function that takes an integer as input

    • Check if the input is 0 or 1, return 1 in that case

    • Otherwise, call the function recursively with input-1 and multiply it with the input

  • Answered by AI
  • Q5. They asked for my introduction.
  • Q6. They asked about my family members.

Interview Preparation Tips

Round: Test
Experience: Aptitude test was moderately tough. The coding test was on basics of c language of all the topics.
Tips: Solving R. S. Agrawal for Aptitude and videos on YouTube on C language are sufficient to score well.
Duration: 1 hour
Total Questions: 60

Round: Technical Interview
Experience: I wrote the first code correctly. I wrote the second code 75% correct and they explained me my mistakes and I could understand where I was going wrong then I corrected my code and then they were satisfied. They asked me whether I could write the factorial code by function recursion method. I replied that I can write the factorial code but not by function recursion method. They were satisfied.
Tips: Build your coding skills by more practice.

Round: HR Interview
Experience: In this round they just asked me my introduction and said that you are shortlisted for now but we will give you final confirmation after a week.
Tips: Don't lie. Be genuine.

College Name: SCOE, PUNE

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. First round was coding round : 1. One string rotaion of other 2. Nearest largest and smallest prime value of given input. interview questions:What is difference between reference variable and pointer ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Study on cpp , python basic if specified , data structure , oop.

I applied via Referral and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Mostly Basic concepts of javascript, html and css

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure to prepare basic concepts properly. Don't hurry to highlight advance topics.
Answer questions only if you are sure about the correct answer.

Interview Questionnaire 

1 Question

  • Q1. C++ Program to reverse a string
  • Ans. 

    C++ program to reverse a string

    • Use a loop to iterate through the string

    • Swap the characters at the beginning and end of the string

    • Continue swapping until the middle of the string is reached

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Simple introduction
Round 2 - Technical 

(1 Question)

  • Q1. Was asked a basic sliding window question.
Round 3 - Behavioral 

(1 Question)

  • Q1. Also a brief introduction about my self

Interview Preparation Tips

Topics to prepare for HeyCoach Intern interview:
  • Data Structures
  • Algorithms
  • Competitive programming
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 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
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
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 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)

Cad Desk Interview FAQs

How many rounds are there in Cad Desk interview?
Cad Desk interview process usually has 2-3 rounds. The most common rounds in the Cad Desk interview process are Technical and Resume Shortlist.
How to prepare for Cad Desk 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 Cad Desk. The most common topics and skills that interviewers at Cad Desk expect are AutoCAD, ETABS, Staad Pro, 3Ds Max and REVIT Architecture.
What are the top questions asked in Cad Desk interview?

Some of the top questions asked at the Cad Desk interview -

  1. Views in Engineering drawi...read more
  2. tell about autocad intertw...read more
  3. about autocad how to opr...read more

Tell us how to improve this page.

Cad Desk Interview Process

based on 3 interviews

Interview experience

4.7
  
Excellent
View more

Interview Questions from Similar Companies

Dassault Systemes Interview Questions
4.0
 • 160 Interviews
PTC Interview Questions
4.2
 • 62 Interviews
Autodesk Interview Questions
4.2
 • 39 Interviews
Bentley Systems Interview Questions
4.3
 • 20 Interviews
DevTown Interview Questions
3.6
 • 15 Interviews
HeyCoach Interview Questions
3.9
 • 14 Interviews
View all

Cad Desk Reviews and Ratings

based on 54 reviews

4.1/5

Rating in categories

4.1

Skill development

4.0

Work-life balance

3.9

Salary

3.9

Job security

4.1

Company culture

3.8

Promotions

4.0

Work satisfaction

Explore 54 Reviews and Ratings
Explore more jobs
Design Engineer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Trainer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

CAD Trainer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Mechanical Engg. Design
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

CAD Engg
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Cad Desk with

CADD Centre Training Services

4.0
Compare

EduCADD Learning Solution

4.7
Compare

DesignTech Systems

3.3
Compare

Multisoft Systems

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