Upload Button Icon Add office photos

Filter interviews by

WonderBotz Interview Questions and Answers

Updated 9 Oct 2024

WonderBotz Interview Experiences

Popular Designations

5 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - HR 

(2 Questions)

  • Q1. Introduction round
  • Q2. Strengths and weaknesses

Junior Consultant Interview Questions asked at other Companies

Q1. Difference between standard and custom objects? Difference between flow and process builder, and which is better in which way? What are triggers? Write a basic trigger to update contacts from account when certain changes are made. Security ... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. RE Framework in details
  • Ans. 

    RE Framework is a Robotic Enterprise Framework for automating business processes.

    • RE Framework is a template for building automation projects in UiPath

    • It includes components like Init, Process, End, and Exception handling

    • It follows a state machine design pattern for better control and reusability

  • Answered by AI
  • Q2. Orchestrator Component

Interview Preparation Tips

Topics to prepare for WonderBotz Robotic Process Automation Developer interview:
  • UiPath
  • Reframework
  • Python
  • SQL
Interview preparation tips for other job seekers - Focus on basics questions

Skills evaluated in this interview

Robotic Process Automation Developer Interview Questions asked at other Companies

Q1. RE Framework in details
View answer (1)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. What is tech stack?
  • Ans. 

    Tech stack refers to the combination of programming languages, tools, frameworks, and technologies used to build and run a software application.

    • Tech stack includes programming languages like Java, Python, JavaScript, etc.

    • It also includes tools like Git, Jenkins, Docker, etc.

    • Frameworks such as React, Angular, Spring, etc., are part of the tech stack.

    • Technologies like AWS, MySQL, MongoDB, etc., are also included in the t

  • Answered by AI
  • Q2. Tell about yourself.
Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain your portfolio.
  • Q2. What are your expectations? (compensation)

Skills evaluated in this interview

Lead Technical Writer Interview Questions asked at other Companies

Q1. What is the difference between CCMS and ECMS?
View answer (1)

I applied via Campus Placement and was interviewed in Aug 2022. There were 4 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 - Group Discussion 

The GD was on like a topic where they have given us a question like for us was if we have to go across a glacier when we r inside a ship which path we will choose and why.

Round 3 - Coding Test 

They gave us normal one coding question to solve like armstrong number .

Round 4 - One-on-one 

(2 Questions)

  • Q1. The question was more focused on the resume. They are scrutinizing the resume very carefully.
  • Q2. The questions were general about yourself and internships and projects. They were looking for confident person and were also asking questions to see how we will react to it.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident with what you have learned and with confidence speak your views.

Junior Developer Interview Questions asked at other Companies

Q1. If a client website is in trouble, they are bleeding money, would you show the client the watch and say my time is over, or are you someone who will stay up all night unless problem is solved?
View answer (1)

WonderBotz interview questions for popular designations

 Junior Consultant

 (2)

 Robotic Process Automation Developer

 (1)

 Lead Technical Writer

 (1)

 Junior Developer

 (1)

I applied via Campus Placement and was interviewed in Sep 2022. 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 - Aptitude Test 

The duration of aptitude test was around 60mins for 55 questions. It includes qualitative, reasoning , English , basic coding questions

Round 3 - Group Discussion 

Everyone will be given on spot topic which depends upon your presence of mind. A topic will be given in which reading time was 7min and GD round was for next 15 min

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewers were quite chilled and overall we had fun

Junior Consultant Interview Questions asked at other Companies

Q1. Difference between standard and custom objects? Difference between flow and process builder, and which is better in which way? What are triggers? Write a basic trigger to update contacts from account when certain changes are made. Security ... read more
View answer (2)

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: There were 4 coding questions. All of them were simple. We wrote code on our laptop and submited code to volunteer in their pendrive. I soved three of them correctly and one partially correct. Still got shortlisted.
Tips: Skip
Duration: 90 minutes
Total Questions: 4

Round: Technical Interview
Experience: They asked me everything from my resume. So one should know everything about their projects and every point in resume. Also they asked few other technical questions.

Skill Tips: Do maximum questions from the site mentioned below. Also particaipate in quizzes and hackathons from hackerrank.com/ and -----/
Skills: Algorithms, Data structures
College Name: IIT BOMBAY

I applied via Walk-in and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself
  • Q2. Process details
  • Q3. Company information

Interview Preparation Tips

Interview preparation tips for other job seekers - Be frank and give proper answers

I applied via Naukri.com and was interviewed before Jun 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Financial domain

Interview Preparation Tips

Interview preparation tips for other job seekers - Listen to questions and only answer that.Dont get overexcited.Take a deep breath

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

Round 1 - Coding Test 

90 minute test on hacker rank consisting of 3 coding questions all of medium difficulty. Most candidates are required to solve more than 1 question.

Round 2 - Technical 

(3 Questions)

  • Q1. Questions on concepts of OOPS and Operating Systems.
  • Q2. Find least common ancestor of a binary tree.
  • Ans. 

    Find the lowest common ancestor of a binary tree.

    • Traverse the tree recursively from the root node.

    • If the current node is null or matches either of the given nodes, return the current node.

    • Recursively search for the nodes in the left and right subtrees.

    • If both nodes are found in different subtrees, return the current node.

    • If both nodes are found in the same subtree, continue the search in that subtree.

  • Answered by AI
  • Q3. Find first missing positive integer from an array for non-negative integers.
  • Ans. 

    Find first missing positive integer from an array of non-negative integers.

    • Create a hash set to store all positive integers in the array

    • Loop through the array and add all positive integers to the hash set

    • Loop through positive integers starting from 1 and return the first missing integer not in the hash set

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Design a parking lot
  • Ans. 

    Design a parking lot

    • Consider the size and capacity of the parking lot

    • Decide on the layout and organization of parking spaces

    • Implement a system to manage parking availability and reservations

    • Include features like ticketing, payment, and security

    • Consider scalability and future expansion

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Given a grid which represents an ocean( For all index i,j if mat[i][j] = 1 is island and mat[i][j] = 0 means water). Find the island with largest area.
  • Q2. Given list of strings group them into distinct anagrams.
  • Ans. 

    Group list of strings into distinct anagrams.

    • Create a hash table with sorted string as key and list of anagrams as value.

    • Iterate through the list of strings and add each string to its corresponding anagram list in the hash table.

    • Return the values of the hash table as a list of lists.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Arcesium Senior Software Engineer interview:
  • Low Level Design
  • Object Oriented Programming
  • Data Structures
  • Algorithms
  • DBMS
Interview preparation tips for other job seekers - Focus on Data Structures & Algorithms and Low Level Designing. Some brushup of DBMS will also help.

Skills evaluated in this interview

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

Interview Questionnaire 

7 Questions

  • Q1. What are properties of input box?
  • Ans. 

    Properties of input box include type, size, placeholder, value, and disabled status.

    • Type: Specifies the type of input (text, password, email, etc.)

    • Size: Defines the width of the input box in characters

    • Placeholder: Text displayed in the input box when it is empty

    • Value: The current value entered in the input box

    • Disabled: Determines if the input box is disabled or not

  • Answered by AI
  • Q2. Difference between find element and element exist?
  • Ans. 

    find element is used to locate a specific element on a webpage, while element exist checks if an element is present or not.

    • find element is used to locate an element based on its attributes or properties

    • element exist checks if an element is present on the webpage

    • find element returns the first matching element, while element exist returns a boolean value

    • find element throws an exception if the element is not found, while

  • Answered by AI
  • Q3. What is the version you are working on?
  • Ans. 

    I am currently working on version 2.0 of the software.

    • We recently released version 1.5 with bug fixes and minor improvements.

    • Version 2.0 includes major feature enhancements and a redesigned user interface.

    • Our team is currently in the testing phase and aiming for a release in the next month.

  • Answered by AI
  • Q4. How will you enhance performance of BOT?
  • Ans. 

    To enhance BOT performance, I would optimize code, improve algorithms, and increase server capacity.

    • Optimize code to reduce execution time

    • Improve algorithms to increase efficiency

    • Increase server capacity to handle more requests

    • Use caching to reduce database queries

    • Implement load balancing to distribute workload

    • Use asynchronous programming to improve response time

  • Answered by AI
  • Q5. Details about Orchestrator?
  • Ans. 

    Orchestrator is a tool used for automating workflows and managing tasks in a system.

    • Orchestrator helps in automating repetitive tasks and workflows.

    • It can integrate with various systems and applications to streamline processes.

    • Orchestrator can be used for scheduling and monitoring tasks.

    • Examples of Orchestrator tools include Microsoft System Center Orchestrator and UiPath Orchestrator.

  • Answered by AI
  • Q6. What is re-framework?
  • Ans. 

    ReFramework is a framework for building Robotic Process Automation (RPA) solutions in UiPath.

    • ReFramework is a template for building RPA solutions in UiPath.

    • It provides a structured approach to development, with pre-built components for error handling, logging, and exception handling.

    • ReFramework is designed to be scalable and reusable, allowing developers to build solutions quickly and efficiently.

    • It includes five main ...

  • Answered by AI
  • Q7. What is the property name which is used to match in image recognition?
  • Ans. 

    The property name used for image recognition is 'alt' attribute.

    • The 'alt' attribute is used to provide alternative text for an image.

    • It is used by screen readers to describe the image to visually impaired users.

    • It can also be used by search engines to understand the content of the image.

    • The 'alt' attribute should be descriptive and relevant to the image.

    • It should not be left empty or used for decorative images.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared in any on programming language. They give a simple use case for coding while your screen is shared with them.

Skills evaluated in this interview

WonderBotz Interview FAQs

How many rounds are there in WonderBotz interview?
WonderBotz interview process usually has 2-3 rounds. The most common rounds in the WonderBotz interview process are Resume Shortlist, Group Discussion and One-on-one Round.
How to prepare for WonderBotz 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 WonderBotz. The most common topics and skills that interviewers at WonderBotz expect are Healthcare, HTML, SQL, Analytical and Automation.
What are the top questions asked in WonderBotz interview?

Some of the top questions asked at the WonderBotz interview -

  1. RE Framework in deta...read more
  2. What is tech sta...read more
  3. the question was more focused on the resume. They are scrutinizing the resume v...read more

Tell us how to improve this page.

WonderBotz Interview Process

based on 4 interviews

Interview experience

4.8
  
Excellent
View more

Interview Questions from Similar Companies

CMS IT Services Interview Questions
3.1
 • 132 Interviews
iMerit Interview Questions
3.5
 • 93 Interviews
Arcesium Interview Questions
3.6
 • 78 Interviews
Pegasystems Interview Questions
3.6
 • 29 Interviews
Uipath Interview Questions
3.8
 • 15 Interviews
Kofax Interview Questions
3.6
 • 4 Interviews
AntWorks Interview Questions
3.2
 • 3 Interviews
View all

WonderBotz Reviews and Ratings

based on 103 reviews

4.3/5

Rating in categories

4.4

Skill development

4.3

Work-life balance

4.5

Salary

4.1

Job security

4.3

Company culture

4.2

Promotions

4.3

Work satisfaction

Explore 103 Reviews and Ratings
Automation Anywhere Developer

Pune

1-5 Yrs

Not Disclosed

Explore more jobs
Senior Consultant
31 salaries
unlock blur

₹14 L/yr - ₹28 L/yr

Consultant
23 salaries
unlock blur

₹7.2 L/yr - ₹16.4 L/yr

Automation Developer
14 salaries
unlock blur

₹5 L/yr - ₹18 L/yr

Junior Consultant
9 salaries
unlock blur

₹7 L/yr - ₹8.5 L/yr

RPA Developer
7 salaries
unlock blur

₹6.5 L/yr - ₹15 L/yr

Explore more salaries
Compare WonderBotz with

Automation Anywhere

3.8
Compare

Uipath

3.7
Compare

Blue Prism

5.0
Compare

Pegasystems

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