Upload Button Icon Add office photos

Filter interviews by

Webonise Lab Interview Questions, Process, and Tips

Updated 17 Apr 2024

Top Webonise Lab Interview Questions and Answers

Webonise Lab Interview Experiences

Popular Designations

7 interviews found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 17 Apr 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. All the basic Manual QA questions
  • Q2. Regression testing
  • Q3. SDLC, STLC, BUG life cycle

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Javascript, Typescript

Senior Front end Developer Interview Questions asked at other Companies

Q1. Discuss a time when you had to refactor a large codebase. How did you approach the task, and what steps did you take to ensure that the code remained maintainable and scalable?
View answer (1)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

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 Resume tips
Round 2 - Coding Test 

React JS JavaScript TypeScript

Round 3 - Technical 

(1 Question)

  • Q1. React JS JavaScript TypeScript

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to have strong knowledge in coding

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Mar 2022. There were 6 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Java related questions
  • Q2. SQL queries, AWS related questions
Round 3 - Technical 

(2 Questions)

  • Q1. Java related coding questions
  • Q2. Given the some case studies
Round 4 - Technical 

(1 Question)

  • Q1. Call with VP of company project overview
Round 5 - HR 

(2 Questions)

  • Q1. General HR discussion, process information
  • Q2. Salary discussion, leave policy discussion
Round 6 - HR 

(1 Question)

  • Q1. Call with HR Head discuss policies and general guidance

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basic clear, prepare easy to mid level coding questions

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Webonise Lab interview questions for popular designations

 Software Developer

 (2)

 Software Engineer

 (1)

 Senior Software Engineer

 (1)

 Software Developer Trainee

 (1)

 QA Engineer

 (1)

 Senior Front end Developer

 (1)

I applied via Campus Placement and was interviewed before Feb 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Core Java basics, collections, solid principles, design principles

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Java basics, spring, design pattern

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

I was interviewed in Nov 2016.

Interview Preparation Tips

Round: Technical Interview
Experience: They asked me questions related to OOPS and asked me to write 2 codes for them. Very easy round.

Round: Technical Interview
Experience: They asked me questions on DBMS. Client server model and Java. I was weak on DBMS concepts this i had made it known in the beginning only. It was a tougher round.

Round: HR Interview
Experience: They asked me questions like what are my interests and basically explored more into my personality. I felt that being myself was the best way to win till the end. And thsts exactly what i did.

Skills: OOPS Definition, Basic C/C++, Implementing Data Structures In C++, Implementation Of Code Using OOPS, Java Programming, Knowledge About Database Managements Systems
College Name: VNIT Nagpur

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)

Jobs at Webonise Lab

View all

I was interviewed in Oct 2016.

Interview Questionnaire 

17 Questions

  • Q1. Basic concepts of OOPs (inheritance, polymorphism etc)
  • Q2. Basic concepts of DBMS (related to joins, recovery)
  • Q3. Pseudo code for circular queue
  • Ans. 

    Pseudo code for circular queue

    • A circular queue is a data structure that follows the FIFO (First-In-First-Out) principle.

    • It uses an array to store the elements and two pointers, front and rear, to keep track of the queue.

    • When the rear pointer reaches the end of the array, it wraps around to the beginning, creating a circular behavior.

    • To enqueue an element, check if the queue is full. If not, increment the rear pointer a...

  • Answered by AI
  • Q4. Concatenation of linked lists
  • Ans. 

    Concatenation of linked lists is the process of combining two or more linked lists into a single linked list.

    • Create a new linked list to store the concatenated result.

    • Traverse the first linked list and add each node to the new linked list.

    • Traverse the second linked list and add each node to the new linked list.

    • The last node of the first linked list should point to the head of the second linked list.

    • Return the head of t

  • Answered by AI
  • Q5. Intersection of linked lists
  • Ans. 

    Finding the intersection point of two linked lists.

    • Traverse both lists and find their lengths.

    • Move the pointer of the longer list ahead by the difference in lengths.

    • Now, traverse both lists simultaneously until the pointers meet.

    • The meeting point is the intersection point.

  • Answered by AI
  • Q6. N queens problem
  • Q7. Write a query to obtain specific data from a table (e.g.: all employees having manager xyz and staying in city abc)
  • Q8. Find the height of a tree and it's mirror image
  • Ans. 

    To find the height of a tree and its mirror image, we need to traverse the tree and calculate the maximum depth.

    • Traverse the tree using depth-first search or breadth-first search

    • Keep track of the maximum depth encountered during traversal

    • Repeat the traversal process for the mirror image of the tree

    • Compare the heights of the original tree and its mirror image

  • Answered by AI
  • Q9. Implement inheritance in everyday life and code for the same.
  • Ans. 

    Inheritance in everyday life is when traits or characteristics are passed down from parents to children.

    • Inheritance in code allows a class to inherit properties and methods from another class.

    • In everyday life, children often inherit physical traits, such as eye color or height, from their parents.

    • In code, a child class can inherit attributes and behaviors from a parent class.

    • For example, a parent class 'Animal' can hav...

  • Answered by AI
  • Q10. Hash table, Linked List, Tree - Which one of these data structures is better and why? (Hint: compare complexities of insertion, deletion and search in all 3 cases)
  • Q11. Introduction
  • Q12. What did you like about the company since you were here for a while giving interviews?
  • Ans. 

    I liked the company's innovative projects, supportive team, and positive work culture.

    • Innovative projects: I was impressed by the company's focus on cutting-edge technologies and solutions.

    • Supportive team: Everyone I met during the interviews was friendly, helpful, and passionate about their work.

    • Positive work culture: The company's emphasis on work-life balance and professional development opportunities stood out to m

  • Answered by AI
  • Q13. Do you know what we do?
  • Ans. 

    The company specializes in developing software solutions for various industries.

    • Specializes in developing software solutions

    • Works with clients from different industries

    • Focuses on creating innovative and efficient software products

  • Answered by AI
  • Q14. What are your strengths and weaknesses?
  • Ans. 

    My strengths include problem-solving skills and attention to detail. My weaknesses include public speaking and time management.

    • Strengths: problem-solving skills

    • Strengths: attention to detail

    • Weaknesses: public speaking

    • Weaknesses: time management

  • Answered by AI
  • Q15. Is coding your passion?
  • Ans. 

    Yes, coding is my passion as I enjoy problem-solving and creating innovative solutions through programming.

    • I find joy in tackling complex coding challenges

    • I am constantly learning new technologies and improving my coding skills

    • I have personal projects where I apply coding to solve real-world problems

  • Answered by AI
  • Q16. How long are you willing to work here? What are your future plans?
  • Ans. 

    I am willing to work here long-term and grow with the company. My future plans include gaining more experience and taking on more responsibilities.

    • I am committed to working here for the foreseeable future

    • I am eager to learn and grow within the company

    • I hope to take on more responsibilities and advance in my career

  • Answered by AI
  • Q17. What are your hobbies?
  • Ans. 

    My hobbies include playing guitar, hiking, and reading science fiction novels.

    • Playing guitar: I enjoy learning new songs and practicing different techniques.

    • Hiking: I love exploring nature trails and challenging myself with long hikes.

    • Reading science fiction novels: I find it fascinating to escape into futuristic worlds and explore complex ideas.

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: It was a Skype interview which lasted for 30 minutes. Started with introducing myself and then moved onto the technical aspects.
Tips: Basics of OOPs, DBMS and Data structures must be thorough. Example, knowing basics of linked list, trees etc

Round: Technical Interview
Experience: This interview took place at the company itself. It lasted for an hour.
There was a ma'am who took my interview, so only one person was present. She tested my coding skills, tweaking questions to see if I paid attention to detail.
Tips: Practice questions from geeksforgeeks related to Linked lists, trees, arrays. Do not forget to practice writing queries in DBMS. If you forget something, do not worry, most likely she will nudge you in the right direction.

Round: Technical Interview
Experience: This was a theory based interview. Practical applications of OOPs concepts were tested.
Tips: Read about how the basic data structures are implemented in real life. Some candidates were asked about Java concepts such as throw exception. So go through those also.

Round: HR Interview
Experience: First I had an interview with the HR team, then I had a phone call interview with the HR lead. Both rounds were pretty straightforward, they appreciate it if you know something about their company beforehand(so go through their website)
Tips: Just be yourself, do research on the company and job position you're applying for. If possible, rehearse your answer to the question, "tell me something about you"

Skills: Practical Application Of Concepts, Technical Skill And Speaking Skill, Logical And Structured Thinking
College Name: VNIT Nagpur

Skills evaluated in this interview

Software Developer Trainee Interview Questions asked at other Companies

Q1. 1. Tell me about your self 2. Difference Between c & c++. 3. what is class? 4. what is object? 5. what is polymorphism? types of polymorphism explain real example of polymorphism. 6. what is inheritence? Difference between multiple &amp... read more
View answer (2)

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: Apti was quite easy . In Basic CS concepts software engineering is prominent.
Tips: Brush up Software Engineering before written test
Duration: 90 minutes
Total Questions: 50

College Name: NIT BHOPAL

I was interviewed before Aug 2016.

Interview Preparation Tips

Round: General and technical aptitude
Experience: There were questions on basics of programming and general questions on verbal,reasoning and quantitative.
Tips: Time will be short to answer all so keep watch on time

Round: Group Discussion
Experience: They segregated us in to batches and in our team there were 10 members.
Tips: Easy round
Duration: 15 minutes

Round: Telephonic
Experience: They tested my communication skill in that round

College Name: Dhanalakshmi college of engineering

I was interviewed in Apr 2017.

Interview Questionnaire 

2 Questions

  • Q1. Java questions...
  • Q2. Tell me about urself and about us family and all
  • Ans. 

    I am a software developer with a passion for coding and problem-solving. My family is supportive and has always encouraged my career in tech.

    • Experienced software developer

    • Passionate about coding and problem-solving

    • Supportive family that encourages my career in tech

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Easy questions are there
Duration: 1 hour
Total Questions: 90

Round: Group Discussion
Experience: 12 members are there only 9 got selected
Tips: Be confident in urself and specially work in Communication skills
Duration: 15 minutes

Round: Technical Interview
Experience: Asking all the concepts of Java like oops collections threads
Tips: Prepare well on Java

Round: HR Interview
Experience: Everything was Gud but due to my certificate problem I got rejected.. Otherwise everything is good.
Tips: Be confident

College Name: C. V. Raman College of Engineering
Contribute & help others!
anonymous
You can choose to be anonymous

Webonise Lab Interview FAQs

How many rounds are there in Webonise Lab interview?
Webonise Lab interview process usually has 2-3 rounds. The most common rounds in the Webonise Lab interview process are Technical, Resume Shortlist and HR.
How to prepare for Webonise Lab 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 Webonise Lab. The most common topics and skills that interviewers at Webonise Lab expect are Javascript, AWS, Design Patterns, MySQL and JIRA.
What are the top questions asked in Webonise Lab interview?

Some of the top questions asked at the Webonise Lab interview -

  1. Implement inheritance in everyday life and code for the sa...read more
  2. Find the height of a tree and it's mirror ima...read more
  3. Pseudo code for circular que...read more

Recently Viewed

INTERVIEWS

Al Bawani Co.

No Interviews

SALARIES

Blackrock

INTERVIEWS

Intech Dmls

No Interviews

INTERVIEWS

Sanmina Sci

No Interviews

SALARIES

Blackrock

LIST OF COMPANIES

Intellect Design Arena

Overview

SALARIES

Blackrock

INTERVIEWS

Harsco

No Interviews

Tell us how to improve this page.

Webonise Lab Interview Process

based on 4 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.7k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
View all

Webonise Lab Reviews and Ratings

based on 55 reviews

4.1/5

Rating in categories

4.1

Skill development

3.8

Work-life balance

3.5

Salary

3.8

Job security

3.9

Company culture

3.3

Promotions

4.0

Work satisfaction

Explore 55 Reviews and Ratings
Sr. React Developer

Pune

5-10 Yrs

Not Disclosed

Sr Business Analyst

Pune

2-6 Yrs

Not Disclosed

Explore more jobs
Software Developer
57 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Developer
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Technical Leader
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Webonise Lab with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent