Upload Button Icon Add office photos

Filter interviews by

Ubuy Technologies Manual Testing Interview Questions, Process, and Tips for Freshers

Updated 18 Aug 2022

Ubuy Technologies Manual Testing Interview Experiences for Freshers

1 interview found

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

Round 1 - HR 

(4 Questions)

  • Q1. What is manual testing
  • Ans. 

    Manual testing is a process of verifying software manually to find defects and ensure its functionality.

    • Manual testing involves executing test cases manually without the use of automation tools.

    • It requires human intervention to perform various testing activities.

    • Testers follow predefined test cases, explore the software, and report any issues found.

    • It helps in validating the software's functionality, usability, and use...

  • Answered by AI
  • Q2. What is type of testing
  • Ans. 

    Type of testing refers to the different approaches and techniques used to test software applications.

    • Functional testing

    • Non-functional testing

    • Regression testing

    • Integration testing

    • Unit testing

    • Acceptance testing

  • Answered by AI
  • Q3. What is Software development Life Cycle
  • Ans. 

    Software Development Life Cycle (SDLC) is a process followed by software development teams to design, develop, and test high-quality software.

    • SDLC is a structured approach to software development.

    • It consists of several phases such as planning, analysis, design, implementation, testing, and maintenance.

    • Each phase has its own set of activities and deliverables.

    • SDLC models include Waterfall, Agile, and DevOps.

    • The choice o...

  • Answered by AI
  • Q4. What is type of functional testing
  • Ans. 

    Functional testing is a type of testing that verifies the functionality of software applications.

    • Functional testing checks if the software meets the specified requirements

    • It is performed to ensure that the software is working as expected

    • Types of functional testing include unit testing, integration testing, system testing, and acceptance testing

  • Answered by AI
Round 2 - One-on-one 

(3 Questions)

  • Q1. What is testing in software
  • Ans. 

    Testing in software is the process of evaluating a system or its component(s) with the intent to find whether it satisfies the specified requirements or not.

    • Testing is done to identify defects or errors in the software

    • It involves executing a program or system with the intent of finding errors

    • Testing can be done manually or using automated tools

    • Types of testing include functional, performance, security, and usability te...

  • Answered by AI
  • Q2. What is test case explain with example
  • Ans. 

    A test case is a set of conditions or variables under which a tester will determine if a system under test satisfies requirements.

    • Test cases are designed to cover all possible scenarios and edge cases

    • Test cases should be clear, concise, and unambiguous

    • Test cases should be repeatable and independent of other test cases

    • Test cases should include expected results and actual results for comparison

    • Example: Test case for logi...

  • Answered by AI
  • Q3. Tell me about your self

Interview Preparation Tips

Topics to prepare for Ubuy Technologies Manual Testing interview:
  • Software Testing
Interview preparation tips for other job seekers - Don't narvas answer the all questions very easy

Skills evaluated in this interview

Interview questions from similar companies

I applied via Company Website and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Assignment 

Assignment

Round 3 - Coding Test 

Coding test

Round 4 - HR 

(4 Questions)

  • Q1. What is your family background?
  • Ans. 

    My family background is diverse and culturally rich.

    • My parents come from different cultural backgrounds, which has exposed me to a variety of traditions and customs.

    • I have siblings who are pursuing different career paths, such as engineering and art.

    • We prioritize education and encourage each other to excel in our chosen fields.

    • Family gatherings are always lively and filled with delicious food from different cuisines.

    • We...

  • Answered by AI
  • Q2. What are your salary expectations?
  • Ans. 

    I expect a salary that is competitive and reflective of my skills and experience in manual testing.

    • I am looking for a salary that aligns with industry standards for manual testing roles.

    • I have X years of experience in manual testing and I believe my skills and expertise warrant a fair compensation.

    • I am open to discussing salary based on the specific responsibilities and opportunities for growth within the role.

    • I value ...

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

    My strengths include attention to detail, strong analytical skills, and ability to work well in a team. My weaknesses include being overly critical of my own work and sometimes struggling with time management.

    • Strength: Attention to detail - I have a keen eye for spotting even the smallest of errors or inconsistencies in software.

    • Strength: Analytical skills - I am able to analyze complex systems and identify potential i...

  • Answered by AI
  • Q4. Tell me about yourself.
  • Ans. 

    I am a manual testing professional with experience in various testing methodologies and tools.

    • I have a strong understanding of software testing principles and techniques.

    • I am proficient in creating test cases, executing tests, and reporting defects.

    • I have experience in both functional and non-functional testing.

    • I am familiar with test management tools like JIRA and TestRail.

    • I have worked on projects using Agile and Wat...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Mannual testing as a kind request plz help for me
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Give your Introduction
  • Q2. What is your salary expectations
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-
Round 1 - Aptitude Test 

Easy math questions. averages, series, etc

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare your resume and topics written on your resume well.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic Oops questions C++

I applied via campus placement at Motilal Nehru Institute National Institute of Technology (NIT), Allahabad and was interviewed in May 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 - Coding Test 

There was 2 coding question
One was easy One was very Difficult
20 MCQ question from Operating system and DBMS

Round 3 - Technical 

(2 Questions)

  • Q1. First question was binary search in unsorted arrays So here i have asked about sorting algorithms all sorting algorithms must be clear
  • Q2. Second question was to find longest consecutive subarray.
  • Ans. 

    Find the longest consecutive subarray.

    • Iterate through the array and keep track of the current subarray length.

    • Update the maximum length as you iterate.

    • Reset the current subarray length when a non-consecutive element is encountered.

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. OOPS related question Heap insertion deletion question Hashing Spanning tree
  • Q2. Minimum Spanning tree Implementation of MST
  • Ans. 

    Minimum Spanning Tree (MST) is a tree that connects all vertices in a graph with minimum total edge weight.

    • MST can be found using Prim's algorithm or Kruskal's algorithm.

    • Prim's algorithm starts with a single vertex and adds the closest vertex to the tree until all vertices are included.

    • Kruskal's algorithm starts with the edges with the lowest weight and adds them to the tree as long as they don't create a cycle.

    • MST has...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You have strong understanding of core cs subjects
You have full command in DSA. You have to practice from leetcode
Sometimes your luck also matters

Skills evaluated in this interview

I applied via Company Website and was interviewed in Jul 2022. There were 2 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 - Technical 

(1 Question)

  • Q1. C programming language

Interview Preparation Tips

Interview preparation tips for other job seekers - To give good opportunities for freshers and students .and selection also to be faster ⏩.

I applied via Instagram and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Coding Test 

Code test

Round 3 - Technical 

(2 Questions)

  • Q1. About oops or an any language
  • Q2. Coding for any language

Interview Preparation Tips

Topics to prepare for IBM Software Engineer interview:
  • Python
Interview preparation tips for other job seekers - Interview shorlisted candidates would be seleceted

I was interviewed in Oct 2021.

Interview Questionnaire 

4 Questions

  • Q1. 4 pillars of oops
  • Ans. 

    4 pillars of OOP are Abstraction, Encapsulation, Inheritance, and Polymorphism.

    • Abstraction: Hiding implementation details and showing only necessary information.

    • Encapsulation: Binding data and functions together to protect data from outside interference.

    • Inheritance: Creating new classes from existing ones, inheriting properties and methods.

    • Polymorphism: Ability of objects to take on multiple forms or behaviors.

  • Answered by AI
  • Q2. Java 8 features and asked me to write examples
  • Q3. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern that allows objects to receive dependencies rather than creating them internally.

    • It helps to decouple the code and makes it more testable and maintainable.

    • It allows for easier swapping of dependencies without changing the code.

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

    • Example: Instead of creating a database co...

  • Answered by AI
  • Q4. Why do we use loggers
  • Ans. 

    Loggers are used to record events and messages in software applications for debugging and analysis purposes.

    • Loggers help in identifying and fixing errors in software applications

    • They provide a detailed record of events and messages that occur during the execution of the application

    • Loggers can be configured to record specific types of events or messages

    • They can also be used to monitor application performance and usage

    • Ex...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up basics of oops concepts and latest trends on java

Skills evaluated in this interview

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

It was in the evening.

  • Q1. Count diagonal paths

    You are given a binary tree. Your task is to return the count of the diagonal paths to the leaf of the given binary tree such that all the values of the nodes on the diagonal are equal...

  • Ans. Count diagonal paths from a node to a leaf consisting of the same valued nodes

    The main idea here is to traverse the tree diagonally using a Map/Dictionary. 

    The algorithm will be-

    1. Traverse the given binary tree in a diagonal order and store the starting node of each diagonal as the key and for each key, store all the values in that diagonal in a dictionary
    2. To traverse the given binary tree in a diagonal order the mai...
  • Answered by CodingNinjas
Round 2 - Coding Test 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

It was in the night.

  • Q1. Count Subsequences

    You have been given an integer array/list 'ARR' of size 'N'. Your task is to return the total number of those subsequences of the array in which all the elements are equa...

  • Ans. Brute Force

    The idea is to generate all the subsequences and check whether the elements present are equal or not.

     

    Here is the algorithm :

     

    1. Generate all the subsequences of the given array.
    2. Maintain a variable ‘COUNT’ which stores the total number of subsequences in which all the elements are equal.
    3. Iterate over each of the generated subsequences.
      1. In case all the elements of the current subsequence are equal, we in...
  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from HMR Institute of Technology and Management. I applied for the job as Software Engineer in DelhiEligibility criteriaNo percentage criteriaWipro Limited interview preparation:Topics to prepare for the interview - oops, Dbms, Algorithms, Array, Data structure.Time required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Learn new topics regular and revised that topic .
Tip 2 : Apply practically.
Tip 3 : Do a project

Application resume tips for other job seekers

Tip 1 : Technology you know, projects
Tip 2 : No false information

Final outcome of the interviewSelected

Skills evaluated in this interview

Ubuy Technologies Interview FAQs

How many rounds are there in Ubuy Technologies Manual Testing interview for freshers?
Ubuy Technologies interview process for freshers usually has 2 rounds. The most common rounds in the Ubuy Technologies interview process for freshers are HR and One-on-one Round.
What are the top questions asked in Ubuy Technologies Manual Testing interview for freshers?

Some of the top questions asked at the Ubuy Technologies Manual Testing interview for freshers -

  1. What is Software development Life Cy...read more
  2. What is type of functional test...read more
  3. What is test case explain with exam...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Ubuy Technologies interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Softwaretest Engineer
7 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

Software Developer
6 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

Operations Executive
6 salaries
unlock blur

₹2.2 L/yr - ₹4.9 L/yr

PHP Developer
6 salaries
unlock blur

₹2.4 L/yr - ₹3.6 L/yr

Software Engineer
5 salaries
unlock blur

₹4.5 L/yr - ₹9.1 L/yr

Explore more salaries
Compare Ubuy Technologies with

Flipkart

4.0
Compare

Amazon

4.1
Compare

Snapdeal

3.9
Compare

Paytm Mall

3.6
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