Upload Button Icon Add office photos

Filter interviews by

Accenture Tosca Automation Test Engineer Interview Questions and Answers

Updated 5 Apr 2024

Accenture Tosca Automation Test Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How to automate Sql queries through Tosca
  • Ans. 

    Automating SQL queries through Tosca involves using the Tosca Query Language (TQL) module.

    • Use the Tosca Query Language (TQL) module to write and execute SQL queries.

    • Create TQL modules in Tosca to automate the execution of SQL queries.

    • Utilize Tosca's data-driven testing capabilities to automate SQL queries with different input data.

    • Integrate Tosca with database tools like SQL Server Management Studio for executing and v

  • Answered by AI
  • Q2. What is TDM ?
  • Ans. 

    TDM stands for Test Data Management. It involves creating, storing, managing, and providing test data for automated testing.

    • TDM involves creating and maintaining test data for automated testing

    • It ensures that the test data is accurate, relevant, and up-to-date

    • TDM helps in improving the efficiency and effectiveness of automated testing

    • Examples of TDM tools include Informatica, Delphix, and IBM InfoSphere

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Mainly asked from project

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Question on tosca db automation
  • Q2. Api automation questions
  • Q3. Tosca basic queations
  • Q4. Dex configuration setup
  • Ans. 

    Dex configuration setup involves configuring the data exchange between Tosca and external systems.

    • Dex configuration is done in Tosca Commander under the 'Dex' tab.

    • You can set up connections to external systems like JIRA, Jenkins, etc.

    • Configuration includes defining endpoints, authentication details, and data mapping.

    • Testing the configuration is important to ensure smooth data exchange.

  • Answered by AI
  • Q5. Scenario based questions
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tosca related questions only. They were tough,

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for tosca only
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. TOSCA Componants business parameters embeded controls

Interview Preparation Tips

Interview preparation tips for other job seekers - Bee Keen on your Answers
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
    4
    Good
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (5 Questions)

    • Q1. Difference between @BeforeMethod vs @BeforeTest
    • Ans. 

      The @BeforeMethod annotation is used to run a method before each test method in a class, while @BeforeTest is used to run a method before any test method in a test tag.

      • The @BeforeMethod annotation is specific to TestNG framework and is used to initialize test data before each test method.

      • @BeforeTest annotation is also specific to TestNG and is used to initialize test data before any test method in a test tag.

      • If a class...

    • Answered by AI
    • Q2. Difference between get vs navigate.to
    • Q3. How you extract data from excel file and which jar file is used
    • Q4. Methods of select class
    • Q5. Explicit wait conditions

    Skills evaluated in this interview

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

    I applied via Company Website and was interviewed in Oct 2024. There was 1 interview round.

    Round 1 - Technical 

    (4 Questions)

    • Q1. Write java program to print sum of digits from a given string eg: "abcd23"
    • Ans. 

      Java program to print sum of digits from a given string

      • Iterate through each character in the string

      • Check if the character is a digit using Character.isDigit() method

      • Convert the digit character to integer using Character.getNumericValue() method

      • Sum up all the digits found in the string

    • Answered by AI
    • Q2. Explain oops concepts used in your framework with example?
    • Ans. 

      OOPs concepts used in the framework include inheritance, polymorphism, encapsulation, and abstraction.

      • Inheritance is used to create a parent-child relationship between classes. For example, a base class 'Page' can be inherited by 'HomePage' and 'LoginPage' classes.

      • Polymorphism allows objects of different classes to be treated as objects of a common superclass. For instance, a 'click' method can be implemented different...

    • Answered by AI
    • Q3. Explain polymorphism
    • Ans. 

      Polymorphism is the ability of a single function or method to operate on different types of data.

      • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

      • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

      • Example of compile-time polymorphism: function overloading in Java.

      • Example of runtime polymorphism: method overriding in Java

    • Answered by AI
    • Q4. Java program to print the sum of elements in string array eg: String[] arr = {"1","2","3"}
    • Ans. 

      Java program to print the sum of elements in a string array.

      • Convert each element in the string array to an integer using Integer.parseInt()

      • Sum up all the integers to get the total sum

    • Answered by AI

    Skills evaluated in this interview

    Interview experience
    3
    Average
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (2 Questions)

    • Q1. How do agile methodologies function in B2B projects?
    • Q2. What is your experience with barcode scanners?
    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
    Interview experience
    3
    Average
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

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

    Round 1 - Technical 

    (2 Questions)

    • Q1. What is Hard assert
    • Ans. 

      Hard assert is a type of assertion in test automation that stops the test execution immediately when a failure occurs.

      • Hard assert is used to validate the expected outcome of a test case

      • If the assertion fails, the test execution is halted and marked as failed

      • It is commonly used in automated test scripts to ensure the correctness of the application under test

    • Answered by AI
    • Q2. What is soft assert
    • Ans. 

      Soft assert is a way to continue the execution of a test case even after an assertion failure.

      • Soft assert does not stop the execution of the test case when an assertion fails.

      • It is useful when you want to log the failure but continue with the remaining test steps.

      • Soft assert is commonly used in test automation frameworks like TestNG in Java.

    • Answered by AI

    Skills evaluated in this interview

    Accenture Interview FAQs

    How many rounds are there in Accenture Tosca Automation Test Engineer interview?
    Accenture interview process usually has 1 rounds. The most common rounds in the Accenture interview process are Technical.
    What are the top questions asked in Accenture Tosca Automation Test Engineer interview?

    Some of the top questions asked at the Accenture Tosca Automation Test Engineer interview -

    1. How to automate Sql queries through To...read more
    2. What is TD...read more

    Tell us how to improve this page.

    Interview Questions from Similar Companies

    TCS Interview Questions
    3.7
     • 10.1k Interviews
    Infosys Interview Questions
    3.7
     • 7.4k Interviews
    Wipro Interview Questions
    3.7
     • 5.5k Interviews
    Cognizant Interview Questions
    3.8
     • 5.5k Interviews
    Capgemini Interview Questions
    3.8
     • 4.7k Interviews
    Tech Mahindra Interview Questions
    3.6
     • 3.7k Interviews
    HCLTech Interview Questions
    3.5
     • 3.7k Interviews
    Genpact Interview Questions
    3.9
     • 3k Interviews
    LTIMindtree Interview Questions
    3.9
     • 2.8k Interviews
    IBM Interview Questions
    4.1
     • 2.3k Interviews
    View all
    Accenture Tosca Automation Test Engineer Salary
    based on 35 salaries
    ₹5 L/yr - ₹11.5 L/yr
    11% more than the average Tosca Automation Test Engineer Salary in India
    View more details

    Accenture Tosca Automation Test Engineer Reviews and Ratings

    based on 2 reviews

    4.0/5

    Rating in categories

    5.0

    Skill development

    4.0

    Work-Life balance

    4.0

    Salary & Benefits

    4.0

    Job Security

    4.0

    Company culture

    4.0

    Promotions/Appraisal

    4.0

    Work Satisfaction

    Explore 2 Reviews and Ratings
    Application Development Analyst
    38.8k salaries
    unlock blur

    ₹3 L/yr - ₹12 L/yr

    Application Development - Senior Analyst
    26.3k salaries
    unlock blur

    ₹6.8 L/yr - ₹20.2 L/yr

    Team Lead
    24.1k salaries
    unlock blur

    ₹7 L/yr - ₹25.2 L/yr

    Senior Software Engineer
    18.4k salaries
    unlock blur

    ₹6 L/yr - ₹19 L/yr

    Software Engineer
    17.6k salaries
    unlock blur

    ₹3.6 L/yr - ₹12.8 L/yr

    Explore more salaries
    Compare Accenture with

    TCS

    3.7
    Compare

    Cognizant

    3.8
    Compare

    Capgemini

    3.8
    Compare

    Infosys

    3.7
    Compare

    Calculate your in-hand salary

    Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
    Did you find this page helpful?
    Yes No
    write
    Share an Interview