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, Process, and Tips

Updated 22 Jan 2025

Top RenewBuy Interview Questions and Answers

View all 16 questions

RenewBuy Interview Experiences

Popular Designations

39 interviews found

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

I was interviewed 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

Top RenewBuy Senior Data Scientist Interview Questions and Answers

Q1. Can you describe your current project or any past projects that are related to machine learning?
View answer (1)

Senior Data Scientist Interview Questions asked at other Companies

Q1. What is the difference between logistic and linear regression?
View answer (4)

Sun Pharmaceutical Industries

Join us and thrive in a company culture that inspires and empowers.

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

Linux System Administrator Interview Questions asked at other Companies

Q1. What are the causes of user not able to login application
View answer (9)
RenewBuy Interview Questions and Answers for Freshers
illustration image
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
  • Q2. Previous Company Roles & Responsibility

Sales Manager Interview Questions asked at other Companies

Q1. If you're in Cold areas like Kashmir or Himachal Pradesh. & You have to sell an AC which is having only Cold option. How would you do that?
View answer (17)
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

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)

RenewBuy interview questions for popular designations

 Sales Manager

 (7)

 Software Engineer

 (3)

 Software Developer

 (2)

 Area Sales Manager

 (2)

 Operations Executive

 (2)

 Manager

 (1)

 Relationship Manager

 (1)

 Backend Developer

 (1)

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

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)

Get interview-ready with Top RenewBuy Interview Questions

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.

Manager Sales & Operations Interview Questions asked at other Companies

Q1. how can we increase our market share with Business Partners..?
View answer (4)

Sales Manager Interview Questions & Answers

user image Anonymous

posted on 25 Aug 2023

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

I applied via Recruitment Consulltant and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all Resume tips
Round 2 - One-on-one 

(5 Questions)

  • Q1. How was my work process? And how I am handle the customer?
  • Ans. First of all I am believe on my own work. Because I try my best to attach the customer as a family. After I start my work.
  • Answered Anonymously
  • Q2. How was my experience in this field?
  • Q3. I have 4 year experience .
  • Q4. What is my last company profile?
  • Q5. How much done business by me in previous company in a month?

Interview Preparation Tips

Interview preparation tips for other job seekers - I think first of all new job sekkers learn how to behave the customer first meeting. Then ask him about his family.like children future and if he will not more than what is do his family.. so do like a family behave .. that's all. Thanku

Sales Manager Interview Questions asked at other Companies

Q1. If you're in Cold areas like Kashmir or Himachal Pradesh. & You have to sell an AC which is having only Cold option. How would you do that?
View answer (17)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Interview me kai sare questions puche jate hai

Round 2 - HR 

(2 Questions)

  • Q1. Tell me something about you
  • Q2. What is your weakness
  • Ans. 

    One of my weaknesses is that I can be overly critical of my own work.

    • I tend to be a perfectionist and can spend too much time on minor details

    • I am working on improving my ability to delegate tasks and trust others to complete them

    • I have learned to recognize when my self-criticism is hindering my progress and take steps to address it

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Relationship Manager Interview Questions asked at other Companies

Q1. How will you market banking products ? Are you willing to work at the ground level ? What are the challenges of marketing at ground level ? How different is it from other kinds of marketing? What did you learn in mba with respect to marketi... read more
View answer (47)

Interview Questions & Answers

user image Anonymous

posted on 5 Feb 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. How is my work experience with employers and which one you think gave shape. to your career.
  • Q2. What values will you bring along? to the organization?
  • Ans. How your skills will help in growing RB and you as a professional
  • Answered Anonymously
  • Q3. What is your biggest achievement till now?

Interview Preparation Tips

Interview preparation tips for other job seekers - One has to be prepared. what is going around and its implications on industry.

How one would be able to become solution oriented. This all has to be practiced before the interview.

Team Lead Interview Questions & Answers

user image Rohit Amoli

posted on 5 Apr 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Technical sql, linux
Round 2 - Technical 

(1 Question)

  • Q1. Technical linux, sql

Team Lead Interview Questions asked at other Companies

Q1. write a java program to get maxing profit by buying and selling a share from a given set of values (they will change the question after you give solution, like if consider buying only once and selling once they will say to buying multiple t... read more
View answer (3)
Contribute & help others!
anonymous
You can choose to be anonymous

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, Django and Monitoring.
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
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.

Recently Viewed

SALARIES

Avanti Learning Centres

No Salaries

LIST OF COMPANIES

Avanti Learning Centres

Overview

COMPANY BENEFITS

Avanti Learning Centres

No Benefits

LIST OF COMPANIES

ESAF Small Finance Bank

Overview

DESIGNATION

DESIGNATION

LIST OF COMPANIES

PhonePe

Overview

REVIEWS

Avanti Learning Centres

No Reviews

SALARIES

McKinsey & Company

No Salaries

COMPANY BENEFITS

McKinsey & Company

No Benefits

Tell us how to improve this page.

RenewBuy Interview Process

based on 46 interviews

Interview experience

3.8
  
Good
View more

HCLTech

A more secure future awaits you

RenewBuy Reviews and Ratings

based on 549 reviews

3.4/5

Rating in categories

3.3

Skill development

3.5

Work-life balance

3.4

Salary

3.1

Job security

3.3

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 549 Reviews and Ratings
Relationship Manager
143 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sales Manager
126 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
105 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Operations Executive
104 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Sales Manager
104 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare RenewBuy with

PolicyBazaar

3.6
Compare

Coverfox

4.2
Compare

Turtlemint

3.6
Compare

ACKO

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