Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Ascendeum Team. If you also belong to the team, you can get access from here

Ascendeum Verified Tick

Compare button icon Compare button icon Compare
4.1

based on 14 Reviews

Filter interviews by

Ascendeum Python Automation Engineer Interview Questions and Answers

Updated 7 Dec 2023

Ascendeum Python Automation Engineer Interview Experiences

2 interviews found

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

I applied via LinkedIn and was interviewed in Nov 2023. 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 - HR 

(1 Question)

  • Q1. It was a automated HR interview where you will get a time duration to speak on a specific question . There were like 7 questions
  • Ans. I recorded all answers and never heard from them again. No closure. No email of rejection. After one/two months post floated again on LinkedIn. I applied again and this time there was different process. Three technical rounds.
  • Answered Anonymously
Round 3 - Coding Test 

Print a diamond structure using letters.

Round 4 - Coding Test 

Use selenium to open and browse websites. I completed it.

Round 5 - Coding Test 

Selenium again. Find value of a parameter in the website. Any guy proficient in selenium will do it in 20 minutes. I did it in 40 minutes because I don't use selenium often.

Interview Preparation Tips

Interview preparation tips for other job seekers - They will ghost candidates. Too choosy for a reason/without reason ?! The post floated again in job portals 😂 this is the third time of advertising that I know of in the same year.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Indeed and was interviewed in Mar 2023. There were 3 interview rounds.

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

First round is a basic task where you have to use python selenium to open a website and than calculate the total time needed in opening and closing the website.

Round 3 - Coding Test 

In the second round they asked me to write a code in python which prints the second highest number in the list( remember you need to remove the duplicates and than print the list ). And try to do this question using two lists(one original list that contains the numbers and another empty list with it ). I did using sets and lists for removing the duplicates and than printing the second highest number in the list. They said they will get back to me but they did not select. I should have done it using two different lists.

Python Automation Engineer Interview Questions Asked at Other Companies

asked in Calsoft
Q1. Find the largest no. to be created from the list of numbers in th ... read more
Q2. How to write test cases & action, How to create list & di ... read more
Q3. Python - Write program from Prime numbers between 1 to 100
asked in Capgemini
Q4. 1. What is Selenium? 2. What are the processes behind initiating ... read more
asked in Calsoft
Q5. Find 2nd max no. from the list

Interview questions from similar companies

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

I applied via Walk-in and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Dictionary manipulation
  • Q2. Exception handling question

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview went well. Python code was given to solve.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Nov 2023. 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 

(6 Questions)

  • Q1. Python theoretical questions.
  • Q2. Print random ip address
  • Ans. 

    Generate and print a random IP address.

    • Use the random module to generate random numbers for each octet of the IP address.

    • Ensure that the generated IP address is valid by checking that each octet is within the range of 0-255.

    • Join the octets together with periods to form the complete IP address.

    • Print the generated IP address.

  • Answered by AI
  • Q3. Print the true or false by checking the input is ordered or not input is {[()]} 2nd input is ({[)}]
  • Ans. 

    The input is checked for order and the result is printed as true or false.

    • Check if the input is ordered by comparing opening and closing brackets

    • Use a stack to keep track of opening brackets

    • If a closing bracket is encountered, pop the top element from the stack and check if it matches the closing bracket

    • If the stack is empty at the end, the input is ordered

  • Answered by AI
  • Q4. Print reverse of string by using for loop
  • Ans. 

    The code snippet prints the reverse of a given string using a for loop.

    • Initialize an empty string to store the reversed string.

    • Iterate through each character in the original string using a for loop.

    • Append each character to the beginning of the reversed string.

    • Print the reversed string.

  • Answered by AI
  • Q5. Oops interview questions
  • Q6. What is decorator
  • Ans. 

    A decorator is a design pattern in Python that allows a user to add new functionality to an existing object or function.

    • Decorators are denoted by the @ symbol followed by the name of the decorator function.

    • They are used to modify the behavior of the decorated object or function without directly changing its source code.

    • Decorators can be used for adding logging, timing, caching, authentication, and other cross-cutting c...

  • Answered by AI
Round 3 - Technical 

(6 Questions)

  • Q1. Explain one scenario about automation you had in previous project
  • Ans. 

    Automated the testing of a web application by creating test scripts using Python and Selenium.

    • Developed automated test scripts using Python and Selenium

    • Executed test scripts to validate the functionality of a web application

    • Generated test reports and identified defects for further investigation

    • Improved test efficiency and reduced manual effort by automating repetitive tasks

  • Answered by AI
  • Q2. What is dict in python
  • Ans. 

    A dict in Python is an unordered collection of key-value pairs.

    • Dicts are enclosed in curly braces {}

    • Each key-value pair is separated by a colon :

    • Keys must be unique and immutable (strings, numbers, or tuples)

    • Values can be of any type and can be duplicated

    • Dicts are mutable and can be modified by adding, updating, or deleting key-value pairs

  • Answered by AI
  • Q3. What is web application testing
  • Ans. 

    Web application testing is the process of evaluating the functionality, usability, and security of a web application.

    • It involves testing the application's features, such as forms, navigation, and user interactions.

    • It also includes checking for compatibility across different browsers and devices.

    • Security testing is crucial to identify vulnerabilities and protect against attacks.

    • Performance testing ensures the applicatio...

  • Answered by AI
  • Q4. Jira defect tool
  • Q5. Inheritance in oops
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows code reuse and promotes modularity.

    • The class that is being inherited from is called the parent class or base class.

    • The class that inherits from the parent class is called the child class or derived class.

    • The child class can access all the public and protected members of the paren...

  • Answered by AI
  • Q6. Diff between list and tuple
  • Ans. 

    Lists and tuples are both sequence data types in Python, but they have some key differences.

    • Lists are mutable, meaning their elements can be changed, added, or removed.

    • Tuples are immutable, meaning their elements cannot be changed once defined.

    • Lists use square brackets [], while tuples use parentheses ().

    • Lists are typically used for collections of similar items, while tuples are used for heterogeneous data.

    • Lists have m...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Dictionary Manipulation
  • Q2. Exception handling
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Inheritance coding test

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

(1 Question)

  • Q1. What is dunder method
  • Ans. 

    Dunder method refers to special methods in Python that start and end with double underscores (__).

    • Dunder methods are also known as magic methods or special methods.

    • They are used to define behavior for built-in operations in Python, such as addition, subtraction, comparison, etc.

    • Examples of dunder methods include __init__ for object initialization, __add__ for addition, __str__ for string representation, etc.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
No response

I was interviewed in Aug 2023.

Round 1 - One-on-one 

(1 Question)

  • Q1. 1. What is Selenium? 2. What are the processes behind initiating the web driver? 3. What are immutable and Mutable in Python? 4. what is the difference between method overloading and overriding?
  • Ans. 

    Selenium is a popular open-source automation tool used for web application testing.

    • Selenium is used for automating web browsers.

    • It supports multiple programming languages including Python.

    • Selenium WebDriver is used to interact with web elements.

    • It can simulate user actions like clicking, typing, etc.

    • Selenium Grid allows parallel execution on multiple machines.

    • Selenium IDE is a record and playback tool for creating test

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Interview start with self introduction then ask some coding questions to check your programming logic .
  • Q2. Questions also from OOPS python.
  • Q3. They ask about ,what is the output of this program

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare with Python programing with all oops concepts.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Aug 2022. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. What is technicality
  • Ans. 

    Technicality refers to the detailed and specific aspects of a subject or process.

    • Technicality involves understanding the intricacies and complexities of a system or concept.

    • It often requires specialized knowledge or expertise to navigate technicalities effectively.

    • In the context of automation engineering, technicality may involve understanding the intricacies of programming languages and frameworks.

    • Being familiar with ...

  • Answered by AI
  • Q2. What are fruits
  • Ans. 

    Fruits are edible, typically sweet or sour, seed-bearing structures that grow on plants.

    • Fruits are often categorized as either fleshy fruits (e.g. apples, oranges) or dry fruits (e.g. nuts, beans).

    • They are rich in vitamins, minerals, and dietary fiber.

    • Fruits can be consumed fresh, dried, juiced, or cooked in various dishes.

    • Some fruits are considered berries (e.g. strawberries, bananas) while others are classified as dr

  • Answered by AI
  • Q3. Why is Dalhousie a city
  • Ans. 

    Dalhousie comes after Shimla and before what we can say are Himalayan cities of Shimla and Dehradun

  • Answered by Bhavnit Singh
  • Q4. Why were Aryans arrogant?
  • Ans. 

    Bus Station has a platform for people to board the buses.

  • Answered by Bhavnit Singh
  • Q5. Why is a Fish?
  • Ans. 

    Fish are aquatic animals that have adapted to living in water through various evolutionary mechanisms.

    • Fish have gills that allow them to extract oxygen from water, unlike land animals that breathe air.

    • Fish have fins and streamlined bodies that help them move efficiently in water.

    • Fish have scales that protect their bodies and reduce friction as they swim.

    • Fish have a swim bladder that helps them control their buoyancy in...

  • Answered by AI
Round 2 - Case Study 

To observe someone understanding the coding process

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep going forward with your studies

Ascendeum Interview FAQs

How many rounds are there in Ascendeum Python Automation Engineer interview?
Ascendeum interview process usually has 4 rounds. The most common rounds in the Ascendeum interview process are Coding Test, Resume Shortlist and Assignment.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
HR Assistant
7 salaries
unlock blur

₹2.2 L/yr - ₹4.1 L/yr

Associate Data Scientist
4 salaries
unlock blur

₹10 L/yr - ₹13.8 L/yr

Associate Project Manager
4 salaries
unlock blur

₹5.9 L/yr - ₹11.1 L/yr

Front end Developer
4 salaries
unlock blur

₹6 L/yr - ₹6.2 L/yr

Associate UI Engineer
4 salaries
unlock blur

₹6 L/yr - ₹9 L/yr

Explore more salaries
Compare Ascendeum with

Accenture

3.9
Compare

Deloitte

3.8
Compare

KPMG India

3.5
Compare

PwC

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