Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Power2sme Junior Engineer - Quality Assurance Interview Questions and Answers

Updated 5 Oct 2021

Power2sme Junior Engineer - Quality Assurance Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What are black-box testing and white box testing?
  • Ans. 

    Black-box testing is a method of testing software without knowing its internal structure, while white-box testing is the opposite.

    • Black-box testing focuses on the functionality of the software

    • White-box testing focuses on the internal structure of the software

    • Black-box testing is also known as functional testing

    • White-box testing is also known as structural testing

    • Examples of black-box testing include user acceptance tes...

  • Answered by AI
  • Q2. Difference between verification and validation.
  • Ans. 

    Verification ensures that the product is built according to the requirements, while validation ensures that the product meets the customer's needs.

    • Verification checks if the product is built correctly, while validation checks if the right product is built.

    • Verification is a process of evaluating documents, design, code, and program, while validation is a process of evaluating the final product.

    • Verification is done befor...

  • Answered by AI
  • Q3. Write test cases on Facebook tag feature.
  • Ans. 

    Test cases for Facebook tag feature

    • Verify that the tagged person receives a notification

    • Check if the tag appears on the tagged person's timeline

    • Ensure that the tag is clickable and redirects to the tagged person's profile

    • Test if the tag is visible to the tagged person's friends

    • Verify that the tag is not visible to people who are not friends with the tagged person

    • Check if the tag is removable by the person who posted it

    • ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be more technical and ask questions about projects on which i worked.

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. Linked List Palindrome
  • Q2. Combination Sum
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2023. There were 3 interview rounds.

Round 1 - Coding Test 

In the first round test was conducted on hackerrank platform
it consist of one coding question and one sql question and total 4 mcq are there
the difficulty of coding(dsa) problem is leetcode medium-hard and sql is hard

Round 2 - Technical 

(3 Questions)

  • Q1. 1. Maths puzzle 2. a dp question 3. questions on inheritance 4. some css related question 5. dom application and why we are using dom? 6. DBMS questions
  • Q2. Dp question and then optimised to o(n) solution
  • Q3. Questions on oops and inheritance
Round 3 - HR 

(1 Question)

  • Q1. 1. some projects that i did 2. why you want to join bizongo? 3. what will you bring to the company if we select you? 4. some behavioural questions...

Interview Preparation Tips

Topics to prepare for BIZONGO Software Developer interview:
  • OOPS
  • DSA
  • Web Development
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Easy basics questions asked
Round 2 - Technical 

(1 Question)

  • Q1. Easy basics questions asked
Round 3 - Technical 

(1 Question)

  • Q1. System design was asked
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Asked core java question
Round 2 - One-on-one 

(1 Question)

  • Q1. Asked dsa questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Given programming questions
String programs

Round 2 - Technical 

(1 Question)

  • Q1. Asked basic to intermediate level questions Datatypes OOP concepts Code snippets

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics clearly with understanding.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(2 Questions)

  • Q1. 1. Basic OOP Concepts 2. Difference between structure and class in terms of constructor 3. Can members of structure be defined as private 4. What's lambda function and it's real life use case 5. Difference...
  • Q2. 6. What's O(n) in time and space complexity
  • Ans. 

    O(n) refers to linear time and space complexity.

    • O(n) means that the time or space required by an algorithm grows linearly with the size of the input.

    • It implies that the algorithm's performance is directly proportional to the input size.

    • For example, if an algorithm takes 10 seconds to process 100 elements, it would take 20 seconds to process 200 elements.

    • O(n) complexity is considered efficient and desirable in most case

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basic clear and talk as much as possible

Skills evaluated in this interview

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

Aptitude question based on time speed and logic

Round 2 - Technical 

(1 Question)

  • Q1. Ques on linked list and some more coding ques
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jan 2023. 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 Resume tips
Round 2 - Aptitude Test 

It was both aptitude and coding test.
Comprises of around same weightage.
Coding questions were some famous easy questions.

Round 3 - Technical 

(3 Questions)

  • Q1. Most of the coding questions were from Linked list. Few from database and SQL.
  • Q2. Adding a node in LinkedList, removal of a duplicate node in LinkedList.
  • Ans. 

    Adding a node in LinkedList involves creating a new node and updating pointers. Removing a duplicate node requires iterating through the list and comparing values.

    • To add a node, create a new node with the desired value and update pointers accordingly.

    • To remove a duplicate node, iterate through the list and compare each node's value with others to identify duplicates.

    • After identifying a duplicate node, update pointers t

  • Answered by AI
  • Q3. A query to give the sum of salary of common department.
Round 4 - One-on-one 

(1 Question)

  • Q1. A bit conceptual round. A Linked list question and few HR questions.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(6 Questions)

  • Q1. What is difference between list and tuple?
  • Ans. 

    List is mutable and can be modified, while tuple is immutable and cannot be modified.

    • List is defined using square brackets [], while tuple is defined using parentheses ().

    • Elements in a list can be added, removed, or modified, while elements in a tuple cannot be modified.

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

    • Lists have more built-in methods an...

  • Answered by AI
  • Q2. Find second highest salary of employee using django orm?
  • Ans. 

    Find second highest salary of employee using Django ORM.

    • Use the Django ORM to query the Employee model

    • Order the employees by salary in descending order

    • Skip the first employee (highest salary) and get the second employee (second highest salary)

  • Answered by AI
  • Q3. Find no of occurance in list output in dict
  • Ans. 

    The question asks to find the number of occurrences of each element in a list and output the result in a dictionary.

    • Iterate through the list and use a dictionary to keep track of the count of each element.

    • If an element is already in the dictionary, increment its count by 1. Otherwise, add it to the dictionary with a count of 1.

    • Finally, return the dictionary with the counts of each element.

  • Answered by AI
  • Q4. What is django middleware?
  • Ans. 

    Django middleware is a component that sits between the web server and the view, allowing for processing of requests and responses.

    • Middleware is a way to modify or process requests and responses globally in a Django application.

    • It can be used for authentication, session management, caching, logging, and more.

    • Middleware classes are defined in settings.py and executed in order.

    • Examples of middleware include Authentication...

  • Answered by AI
  • Q5. What is decorator?
  • Ans. 

    A decorator is a design pattern that allows behavior to be added to an individual object dynamically.

    • Decorators enhance the functionality of an object without modifying its structure.

    • They provide a flexible alternative to subclassing for extending functionality.

    • Decorators can be stacked to add multiple behaviors to an object.

    • Examples of decorators include logging, caching, and authentication decorators.

  • Answered by AI
  • Q6. What is generator?
  • Ans. 

    A generator is a function that can be paused and resumed, allowing it to produce a sequence of values over time.

    • Generators are defined using the function* syntax in JavaScript.

    • They use the yield keyword to pause execution and return a value.

    • Generators can be iterated over using a for...of loop.

    • They are useful for generating infinite sequences or lazily computing values.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - go feel free no such hard question any one can crack interview.

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Power2sme Interview FAQs

What are the top questions asked in Power2sme Junior Engineer - Quality Assurance interview?

Some of the top questions asked at the Power2sme Junior Engineer - Quality Assurance interview -

  1. What are black-box testing and white box testi...read more
  2. Write test cases on Facebook tag featu...read more
  3. Difference between verification and validati...read more

Recently Viewed

INTERVIEWS

Polmon Instruments

No Interviews

INTERVIEWS

Power2sme

No Interviews

INTERVIEWS

Aaxis Nano Technologies

5.6k top interview questions

REVIEWS

Aaxis Nano Technologies

No Reviews

SALARIES

Aaxis Nano Technologies

LIST OF COMPANIES

Polmon Instruments

Locations

LIST OF COMPANIES

Labindia Instruments

Locations

SALARIES

Labindia Instruments

LIST OF COMPANIES

Toshniwal Industries

Locations

SALARIES

Aaxis Nano Technologies

Tell us how to improve this page.

Interview Questions from Similar Companies

Udaan Interview Questions
4.0
 • 334 Interviews
JustDial Interview Questions
3.5
 • 328 Interviews
Moglix Interview Questions
3.4
 • 56 Interviews
TMEIC Interview Questions
3.8
 • 19 Interviews
BIZONGO Interview Questions
3.3
 • 17 Interviews
View all

Power2sme Junior Engineer - Quality Assurance Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

4.0

Salary

3.0

Job security

2.0

Company culture

3.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Key Account Manager
28 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
25 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Inside Sales Executive
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Power2sme with

Indiamart Intermesh

3.6
Compare

TradeIndia (Infocom Network Private Limited)

3.4
Compare

Udaan

4.0
Compare

Moglix

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