Upload Button Icon Add office photos

ONPASSIVE

Compare button icon Compare button icon Compare

Filter interviews by

ONPASSIVE Interview Questions and Answers

Updated 16 Sep 2024
Popular Designations

19 Interview questions

A Senior Quality Analyst was asked 9mo ago
Q. What is your approach when a defect is found in production?
Ans. 

I prioritize investigating the root cause, collaborating with the team to fix the defect, and implementing preventive measures.

  • Investigate the root cause of the defect

  • Collaborate with the team to fix the defect

  • Implement preventive measures to avoid similar defects in the future

View all Senior Quality Analyst interview questions
A Senior Quality Analyst was asked 9mo ago
Q. What is the importance of having Exploratory Testing in a Test plan?
Ans. 

Exploratory testing in test plan helps uncover defects that may not be found through scripted testing.

  • Allows testers to explore the application and identify defects that may not be covered in scripted tests

  • Encourages creativity and critical thinking in testers

  • Helps in finding unexpected issues and improving test coverage

  • Can be more efficient in certain scenarios compared to scripted testing

  • Provides valuable feedba...

View all Senior Quality Analyst interview questions
A Senior Quality Analyst was asked 9mo ago
Q. What is your test strategy and test plan when you are assigned to an E-Commerce project?
Ans. 

My test strategy for an E-Commerce project involves thorough functional testing, performance testing, security testing, and user experience testing.

  • Conduct functional testing to ensure all features work as expected (e.g. product search, add to cart, checkout).

  • Perform performance testing to assess system response times under various loads (e.g. peak shopping periods).

  • Conduct security testing to identify vulnerabili...

View all Senior Quality Analyst interview questions
A Senior Quality Analyst was asked 9mo ago
Q. What will you do if the requirements keep changing?
Ans. 

I will communicate with stakeholders to understand the changes, assess impact on current work, prioritize tasks, and update documentation accordingly.

  • Communicate with stakeholders to understand the changes

  • Assess impact on current work and project timeline

  • Prioritize tasks based on new requirements

  • Update documentation and test cases accordingly

View all Senior Quality Analyst interview questions
A Senior Quality Analyst was asked 9mo ago
Q. How do you handle a scope creep scenario?
Ans. 

I would communicate with stakeholders to understand the changes, assess impact on project timeline and budget, and document the changes formally.

  • Communicate with stakeholders to understand the changes

  • Assess impact on project timeline and budget

  • Document the changes formally

View all Senior Quality Analyst interview questions
A Senior Quality Analyst was asked 9mo ago
Q. Tell me about a common challenge that you faced while testing an application?
Ans. 

One common challenge I faced while testing an application was dealing with inconsistent test environments.

  • Inconsistent test environments can lead to unreliable test results.

  • Ensuring that all test environments are set up correctly and consistently is crucial.

  • Communicating with developers and other team members to address any issues with test environments is important.

  • Documenting any discrepancies or issues encounte...

View all Senior Quality Analyst interview questions
A Senior Quality Analyst was asked 9mo ago
Q. Can you tell me about the Defect life cycle?
Ans. 

Defect life cycle is the process of identifying, reporting, fixing, retesting, and closing defects in software development.

  • Defect identification: Defects are identified through testing or user feedback.

  • Defect reporting: Once a defect is identified, it is reported in a defect tracking system.

  • Defect fixing: Developers analyze and fix the reported defects.

  • Defect retesting: Testers verify that the fixed defects are in...

View all Senior Quality Analyst interview questions
Are these interview questions helpful?
An IT Executive was asked
Q. Tell me about your work experience with ITIL tools.
Ans. 

Experienced in ITIL tools for service management, enhancing efficiency and aligning IT with business goals.

  • Implemented ServiceNow for incident management, reducing resolution time by 30%.

  • Utilized JIRA for change management, improving tracking and accountability.

  • Leveraged BMC Remedy for problem management, leading to a 25% decrease in recurring issues.

  • Conducted training sessions on ITIL best practices, increasing t...

View all IT Executive interview questions
An Angular Developer was asked
Q. What are the features of the latest TypeScript version you used in your project?
Ans. 

The latest version of TypeScript used in my project has several new features.

  • Optional Chaining and Nullish Coalescing

  • Improved performance with faster compilation times

  • Support for private fields and methods

  • Higher order type inference from generic constructors

  • Support for ECMAScript private fields

  • Improved support for tuples

  • Smaller bundle sizes with tree shaking

View all Angular Developer interview questions
An Angular Developer was asked
Q. What is the difference between Observable and Promise?
Ans. 

Observable is for handling multiple values over time, while Promise is for handling a single value.

  • Observable can emit multiple values over time, while Promise can only emit a single value.

  • Observable can be cancelled, while Promise cannot be cancelled.

  • Observable provides operators for transforming and combining data, while Promise does not have such operators.

  • Observable is lazy, meaning it won't start emitting val...

View all Angular Developer interview questions

ONPASSIVE Interview Experiences

23 interviews found

I applied via Naukri.com and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

10 Questions

  • Q1. What are life cycle hooks and have you worked on them in your project?
  • Q2. How can you pass data between parent and child components?, what is component interaction
  • Q3. What are different data bindings in angular
  • Q4. What is lazy loading and write syntax
  • Ans. 

    Lazy loading is a technique in Angular that loads modules or components on-demand, improving performance.

    • Lazy loading helps reduce initial load time by loading modules or components only when needed

    • It improves performance by splitting the application into smaller chunks

    • Syntax: import() function is used to dynamically load modules or components

  • Answered by AI
  • Q5. What are @Input() and @Output()?
  • Ans. 

    The @Input() and @Output() are decorators in Angular used for communication between parent and child components.

    • The @Input() decorator is used to pass data from a parent component to a child component.

    • The @Output() decorator is used to emit events from a child component to a parent component.

    • The @Input() property is bound to a value in the parent component template using property binding.

    • The @Output() property is bound...

  • Answered by AI
  • Q6. What is routing and write its syntax
  • Ans. 

    Routing is the process of navigating between different components or pages in an Angular application.

    • Routing is used to create single-page applications (SPAs) where the content is dynamically loaded without refreshing the entire page.

    • In Angular, routing is achieved using the RouterModule and the RouterLink directives.

    • The RouterModule is imported from the @angular/router package and added to the imports array of the app...

  • Answered by AI
  • Q7. What are web workers?
  • Ans. 

    Web workers are JavaScript scripts that run in the background, separate from the main browser thread.

    • Web workers allow for parallel execution of tasks, improving performance and responsiveness.

    • They can perform computationally intensive tasks without blocking the user interface.

    • Web workers communicate with the main thread using message passing.

    • Examples of tasks suitable for web workers include data processing, image man...

  • Answered by AI
  • Q8. Difference between Observable and Promise?
  • Ans. 

    Observable is for handling multiple values over time, while Promise is for handling a single value.

    • Observable can emit multiple values over time, while Promise can only emit a single value.

    • Observable can be cancelled, while Promise cannot be cancelled.

    • Observable provides operators for transforming and combining data, while Promise does not have such operators.

    • Observable is lazy, meaning it won't start emitting values u...

  • Answered by AI
  • Q9. What are the features of latest typescript version you used in your project
  • Ans. 

    The latest version of TypeScript used in my project has several new features.

    • Optional Chaining and Nullish Coalescing

    • Improved performance with faster compilation times

    • Support for private fields and methods

    • Higher order type inference from generic constructors

    • Support for ECMAScript private fields

    • Improved support for tuples

    • Smaller bundle sizes with tree shaking

  • Answered by AI
  • Q10. How do you call REST APIs in angular?
  • Ans. 

    To call REST APIs in Angular, use the HttpClient module and its methods like get(), post(), put(), delete().

    • Import the HttpClientModule in your Angular module

    • Inject the HttpClient service in your component or service

    • Use the HttpClient methods to make HTTP requests to the REST APIs

    • Handle the response using observables and subscribe to them

    • Example: httpClient.get('https://api.example.com/data')

    • Example: httpClient.post('h...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't just read and tell the answers. Practice well by writing code. It gives you confident to face any technical interview.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is the importance of having Exploratatory Testing in Test plan?
  • Ans. 

    Exploratory testing in test plan helps uncover defects that may not be found through scripted testing.

    • Allows testers to explore the application and identify defects that may not be covered in scripted tests

    • Encourages creativity and critical thinking in testers

    • Helps in finding unexpected issues and improving test coverage

    • Can be more efficient in certain scenarios compared to scripted testing

    • Provides valuable feedback to...

  • Answered by AI
  • Q2. What is your test strategy and test plan when you are assigned to E-Commerce project?
  • Ans. 

    My test strategy for an E-Commerce project involves thorough functional testing, performance testing, security testing, and user experience testing.

    • Conduct functional testing to ensure all features work as expected (e.g. product search, add to cart, checkout).

    • Perform performance testing to assess system response times under various loads (e.g. peak shopping periods).

    • Conduct security testing to identify vulnerabilities ...

  • Answered by AI
  • Q3. What do you know about Bug release and Bug Leakage?
  • Ans. 

    Bug release is when a bug is fixed and the updated software is released to users. Bug leakage is when a bug is not detected during testing and is found by users after release.

    • Bug release occurs when a bug is fixed and the updated software is released to users.

    • Bug leakage happens when a bug is not detected during testing and is found by users after release.

    • Bug release is a planned process, while bug leakage is an unplan...

  • Answered by AI
  • Q4. What is your approach when defect found in Production?
  • Ans. 

    I prioritize investigating the root cause, collaborating with the team to fix the defect, and implementing preventive measures.

    • Investigate the root cause of the defect

    • Collaborate with the team to fix the defect

    • Implement preventive measures to avoid similar defects in the future

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. Tell me about a common challenge that you faced while testing an application?
  • Ans. 

    One common challenge I faced while testing an application was dealing with inconsistent test environments.

    • Inconsistent test environments can lead to unreliable test results.

    • Ensuring that all test environments are set up correctly and consistently is crucial.

    • Communicating with developers and other team members to address any issues with test environments is important.

    • Documenting any discrepancies or issues encountered d...

  • Answered by AI
  • Q2. Can you tell me about the Defect life cycle?
  • Ans. 

    Defect life cycle is the process of identifying, reporting, fixing, retesting, and closing defects in software development.

    • Defect identification: Defects are identified through testing or user feedback.

    • Defect reporting: Once a defect is identified, it is reported in a defect tracking system.

    • Defect fixing: Developers analyze and fix the reported defects.

    • Defect retesting: Testers verify that the fixed defects are indeed ...

  • Answered by AI
  • Q3. What will you do if the requirements are keep on changing?
  • Ans. 

    I will communicate with stakeholders to understand the changes, assess impact on current work, prioritize tasks, and update documentation accordingly.

    • Communicate with stakeholders to understand the changes

    • Assess impact on current work and project timeline

    • Prioritize tasks based on new requirements

    • Update documentation and test cases accordingly

  • Answered by AI
  • Q4. How do you handle the scenario if there is a scope creep?
  • Ans. 

    I would communicate with stakeholders to understand the changes, assess impact on project timeline and budget, and document the changes formally.

    • Communicate with stakeholders to understand the changes

    • Assess impact on project timeline and budget

    • Document the changes formally

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ONPASSIVE Senior Quality Analyst interview:
  • Testing life cyle
  • Defect Life Cycle
  • Testing types
  • Exploratory Testing
  • Functional Testing
Interview preparation tips for other job seekers - The interview went well and its just completed in one day. The interviewer is friendly and helped whenever I got stuck in the flow. Given the feedback and areas to cover.

Skills evaluated in this interview

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

(1 Question)

  • Q1. React basic questions
Round 2 - One-on-one 

(1 Question)

  • Q1. About react architecture
Round 3 - One-on-one 

(1 Question)

  • Q1. React flux and virtual dom
Round 4 - HR 

(1 Question)

  • Q1. Ridiculous question like what's the distance from Hyderabad to hometown.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not apply, company is about to be bankrupt and is not giving salaries for past few months. 90 percent of the staff has already resigned even without having job offers from the other company
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

About ai technollogy

Interview Preparation Tips

Interview preparation tips for other job seekers - i love onpassive .....................onpassive is , my blood
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself

Interview Questions & Answers

user image Anonymous

posted on 21 Sep 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(1 Question)

  • Q1. Spring boot and microservice related
Round 3 - HR 

(1 Question)

  • Q1. Reason for job change

Web Developer Interview Questions & Answers

user image Anonymous

posted on 25 Dec 2022

I applied via Recruitment Consulltant and was interviewed in Nov 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 - Assignment 

Conversation from pdf to html templates

Round 3 - One-on-one 

(2 Questions)

  • Q1. General questions lk introduce about yourself
  • Q2. Just mention about yourself. Your educational background nd all

Interview Preparation Tips

Interview preparation tips for other job seekers - It s very easy. I had 3 Rounds. Hr is very polite
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Assignment 

Data science questions

Round 2 - Technical 

(1 Question)

  • Q1. Deep learning etc
Round 3 - Technical 

(1 Question)

  • Q1. Advanced deep learning
Round 4 - HR 

(1 Question)

  • Q1. Hr discussion on pay

Interview Preparation Tips

Interview preparation tips for other job seekers - Don’t give interviews

I applied via Naukri.com and was interviewed in Mar 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 - Aptitude Test 

Computeriezed aptitude

Round 3 - One-on-one 

(3 Questions)

  • Q1. About previous experience
  • Q2. Previous company work
  • Q3. Capabilities of work how can I do efficiently
Round 4 - HR 

(1 Question)

  • Q1. Salary package discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - It’s all about knowledge and work experience you have

Interview Questions & Answers

user image Anonymous

posted on 28 Mar 2022

Round 1 - Group Discussion 

Go founder is an online insight internet marketting,there are total 11 lakh 56 thousand of coustmers working on this compnay.

Round 2 - Assignment 

Assingment is nothing but,there are so many apps to do work on it,it makes our life easier in future.

Round 3 - One-on-one 

(3 Questions)

  • Q1. In every month,1 or 2 apps were launched .
  • Q2. No interview were taken
  • Q3. There is no need of any interview,in this company,

Interview Preparation Tips

Interview preparation tips for other job seekers - There are many online business going going on internet ,on passive is one of them,,it's also called o founder,so if you interested in doing online part time job ,it will be great ,so go for it

UI Designer Interview Questions & Answers

user image swetha reddy

posted on 13 Jul 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - Assignment 

Redesign an payment app

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about ONPASSIVE ?
Ask anonymously on communities.

ONPASSIVE Interview FAQs

How many rounds are there in ONPASSIVE interview?
ONPASSIVE interview process usually has 2-3 rounds. The most common rounds in the ONPASSIVE interview process are One-on-one Round, Resume Shortlist and Technical.
How to prepare for ONPASSIVE 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 ONPASSIVE . The most common topics and skills that interviewers at ONPASSIVE expect are Javascript, Java, Spring Boot, JQuery and Hibernate.
What are the top questions asked in ONPASSIVE interview?

Some of the top questions asked at the ONPASSIVE interview -

  1. How can you pass data between parent and child components?, what is component i...read more
  2. What are life cycle hooks and have you worked on them in your proje...read more
  3. what are the features of latest typescript version you used in your proj...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.1/5

based on 16 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

TCS iON Interview Questions
3.9
 • 384 Interviews
ITC Infotech Interview Questions
3.7
 • 374 Interviews
CitiusTech Interview Questions
3.3
 • 289 Interviews
NeoSOFT Interview Questions
3.6
 • 279 Interviews
Altimetrik Interview Questions
3.7
 • 240 Interviews
Episource Interview Questions
3.9
 • 224 Interviews
Xoriant Interview Questions
4.1
 • 213 Interviews
INDIUM Interview Questions
4.0
 • 198 Interviews
Incedo Interview Questions
3.1
 • 193 Interviews
View all

ONPASSIVE Reviews and Ratings

based on 293 reviews

2.8/5

Rating in categories

2.8

Skill development

3.0

Work-life balance

2.8

Salary

2.5

Job security

2.7

Company culture

2.5

Promotions

2.7

Work satisfaction

Explore 293 Reviews and Ratings
Software Engineer
143 salaries
unlock blur

₹3.8 L/yr - ₹13.3 L/yr

Senior Software Engineer
69 salaries
unlock blur

₹6 L/yr - ₹18 L/yr

Business Analyst
47 salaries
unlock blur

₹3 L/yr - ₹9.5 L/yr

Java Developer
40 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Technical Support Engineer
40 salaries
unlock blur

₹2.4 L/yr - ₹6 L/yr

Explore more salaries
Compare ONPASSIVE with

ITC Infotech

3.7
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

3i Infotech

3.4
Compare
write
Share an Interview