Upload Button Icon Add office photos

Filter interviews by

Tao Digital Auto CAD Engineer Interview Questions and Answers

Updated 5 Feb 2025

Tao Digital Auto CAD Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Feb 2024.

Round 1 - Aptitude Test 

Aptitude,reasoning, grammar

Round 2 - HR 

(2 Questions)

  • Q1. Self introduction and about your life
  • Q2. Future goals

Interview Preparation Tips

Interview preparation tips for other job seekers - Improve my skils and bond best mutural repo

Interview questions from similar companies

I applied via Naukri.com and was interviewed before May 2021. 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 - Technical 

(1 Question)

  • Q1. Basic question related to autocad commands
Round 3 - HR 

(1 Question)

  • Q1. Discussion on projects and previous profile

Interview Preparation Tips

Topics to prepare for TCS Auto CAD Engineer interview:
  • AutoCAD
  • GD&T
  • Mechanical Engineering
Interview preparation tips for other job seekers - TCS general hire AUTOCAD engineer through 3rd party payroll so mat be you will get fire when your project will be over
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(6 Questions)

  • Q1. Write a code for febonacci series
  • Q2. Dynamic webElements handling using Xpath?
  • Q3. What is spike in agile?
  • Q4. Difference between agile and waterfall based model?
  • Q5. Sprint point system? Explain?
  • Q6. Payment failure by debit card in e-commerce site? Make test scenarios?
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(7 Questions)

  • Q1. Write code to implement and explicit wait in Selenium
  • Q2. Write code to implement Robot class in java
  • Q3. How would you locate the Xpath for the "Today's Deal" menu item on Amazon
  • Q4. What will be the memory allocation for the code String str1 = "Automation"; String str2 = new String("Automation");
  • Q5. What is the difference between str1==str2 and str1.equals(str2)
  • Q6. Meaning of status code 401 and 502
  • Q7. Print first 4 letter and last 4 letter of String str="www.amazon.com"
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(9 Questions)

  • Q1. Difference between absolute and relative Xpath
  • Ans. 

    Absolute Xpath starts from the root element, while relative Xpath starts from any node in the DOM structure.

    • Absolute Xpath starts with a single forward slash (/) and starts selection from the root node.

    • Relative Xpath starts with a double forward slash (//) and starts selection from the current node or any node in the DOM structure.

    • Absolute Xpath is more brittle and prone to breaking if the structure of the page changes...

  • Answered by AI
  • Q2. What would be return if multiple tabs are open
  • Ans. 

    The return would be the number of tabs open in the browser.

    • The return value would be an integer representing the count of open tabs.

    • For example, if there are 5 tabs open, the return value would be 5.

  • Answered by AI
  • Q3. What are the waits in selenium
  • Ans. 

    Types of waits in Selenium include Implicit Wait, Explicit Wait, and Fluent Wait.

    • Implicit Wait: Waits for a certain amount of time before throwing a NoSuchElementException.

    • Explicit Wait: Waits for a certain condition to occur before proceeding further in the code.

    • Fluent Wait: Waits for a condition to be true with a defined polling frequency.

    • Example: driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

  • Answered by AI
  • Q4. Exceptions in selenium
  • Ans. 

    Exceptions in Selenium are errors that occur during test execution, disrupting the flow of the test script.

    • Exceptions are thrown when there is an unexpected behavior in the application under test or in the test script itself.

    • Common exceptions in Selenium include NoSuchElementException, ElementNotVisibleException, TimeoutException, and StaleElementReferenceException.

    • Handling exceptions in Selenium can be done using try-...

  • Answered by AI
  • Q5. What is feature and step definitions in cucumber BDD
  • Ans. 

    Feature files contain high-level description of the functionality to be tested, while step definitions are the implementation of the steps in the feature file using code.

    • Feature files are written in Gherkin syntax and describe the behavior of the application in plain text.

    • Step definitions are written in programming languages like Java, Ruby, etc., and map the steps in the feature file to automation code.

    • Feature files a...

  • Answered by AI
  • Q6. How to input data in cucumber
  • Ans. 

    Data can be input in Cucumber using feature files and step definitions.

    • Data can be input in feature files using scenarios and scenario outlines

    • Step definitions can be used to define the actions to be taken with the input data

    • Data tables can be used in feature files to input structured data

    • Examples keyword can be used in scenario outlines to provide multiple sets of input data

  • Answered by AI
  • Q7. Basic Java questions like access modifiers, method overloading and overriding
  • Q8. What is Test case, Test plan and Test Secenarios
  • Ans. 

    Test case is a set of conditions or variables under which a tester will determine whether a system under test satisfies requirements. Test plan is a document outlining the scope, approach, resources, and schedule of testing activities. Test scenarios are detailed descriptions of possible interactions with the system.

    • Test case: specific conditions to be tested, expected results, steps to execute

    • Test plan: overall strate...

  • Answered by AI
  • Q9. Hooks in Java
  • Ans. 

    Hooks in Java are methods that allow subclasses to override or extend the behavior of a superclass.

    • Hooks are commonly used in frameworks like JUnit and TestNG for test automation.

    • They are often used for setup and teardown operations before and after test methods.

    • Examples include @Before, @After, @BeforeClass, and @AfterClass annotations in JUnit.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The second round interview was quite challenging, with numerous questions focused on core Java topics such as data structures and linked lists. It felt less like a testing interview and more akin to a developer interview.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(10 Questions)

  • Q1. What is the output of below code class Animal{ Animal(){ System.out.println("animal is created") } class Dog extends Animal{ Dog(){ System.out.println("Dog is created")} class TestSuper4{ pub...
  • Ans. 

    The output of the code will be 'animal is created' followed by 'Dog is created'.

    • The code defines a class Animal with a constructor that prints 'animal is created'.

    • It also defines a class Dog that extends Animal, with a constructor that prints 'Dog is created'.

    • In the main method, an instance of Dog is created, which will trigger the constructors of both Animal and Dog classes.

  • Answered by AI
  • Q2. Output of this : System.out.println(10+20+"Hello"+30+40) - Explain
  • Q3. Output of this : String name="Hello"; name=name+"There"; system.out.println(name)
  • Ans. 

    The output will be 'HelloThere'

    • Concatenation of 'Hello' and 'There' results in 'HelloThere'

    • The final string is printed using System.out.println()

  • Answered by AI
  • Q4. StringBuffer buffer=new StringBuffer("Hello") buffer.append("There"); System.out.println(buffer);
  • Ans. 

    The code creates a StringBuffer object with 'Hello' and appends 'There' to it before printing the final string.

    • StringBuffer is mutable, so the original 'Hello' string can be modified

    • The append() method adds the specified string to the end of the buffer

    • The final output will be 'HelloThere'

  • Answered by AI
  • Q5. Which is valid or invalid a. ChromeDriver driver=new ChromeDriver(); b. WebDriver driver=new ChromeDriver(); c. WebDriver driver2=new WebDriver(); driver2=new ChromeDriver();
  • Ans. 

    Option a is valid, option b is valid, option c is invalid.

    • Option a is valid because ChromeDriver is a subclass of WebDriver, so it can be assigned to a WebDriver reference.

    • Option b is valid because ChromeDriver is a subclass of WebDriver, so it can be instantiated using a WebDriver reference.

    • Option c is invalid because WebDriver is an interface and cannot be instantiated directly. It can only be used as a reference typ

  • Answered by AI
  • Q6. Program to sort the input in descending order without using inbuild method/functions
  • Ans. 

    Sort input array of strings in descending order without using inbuilt functions

    • Iterate through the array and compare each element with the rest to find the largest element

    • Swap the largest element with the first element, then repeat the process for the remaining elements

    • Continue this process until the array is sorted in descending order

  • Answered by AI
  • Q7. Difference between findElement and findElements
  • Ans. 

    findElement returns the first matching element on the page, while findElements returns a list of all matching elements.

    • findElement returns a single WebElement matching the locator provided

    • findElements returns a list of WebElements matching the locator provided

    • findElement will throw NoSuchElementException if no element is found, while findElements will return an empty list

  • Answered by AI
  • Q8. Difference between getwindowhandle and getwindowhandles() and what is output type
  • Ans. 

    getwindowhandle returns the handle of the current window, getwindowhandles() returns handles of all open windows

    • getwindowhandle returns a single window handle, while getwindowhandles() returns a set of window handles

    • getwindowhandle is used to switch between windows in Selenium WebDriver

    • Output type of getwindowhandle is String, while output type of getwindowhandles() is Set

Answered by AI
  • Q9. Question on finding the xpaths on website
  • Q10. Difference between String and StringBuilder?
  • Ans. 

    String is immutable, while StringBuilder is mutable and more efficient for concatenating strings.

    • String is immutable, meaning its value cannot be changed once it is created.

    • StringBuilder is mutable, allowing for modifications to the string without creating a new object.

    • StringBuilder is more efficient for concatenating multiple strings as it does not create new objects each time.

    • Example: String str = "Hello"; StringBuil

  • Answered by AI

    Skills evaluated in this interview

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

    I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

    Round 1 - One-on-one 

    (7 Questions)

    • Q1. What is a constructor and it's purpose?
    • Ans. 

      A constructor is a special type of method in a class that is automatically called when an object of that class is created.

      • Constructors have the same name as the class they belong to

      • They are used to initialize the object's state or perform any necessary setup

      • Constructors can have parameters to customize the initialization process

      • Example: public class Car { public Car(String color) { this.color = color; } }

    • Answered by AI
    • Q2. Can you override a Static Method?
    • Ans. 

      Yes, a static method can be overridden in Java using the concept of method hiding.

      • In Java, static methods cannot be overridden in the traditional sense like instance methods.

      • When a subclass defines a static method with the same signature as a static method in the superclass, it is called method hiding.

      • Method hiding does not follow polymorphism and is resolved at compile time based on the reference type.

      • Example: class...

    • Answered by AI
    • Q3. Can you create a Static local variable inside a Static method
    • Ans. 

      Yes, a static local variable can be created inside a static method.

      • Yes, a static local variable can be declared inside a static method in programming languages like C++.

      • Static local variables retain their values between function calls.

      • Example: static void myStaticMethod() { static int count = 0; count++; }

    • Answered by AI
    • Q4. What is the memory allocation for a String?
    • Ans. 

      String memory allocation is dynamic and depends on the length of the string.

      • String memory allocation is dynamic and can change based on the length of the string.

      • In Java, a String object is stored in the heap memory.

      • Each character in a String typically takes up 2 bytes of memory.

      • String objects in Java are immutable, meaning once a String object is created, it cannot be changed.

    • Answered by AI
    • Q5. Can you create a Static method inside an Abstract class or Interface?
    • Ans. 

      Yes, you can create a static method inside an abstract class or interface.

      • Static methods can be defined in interfaces since Java 8.

      • Static methods in interfaces are used for providing utility methods that are not tied to any specific instance of the interface.

      • Static methods in abstract classes can be used for common functionality that does not require an instance of the class.

    • Answered by AI
    • Q6. What is the Parent class of Java?
    • Ans. 

      The parent class of Java is the Object class.

      • All classes in Java are directly or indirectly derived from the Object class.

      • The Object class is the root class in Java's class hierarchy.

      • It provides methods that are common to all objects in Java, such as toString(), equals(), and hashCode().

    • Answered by AI
    • Q7. What is Window Handles in Selenium?
    • Ans. 

      Window Handles in Selenium are unique identifiers used to handle multiple browser windows in a Selenium test script.

      • Window Handles are unique alphanumeric strings assigned to each browser window opened by Selenium.

      • They are used to switch between different browser windows during a test script execution.

      • Window Handles can be obtained using getWindowHandles() method in Selenium.

      • Example: Set handles = driver.getWindowHandl

    • Answered by AI

    Interview Preparation Tips

    Topics to prepare for Mphasis Automation Test Engineer interview:
    • Selenium
    • Java
    • OOPS
    • Manual Testing
    Interview preparation tips for other job seekers - Nowadays, the interviewers expect the same Java language of a Developer as a Tester. But, how will that be possible? If a Tester has the same knowledge as a Developer, then why would he/she become a Tester instead of a Developer? Please open up your thoughts to the Interviewer, so that they can think before confusing with the deep logical knowledge.

    Skills evaluated in this interview

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

    I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.

    Round 1 - One-on-one 

    (7 Questions)

    • Q1. Appium architecture
    • Q2. Java oops concepts n where did u apply that in automation framework
    • Ans. 

      Java OOPs concepts are used in automation framework design for better code organization and reusability.

      • Encapsulation: Used to hide the internal implementation details of classes and provide access through methods.

      • Inheritance: Allows for code reuse by creating parent-child relationships between classes.

      • Polymorphism: Enables methods to behave differently based on the object they are called on.

      • Abstraction: Helps in defin...

    • Answered by AI
    • Q3. How to handle otp
    • Ans. 

      OTP can be handled by generating, sending, and verifying it in automated tests.

      • Generate OTP using a random number generator

      • Send OTP to the user via email, SMS, or any other communication channel

      • Verify OTP entered by the user against the generated OTP

    • Answered by AI
    • Q4. How start appium in automation
    • Ans. 

      To start Appium in automation, you need to install Appium server, set up desired capabilities, and run the server.

      • Install Appium server using npm install -g appium

      • Set up desired capabilities in your test script

      • Start the Appium server using the command appium

    • Answered by AI
    • Q5. What are the types of mobile apps
    • Ans. 

      Types of mobile apps include native apps, web apps, and hybrid apps.

      • Native apps are developed for specific platforms like iOS or Android

      • Web apps are accessed through a web browser and do not need to be downloaded from an app store

      • Hybrid apps combine elements of both native and web apps

      • Examples include Instagram (native), Twitter (web), and Uber (hybrid)

    • Answered by AI
    • Q6. Program to remove duplicate letters in a string
    • Ans. 

      Program to remove duplicate letters in a string

      • Iterate through the string and keep track of seen characters in a set

      • Append characters to a new string only if they are not already in the set

      • Return the new string without duplicate letters

    • Answered by AI
    • Q7. How to perform swipe action in mobile devices
    • Ans. 

      Swipe action in mobile devices can be performed using swipe() method in Appium or TouchAction class in Selenium.

      • Use swipe() method in Appium to perform swipe action in mobile devices

      • Alternatively, use TouchAction class in Selenium for swipe action

      • Specify the start and end coordinates for the swipe action

      • Adjust the duration and speed of the swipe as needed

    • Answered by AI

    Skills evaluated in this interview

    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (1 Question)

    • Q1. Basic selenium and Basic Java
    Round 2 - Technical 

    (1 Question)

    • Q1. Java Program - Reverse a string Selenium - stale element
    • Ans. 

      Reverse a string using Java program and handle stale element in Selenium

      • Create a Java program to reverse a string using StringBuilder or char array

      • In Selenium, handle stale element exception by refreshing the element or using WebDriverWait

      • Example: Java program - input: 'hello', output: 'olleh'; Selenium - handle stale element by refreshing the element before interacting with it

    • Answered by AI
    Round 3 - HR 

    (1 Question)

    • Q1. What is your expected salary
    • Ans. 

      My expected salary is based on my experience, skills, and the market rate for Automation Test Engineers.

      • I have researched the average salary range for Automation Test Engineers in this location.

      • I am looking for a competitive salary that reflects my expertise in automation testing.

      • I am open to negotiation based on the overall compensation package offered.

    • Answered by AI
    Interview experience
    3
    Average
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (2 Questions)

    • Q1. List, lambda function, reverse string program
    • Q2. Sort the list, dictionary
    Round 2 - Technical 

    (1 Question)

    • Q1. OOP concept, Decorator, list to dictionary, Linux

    Tao Digital Interview FAQs

    How many rounds are there in Tao Digital Auto CAD Engineer interview?
    Tao Digital interview process usually has 2 rounds. The most common rounds in the Tao Digital interview process are Aptitude Test and HR.

    Tell us how to improve this page.

    Tao Digital Auto CAD Engineer Interview Process

    based on 1 interview

    Interview experience

    3
      
    Average
    View more

    Interview Questions from Similar Companies

    TCS Interview Questions
    3.7
     • 10.4k Interviews
    Accenture Interview Questions
    3.9
     • 8.2k Interviews
    Infosys Interview Questions
    3.6
     • 7.6k Interviews
    Wipro Interview Questions
    3.7
     • 5.6k Interviews
    Cognizant Interview Questions
    3.8
     • 5.6k Interviews
    Capgemini Interview Questions
    3.7
     • 4.8k Interviews
    Tech Mahindra Interview Questions
    3.5
     • 3.8k Interviews
    HCLTech Interview Questions
    3.5
     • 3.8k Interviews
    Genpact Interview Questions
    3.8
     • 3k Interviews
    LTIMindtree Interview Questions
    3.8
     • 3k Interviews
    View all
    GIS Engineer
    79 salaries
    unlock blur

    ₹1.8 L/yr - ₹3.5 L/yr

    Senior Software Engineer
    31 salaries
    unlock blur

    ₹14 L/yr - ₹33 L/yr

    Senior GIS Engineer
    10 salaries
    unlock blur

    ₹2.8 L/yr - ₹3.5 L/yr

    Junior GIS Engineer
    9 salaries
    unlock blur

    ₹2 L/yr - ₹2.5 L/yr

    Principal Software Engineer
    7 salaries
    unlock blur

    ₹21 L/yr - ₹30 L/yr

    Explore more salaries
    Compare Tao Digital with

    Webenza

    3.6
    Compare

    WATConsult

    3.3
    Compare

    Interactive Avenues

    3.7
    Compare

    Mirum

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