Upload Button Icon Add office photos

Filter interviews by

Leapwork India Interview Questions and Answers

Updated 12 Sep 2024

Leapwork India Interview Experiences

Popular Designations

4 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 1. Reverse a string without reverse function. 2. Palindrome check - a function with return value. 3. Exposure to locator strategies, and axes.
  • Ans. 

    Answering questions related to string manipulation, palindrome check, and locator strategies.

    • To reverse a string without using the reverse function, you can iterate through the characters of the string from the end to the beginning and build a new string.

    • For palindrome check, compare the original string with its reverse. If they are the same, then it is a palindrome.

    • Locator strategies in automation testing involve iden...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. 1. Character count without inbuilt libraries 2. Find prime numbers 3. Set of situation based questions 4. Why Leapwork 5. Why are you looking for a job change.
  • Ans. 

    1. To count characters without using inbuilt libraries, use a loop to iterate through the string and increment a counter for each character. 2. To find prime numbers, use a loop to check divisibility by numbers less than the square root of the number. 3. Situation based questions may involve problem-solving scenarios related to automation. 4. Leapwork is chosen for its user-friendly interface and comprehensive automati...

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. 1. How to parse HTML. Logic 2. Basics of OOPs 3. Set of behavior questions on how to handle conflicts.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be comfortable with your basic concepts. Do no go for over-kill

Skills evaluated in this interview

Automation Consultant Interview Questions asked at other Companies

Q1. 1. Character count without inbuilt libraries 2. Find prime numbers 3. Set of situation based questions 4. Why Leapwork 5. Why are you looking for a job change.
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Recruitment Consulltant

Round 1 - Technical 

(1 Question)

  • Q1. Selenium architecture Locators Code to find LCM of 3 numbers
  • Ans. 

    Selenium architecture involves locators to identify elements on a web page. Code to find LCM of 3 numbers requires mathematical logic.

    • Selenium architecture includes different types of locators like ID, Name, XPath, CSS Selector, etc.

    • To find LCM of 3 numbers, you can use a loop to find the least common multiple of the numbers.

    • Example: LCM of 3, 6, and 9 can be found by calculating LCM(3, LCM(6, 9)).

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Basic selenium questions

Skills evaluated in this interview

Senior Automation Engineer Interview Questions asked at other Companies

Q1. 1. Print numbers from 1 to 100 without using any loop ? 2. How do you take out duplicate values from array without using any set ? if you iterate the array and take out unique values , how do you do it for 2lakh items in less time? 3. Diffe... read more
View answer (1)
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Monster and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Case Study 

Asked stupid questions

Round 2 - HR 

(2 Questions)

  • Q1. What are your expectations?
  • Ans. 

    I expect clear communication, defined goals, supportive team, and opportunities for growth.

    • Clear communication with stakeholders and team members

    • Defined project goals and expectations

    • Supportive team environment

    • Opportunities for professional growth and development

  • Answered by AI
  • Q2. Where do you see yourself 5 years down the lane?
  • Ans. 

    In 5 years, I see myself leading a team of CSM professionals, implementing innovative strategies, and driving successful customer outcomes.

    • Leading a team of CSM professionals

    • Implementing innovative strategies

    • Driving successful customer outcomes

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join this stupid company full of idiots.

CSM Project Manager Interview Questions asked at other Companies

Q1. If vehicle not start? What u should do.
View answer (1)

I applied via Naukri.com and was interviewed in Jun 2022. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Asked the basic questions and about the company.
Round 2 - Technical 

(1 Question)

  • Q1. C, Java, sql, Coding question, inheritance encapsulation

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not ever try to waste your time over this company. They'll waste your time. I have reviewed them and they made me to remove my review from google. Speaking to blacklist me . They hire through consultants and these consultants do not even know how to talk even,

Automation Engineer Interview Questions asked at other Companies

Q1. 16) What is modbus ? Types of modbus? How many slaves we can connect to one master
View answer (1)

Leapwork India interview questions for popular designations

 Senior Automation Engineer

 (1)

 Automation Engineer

 (1)

 Automation Consultant

 (1)

 CSM Project Manager

 (1)

Interview questions from similar companies

I applied via Company Website and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on Java,SQL,some trending technologies(IOT,Big data),pattern questions, programming questions with different approaches.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of DSA, have knowledge about the databases, some common dml ,ddl statements, programming knowledge of a particular language like C,Java, python,etc...have good command on oops concepts... little bit of frameworks knowledge will also help

I applied via Company Website and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Attended the codevita competition in final year of college.

Round 2 - Technical 

(3 Questions)

  • Q1. About College Project
  • Q2. Some very basics of java
  • Q3. Experience of college project as a team

Interview Preparation Tips

Interview preparation tips for other job seekers - Codevita is a really good platform to help you join TCS as a final year graduate in college

I applied via Campus Placement and was interviewed before Mar 2021. There were 2 interview rounds.

Round 1 - Coding Test 
Round 2 - Technical 

(5 Questions)

  • Q1. If you cleared Aptitude and Coding, Mostly Interview will be cleared with some basics questions like OOPs concepts, sort functions kind of questions.
  • Q2. Explain OOPs concept in JAVA?
  • Ans. 

    OOPs concept in JAVA is a programming paradigm that focuses on objects and their interactions.

    • OOPs stands for Object-Oriented Programming

    • It involves the use of classes, objects, inheritance, polymorphism, and encapsulation

    • Classes are used to define objects and their properties

    • Objects are instances of classes that can interact with each other

    • Inheritance allows for the creation of new classes based on existing ones

    • Polymo...

  • Answered by AI
  • Q3. Function to sort an array in Java?
  • Ans. 

    Java provides Arrays.sort() method to sort an array.

    • Use Arrays.sort() method to sort an array of strings.

    • The method sorts the elements in ascending order by default.

    • To sort in descending order, use Collections.reverseOrder() method.

  • Answered by AI
  • Q4. Tell me about yourself?
  • Q5. Final year project which you worked on?

Interview Preparation Tips

Interview preparation tips for other job seekers - Most of people clears Aptitude/Coding round. clears interview for freshers recruit

Skills evaluated in this interview

I applied via Newspaper Ad and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Technical 

(1 Question)

  • Q1. Basic questions of java.
Round 3 - HR 

(1 Question)

  • Q1. Intro and other hr related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover the basic questions regarding the programming language.

System Engineer Interview Questions & Answers

TCS user image Arham Khokhar

posted on 24 Apr 2022

I applied via Company Website and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

It's totally based on Basic understanding of concepts such as Linear arrangement, circular arrangement، blood relation, direction sense, ratio proportion, time, speed, distance

Round 2 - Technical 

(3 Questions)

  • Q1. It's based on OOPS Concepts,
  • Q2. Strength and weaknesses
  • Q3. About yourself, about educational background, why should we hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - Show your confidence ✨️ you will be selected with ease

I applied via Naukri.com and was interviewed before Sep 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Entry level aptitude test

Round 3 - One-on-one 

(1 Question)

  • Q1. Introduction and about college project.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a really good experience working in TCS

Leapwork India Interview FAQs

How many rounds are there in Leapwork India interview?
Leapwork India interview process usually has 2-3 rounds. The most common rounds in the Leapwork India interview process are Technical, One-on-one Round and Behavioral.
How to prepare for Leapwork India 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 Leapwork India. The most common topics and skills that interviewers at Leapwork India expect are Automation Testing, Selenium, Agile, microsoft and Communication Skills.
What are the top questions asked in Leapwork India interview?

Some of the top questions asked at the Leapwork India interview -

  1. 1. Character count without inbuilt libraries 2. Find prime numbers 3. Set of si...read more
  2. 1. Reverse a string without reverse function. 2. Palindrome check - a function ...read more
  3. Selenium architecture Locators Code to find LCM of 3 numb...read more

Tell us how to improve this page.

Leapwork India Interview Process

based on 4 interviews

Interview experience

2.8
  
Poor
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
NICE Interview Questions
3.6
 • 79 Interviews
Pegasystems Interview Questions
3.6
 • 30 Interviews
Uipath Interview Questions
3.8
 • 15 Interviews
Kofax Interview Questions
3.6
 • 4 Interviews
AntWorks Interview Questions
3.2
 • 3 Interviews
WorkFusion Interview Questions
2.5
 • 1 Interview
View all

Leapwork India Reviews and Ratings

based on 30 reviews

3.5/5

Rating in categories

3.3

Skill development

3.8

Work-life balance

3.7

Salary

2.7

Job security

3.4

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 30 Reviews and Ratings
Automation Engineer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Engineer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior QA Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Automation Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Leapwork India with

Uipath

3.8
Compare

Automation Anywhere

3.8
Compare

Blue Prism

5.0
Compare

WorkFusion

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