Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by RenewBuy Team. If you also belong to the team, you can get access from here

RenewBuy Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

RenewBuy Interview Questions and Answers

Updated 14 Jun 2025
Popular Designations

21 Interview questions

A Senior Manager was asked 3mo ago
Q. Tell me about your family.
Ans. 

I come from a close-knit family that values support, love, and shared experiences, which have shaped who I am today.

  • My parents have always encouraged my education and career aspirations, providing a strong foundation.

  • I have one younger sister who is pursuing her passion in art, and we often collaborate on creative projects.

  • Family gatherings are a tradition for us, where we share stories and celebrate milestones to...

View all Senior Manager interview questions
A Senior Manager was asked 3mo ago
Q. What was the reason for resigning from your previous company?
Ans. 

I resigned to pursue better growth opportunities and align my career with my long-term goals.

  • Seeking career advancement: I wanted a role with more leadership responsibilities.

  • Desire for new challenges: I felt my skills were underutilized in my previous position.

  • Cultural fit: I was looking for a company whose values aligned more closely with my own.

  • Work-life balance: I sought a position that offered more flexibilit...

View all Senior Manager interview questions
A Senior Manager was asked 3mo ago
Q. What is your current CTC?
Ans. 

My current CTC is competitive and reflects my experience and contributions in the industry.

  • My current CTC is $120,000 annually, which includes base salary and bonuses.

  • I have received consistent raises over the past few years due to performance.

  • In my last role, I negotiated a 15% increase based on my contributions to a successful project.

View all Senior Manager interview questions
A Senior Manager was asked 3mo ago
Q. Why did you leave your previous role?
Ans. 

I come to sales because it allows me to leverage my skills in relationship-building and strategic thinking to drive business growth.

  • Passion for building relationships: I enjoy connecting with clients and understanding their needs, which leads to tailored solutions.

  • Strategic mindset: I thrive on analyzing market trends and developing strategies that align with business goals, as seen in my previous role where I inc...

View all Senior Manager interview questions
A Senior Data Scientist was asked 5mo ago
Q. What is Linear Regression?
Ans. 

Linear regression is a statistical method used to model the relationship between a dependent variable and one or more independent variables.

  • Linear regression aims to find the best-fitting straight line that describes the relationship between variables.

  • It is commonly used for prediction and forecasting in various fields such as finance, economics, and social sciences.

  • The equation for linear regression is typically ...

View all Senior Data Scientist interview questions
A Senior Data Scientist was asked 5mo ago
Q. What are recall and F1 score?
Ans. 

Recall is the ratio of correctly predicted positive observations to the all observations in actual class. F1 is the harmonic mean of precision and recall.

  • Recall is calculated as TP / (TP + FN)

  • F1 score is calculated as 2 * (precision * recall) / (precision + recall)

  • Recall is important in scenarios where false negatives are costly, like in medical diagnosis

View all Senior Data Scientist interview questions
A Senior Data Scientist was asked 5mo ago
Q. What is the difference between the Random Forest and Decision Tree algorithms?
Ans. 

Random forest is an ensemble learning method that uses multiple decision trees to make predictions.

  • Random forest is a collection of decision trees that are trained on different subsets of the data.

  • Decision tree is a single tree-like structure that makes decisions based on features of the data.

  • Random forest reduces overfitting by averaging the predictions of multiple trees.

  • Decision tree can be prone to overfitting ...

View all Senior Data Scientist interview questions
Are these interview questions helpful?
A Senior Data Scientist was asked 5mo ago
Q. What is the difference between linear and logistic regression?
Ans. 

Linear regression is used for continuous variables while logistic regression is used for binary classification.

  • Linear regression predicts continuous values while logistic regression predicts probabilities.

  • Linear regression uses a linear equation to model the relationship between the independent and dependent variables.

  • Logistic regression uses the logistic function to model the probability of a binary outcome.

  • Linea...

View all Senior Data Scientist interview questions
A Senior Data Scientist was asked 5mo ago
Q. What are common metrics to find the accuracy of linear regression and logistic regression models?
Ans. 

Common metrics for linear and logistic regression models are R-squared and confusion matrix respectively.

  • For linear regression model, common metric is R-squared which measures the proportion of the variance in the dependent variable that is predictable from the independent variables.

  • For logistic regression model, common metric is confusion matrix which includes metrics like accuracy, precision, recall, and F1 scor...

View all Senior Data Scientist interview questions
A Senior Data Scientist was asked 5mo ago
Q. What is the formula for precision?
Ans. 

Precision is the ratio of correctly predicted positive observations to the total predicted positive observations.

  • Precision = True Positives / (True Positives + False Positives)

  • It is a measure of the accuracy of the positive predictions made by the model.

  • A high precision indicates that the model is good at predicting positive cases without many false positives.

View all Senior Data Scientist interview questions

RenewBuy Interview Experiences

44 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Dec 2024.

Round 1 - Technical 

(8 Questions)

  • Q1. Can you describe your current project or any past projects that are related to machine learning?
  • Ans. 

    Developed a machine learning model to predict customer churn for a telecom company.

    • Used supervised learning techniques such as logistic regression and random forests

    • Preprocessed data by handling missing values and encoding categorical variables

    • Evaluated model performance using metrics like accuracy, precision, and recall

  • Answered by AI
  • Q2. What is Linnear regression ?
  • Ans. 

    Linear regression is a statistical method used to model the relationship between a dependent variable and one or more independent variables.

    • Linear regression aims to find the best-fitting straight line that describes the relationship between variables.

    • It is commonly used for prediction and forecasting in various fields such as finance, economics, and social sciences.

    • The equation for linear regression is typically repre...

  • Answered by AI
  • Q3. Diff betn linnear and logistic regression?
  • Ans. 

    Linear regression is used for continuous variables while logistic regression is used for binary classification.

    • Linear regression predicts continuous values while logistic regression predicts probabilities.

    • Linear regression uses a linear equation to model the relationship between the independent and dependent variables.

    • Logistic regression uses the logistic function to model the probability of a binary outcome.

    • Linear reg...

  • Answered by AI
  • Q4. Diff betn random forest vs decision tree algorithm?
  • Ans. 

    Random forest is an ensemble learning method that uses multiple decision trees to make predictions.

    • Random forest is a collection of decision trees that are trained on different subsets of the data.

    • Decision tree is a single tree-like structure that makes decisions based on features of the data.

    • Random forest reduces overfitting by averaging the predictions of multiple trees.

    • Decision tree can be prone to overfitting if no...

  • Answered by AI
  • Q5. Formula for precision?
  • Ans. 

    Precision is the ratio of correctly predicted positive observations to the total predicted positive observations.

    • Precision = True Positives / (True Positives + False Positives)

    • It is a measure of the accuracy of the positive predictions made by the model.

    • A high precision indicates that the model is good at predicting positive cases without many false positives.

  • Answered by AI
  • Q6. Common metrics to find accuracy of linnear regression model and Logistic regression model?
  • Ans. 

    Common metrics for linear and logistic regression models are R-squared and confusion matrix respectively.

    • For linear regression model, common metric is R-squared which measures the proportion of the variance in the dependent variable that is predictable from the independent variables.

    • For logistic regression model, common metric is confusion matrix which includes metrics like accuracy, precision, recall, and F1 score to ...

  • Answered by AI
  • Q7. What is recall and F1?
  • Ans. 

    Recall is the ratio of correctly predicted positive observations to the all observations in actual class. F1 is the harmonic mean of precision and recall.

    • Recall is calculated as TP / (TP + FN)

    • F1 score is calculated as 2 * (precision * recall) / (precision + recall)

    • Recall is important in scenarios where false negatives are costly, like in medical diagnosis

  • Answered by AI
  • Q8. Tell me example of ensemble technique?
  • Ans. 

    Ensemble technique combines multiple models to improve prediction accuracy.

    • Ensemble methods include bagging, boosting, and stacking

    • Random Forest is an example of ensemble technique using bagging

    • Gradient Boosting Machine (GBM) is an example of ensemble technique using boosting

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Qualifications & introduction
  • Q2. Experience & future goal
  • Q3. Hardworking & Achievement life goals
  • Q4. Do you have the best knowledge of sales and marketing
  • Ans. 

    I possess extensive knowledge in sales and marketing strategies tailored for the insurance industry.

    • Experience in developing targeted marketing campaigns that increased policy sales by 30%.

    • Proficient in utilizing digital marketing tools, such as SEO and social media, to reach potential clients.

    • Strong understanding of customer relationship management (CRM) systems to track leads and improve sales processes.

    • Implemented t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Gud culture in this company I hope so

Linux System Administrator Interview Questions & Answers

user image ansari mohammed rizwan

posted on 21 Nov 2024

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

(2 Questions)

  • Q1. What is lvm and what's working
  • Ans. 

    LVM (Logical Volume Manager) is a tool used to manage disk storage in Linux systems by creating logical volumes from physical volumes.

    • LVM allows for dynamic resizing of logical volumes without the need to unmount the filesystem.

    • It provides features like striping, mirroring, and snapshotting for better data management.

    • Commands like pvcreate, vgcreate, lvcreate are used to create physical volumes, volume groups, and logi...

  • Answered by AI
  • Q2. Different yum and wget command
  • Ans. 

    yum is a package manager for Red Hat-based systems, while wget is a command-line tool for downloading files from the internet.

    • yum is used for installing, updating, and removing packages on Red Hat-based systems

    • wget is used for downloading files from the internet, supports HTTP, HTTPS, and FTP protocols

    • yum command example: yum install httpd

    • wget command example: wget https://example.com/file.zip

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It's

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Self Introduction
  • Ans. 

    Dynamic Sales Manager with over 8 years of experience driving revenue growth and building strong client relationships.

    • Proven track record of exceeding sales targets by 30% year-over-year.

    • Led a team of 10 sales representatives, providing training and mentorship to enhance performance.

    • Developed and implemented strategic sales plans that increased market share in competitive regions.

    • Successfully launched a new product lin...

  • Answered by AI
  • Q2. Previous Company Roles & Responsibility
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Slicing in List of Python
  • Ans. 

    Slicing in Python allows you to extract a subset of elements from a list.

    • Slicing is done using square brackets and the start:stop:step notation.

    • The start index is inclusive, while the stop index is exclusive.

    • You can omit any of the three parameters, defaulting to 0 for start, length of list for stop, and 1 for step.

    • Negative indices can be used to slice from the end of the list.

    • Example: list = [1, 2, 3, 4, 5], list[1:4]...

  • Answered by AI
  • Q2. Multithreading questions were asked

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024, where I was asked the following questions.

  • Q1. What is your business target
  • Ans. 

    My business target is to achieve a 20% increase in sales revenue through strategic client engagement and innovative insurance solutions.

    • Focus on building strong relationships with clients to understand their needs better.

    • Implement targeted marketing campaigns to reach potential customers, such as social media ads.

    • Set quarterly sales goals and track progress to ensure targets are met.

    • Utilize data analytics to identify t...

  • Answered by AI
  • Q2. How you can improve company revenue
  • Ans. 

    Enhancing company revenue involves strategic marketing, customer engagement, and optimizing sales processes.

    • Implement targeted marketing campaigns to reach specific demographics, such as young families or retirees.

    • Enhance customer service training to improve client retention and satisfaction, leading to increased referrals.

    • Utilize data analytics to identify trends and tailor insurance products to meet emerging customer...

  • Answered by AI
  • Q3. How you can build your success full team
  • Ans. 

    Building a successful insurance sales team requires strategic hiring, ongoing training, and fostering a positive culture.

    • Identify the right talent: Look for individuals with strong communication skills and a passion for sales. For example, hire candidates with a proven track record in sales.

    • Provide comprehensive training: Implement regular training sessions on product knowledge and sales techniques. For instance, condu...

  • Answered by AI
  • Q4. What is your business potential area
  • Ans. 

    My business potential area lies in expanding insurance coverage for underserved markets and leveraging technology for customer engagement.

    • Targeting small businesses that lack comprehensive insurance options.

    • Developing tailored insurance products for freelancers and gig economy workers.

    • Utilizing data analytics to identify high-risk areas and offer customized solutions.

    • Implementing digital platforms for easier policy man...

  • Answered by AI
  • Q5. What is your business field like Life or general insurance
  • Ans. 

    The insurance business encompasses life and general insurance, each serving distinct needs and markets.

    • Life insurance focuses on providing financial security to beneficiaries upon the policyholder's death, e.g., term life policies.

    • General insurance covers a wide range of products like auto, home, and health insurance, protecting against various risks.

    • Life insurance products often include savings and investment componen...

  • Answered by AI
  • Q6. How you can approach health insurance customer

Interview Preparation Tips

Interview preparation tips for other job seekers - This company is very good platform for your performance.

Software Developer Interview Questions & Answers

user image Kartik shukla

posted on 29 Aug 2024

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

Asked Question from Tree nad linked list

Round 2 - Technical 

(1 Question)

  • Q1. About JWT and SQL query
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(5 Questions)

  • Q1. What is the reason resignation other company
  • Ans. 

    I resigned to pursue better growth opportunities and align my career with my long-term goals.

    • Seeking career advancement: I wanted a role with more leadership responsibilities.

    • Desire for new challenges: I felt my skills were underutilized in my previous position.

    • Cultural fit: I was looking for a company whose values aligned more closely with my own.

    • Work-life balance: I sought a position that offered more flexibility and...

  • Answered by AI
  • Q2. What is your ctc
  • Ans. 

    My current CTC is competitive and reflects my experience and contributions in the industry.

    • My current CTC is $120,000 annually, which includes base salary and bonuses.

    • I have received consistent raises over the past few years due to performance.

    • In my last role, I negotiated a 15% increase based on my contributions to a successful project.

  • Answered by AI
  • Q3. What is comfortable location
  • Q4. Why you come sels
  • Ans. 

    I come to sales because it allows me to leverage my skills in relationship-building and strategic thinking to drive business growth.

    • Passion for building relationships: I enjoy connecting with clients and understanding their needs, which leads to tailored solutions.

    • Strategic mindset: I thrive on analyzing market trends and developing strategies that align with business goals, as seen in my previous role where I increase...

  • Answered by AI
  • Q5. What is your family members
  • Ans. 

    I come from a close-knit family that values support, love, and shared experiences, which have shaped who I am today.

    • My parents have always encouraged my education and career aspirations, providing a strong foundation.

    • I have one younger sister who is pursuing her passion in art, and we often collaborate on creative projects.

    • Family gatherings are a tradition for us, where we share stories and celebrate milestones togethe...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I appeared for an interview in Sep 2024, where I was asked the following questions.

  • Q1. Self introduction
  • Q2. Business month mode
  • Ans. 

    Business month mode refers to the strategic planning and performance evaluation based on monthly business cycles.

    • Monthly Performance Reviews: Regular assessments of sales and operational metrics to identify trends and areas for improvement.

    • Budgeting and Forecasting: Establishing monthly budgets and forecasts to align resources with business goals, such as increasing sales by 10% each month.

    • Sales Cycle Analysis: Underst...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Will give training on Motor and Health Insurance and will take a final assignment for the same, it is necessary to be qualified.

Round 2 - Assignment 

I gave an assignment on motor insurance where I passed with 76%.

Interview Preparation Tips

Interview preparation tips for other job seekers - Motor and health insurance is not rocket science so don't worry about it just get proper insurance information and do your assignment with full focus.

Top trending discussions

View All
Salary Discussions, Hike & Promotions
1w
a senior executive
GF salary Vs. My salary
Me and my gf have been dating for 5 years. Back in 2020, I started my career with a package of ₹5 LPA. Over the years, I’ve reached ₹22 LPA in 2025. She started her journey with ₹3 LPA(2020) and is now earning ₹8 LPA(2025). We’ve been in a live-in relationship for around 2 years, and the idea was to share expenses equally. But, equal sharing never really happened. If we go to a café she likes, especially with friends, I will pay the entire bill. We only split the house rent and grocery bills. I told her lots of time to cut down these costly cafe expenses or earn more money, increase your package, study and work hard, but.....she is now in her comfort zone. Being from a tech background, I have seen people upgrade their skills and package for a good life in metro cities. I am ready to support her in her studies, but she is like I am earning enough for myself.... No, you are not. I love her, but I don't know how to overcome this issue between us. Please suggest!
Got a question about RenewBuy?
Ask anonymously on communities.

RenewBuy Interview FAQs

How many rounds are there in RenewBuy interview?
RenewBuy interview process usually has 2-3 rounds. The most common rounds in the RenewBuy interview process are HR, Resume Shortlist and One-on-one Round.
How to prepare for RenewBuy 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 RenewBuy. The most common topics and skills that interviewers at RenewBuy expect are Sales, Python, Social Networking, Insurance Sales and Salesforce.
What are the top questions asked in RenewBuy interview?

Some of the top questions asked at the RenewBuy interview -

  1. How insurance will help common peop...read more
  2. Can you describe your current project or any past projects that are related to ...read more
  3. Common metrics to find accuracy of linnear regression model and Logistic regres...read more
What are the most common questions asked in RenewBuy HR round?

The most common HR questions asked in RenewBuy interview are -

  1. Why are you looking for a chan...read more
  2. What are your salary expectatio...read more
  3. Why should we hire y...read more
How long is the RenewBuy interview process?

The duration of RenewBuy interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.9/5

based on 52 interview experiences

Difficulty level

Easy 42%
Moderate 58%

Duration

Less than 2 weeks 84%
2-4 weeks 4%
4-6 weeks 4%
More than 8 weeks 8%
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 462 Interviews
Meesho Interview Questions
3.7
 • 360 Interviews
CARS24 Interview Questions
3.5
 • 359 Interviews
Udaan Interview Questions
3.9
 • 346 Interviews
Zepto Interview Questions
3.5
 • 287 Interviews
BlackBuck Interview Questions
3.7
 • 193 Interviews
Tata 1mg Interview Questions
3.6
 • 176 Interviews
Digit Insurance Interview Questions
3.9
 • 158 Interviews
Paisabazaar.com Interview Questions
3.4
 • 152 Interviews
Urban Company Interview Questions
3.4
 • 142 Interviews
View all

RenewBuy Reviews and Ratings

based on 659 reviews

3.4/5

Rating in categories

3.3

Skill development

3.5

Work-life balance

3.4

Salary

3.0

Job security

3.3

Company culture

3.0

Promotions

3.2

Work satisfaction

Explore 659 Reviews and Ratings
Sales Manager
147 salaries
unlock blur

₹2.2 L/yr - ₹5 L/yr

Relationship Manager
143 salaries
unlock blur

₹1.8 L/yr - ₹4.8 L/yr

Software Engineer
127 salaries
unlock blur

₹3 L/yr - ₹9.6 L/yr

Operations Executive
109 salaries
unlock blur

₹2 L/yr - ₹4.3 L/yr

Senior Sales Manager
107 salaries
unlock blur

₹3.2 L/yr - ₹5.2 L/yr

Explore more salaries
Compare RenewBuy with

Udaan

3.9
Compare

Swiggy

3.8
Compare

CARS24

3.5
Compare

BlackBuck

3.7
Compare
write
Share an Interview