Add office photos
Employer?
Claim Account for FREE

Shaadi.com

3.4
based on 213 Reviews
Filter interviews by

20+ Vishakha Polyfab Interview Questions and Answers

Updated 11 Oct 2024

Q1. What is sales and how you sale a marriage package to anyone

Ans.

Sales is the process of convincing someone to buy a product or service. Selling a marriage package involves highlighting its benefits and addressing concerns.

  • Understand the customer's needs and preferences

  • Highlight the benefits of the package, such as cost savings and convenience

  • Address any concerns or objections the customer may have, such as the quality of the services included

  • Provide testimonials or references from satisfied customers

  • Offer incentives or discounts to encour...read more

Add your answer

Q2. Why they doesn't clear about their payroll and incentive qualifiers?

Ans.

The company may not have a clear understanding of their own payroll and incentive qualifiers.

  • The company may be experiencing internal communication issues.

  • There may be a lack of transparency within the company.

  • The company may not have a standardized system for determining payroll and incentives.

  • The company may be constantly changing their payroll and incentive qualifiers.

  • The company may not prioritize communicating payroll and incentive qualifiers to employees.

Add your answer

Q3. What you think the name of matrimony

Ans.

Matrimony should have a name that reflects the union of two individuals in a meaningful way.

  • The name should be easy to remember and pronounce

  • It should convey the idea of a lifelong commitment

  • The name should be inclusive and not gender-specific

  • Examples: Unity, Everlasting, Together, Harmony, Union

  • The name should also be culturally sensitive and appropriate

Add your answer

Q4. How to implement any one of acid property.

Ans.

To implement ACID property, use transactions to ensure atomicity, consistency, isolation, and durability of data.

  • Use transactions to group related database operations together.

  • Ensure that all operations within a transaction are completed successfully or none of them are.

  • Maintain consistency by enforcing data integrity constraints.

  • Isolate transactions to prevent interference from other transactions.

  • Ensure durability by persisting changes to disk.

  • Examples of ACID-compliant data...read more

Add your answer
Discover Vishakha Polyfab interview dos and don'ts from real experiences

Q5. Show me a pitch of your sale

Ans.

My sales pitch focuses on the unique benefits of the product and how it solves the customer's problem.

  • Highlight the key features and benefits of the product

  • Explain how it solves the customer's problem or meets their needs

  • Provide social proof or testimonials to build trust

  • Create a sense of urgency or scarcity to encourage action

  • Offer a clear call to action and make it easy to buy

  • Example: Our product is a portable charger that can charge your phone up to 3 times. It's perfect f...read more

Add your answer

Q6. Show your selling skills

Ans.

I have excellent selling skills that involve active listening, building rapport, and providing solutions that meet the customer's needs.

  • I actively listen to the customer's needs and concerns

  • I build rapport by being friendly, approachable, and knowledgeable

  • I provide solutions that meet the customer's needs and offer additional products or services that complement their purchase

  • I use persuasive language and techniques to encourage the customer to make a purchase

  • I follow up with...read more

Add your answer
Are these interview questions helpful?

Q7. What is customer service

Ans.

Customer service is the assistance and support provided to customers before, during, and after a purchase.

  • Customer service involves addressing customer inquiries, concerns, and complaints in a timely and professional manner.

  • It includes providing product information, troubleshooting assistance, and resolving issues to ensure customer satisfaction.

  • Examples of customer service activities include answering phone calls, responding to emails, and offering personalized recommendatio...read more

Add your answer

Q8. How to improve CSAT if your CSAT Score is down?

Ans.

To improve CSAT, focus on identifying the root cause of low scores and implementing targeted solutions.

  • Analyze customer feedback to identify common issues

  • Train service team members on effective communication and problem-solving skills

  • Implement process improvements to address identified issues

  • Regularly monitor and track CSAT scores to measure progress

  • Provide incentives for service team members who consistently receive high CSAT scores

Add your answer
Share interview questions and help millions of jobseekers 🌟

Q9. How to sell the product and convince the member

Ans.

To sell the product and convince the member, focus on highlighting the benefits, addressing their needs, building trust, and providing excellent customer service.

  • Highlight the unique features and benefits of the product that meet the member's needs

  • Address any concerns or objections the member may have by providing solutions and reassurance

  • Build trust by being knowledgeable about the product, transparent in communication, and reliable in follow-up

  • Provide excellent customer ser...read more

Add your answer

Q10. Explain the types of Data Modelling and its concepts.

Ans.

Data Modelling involves creating a visual representation of data to understand relationships and patterns.

  • Types of Data Modelling include Conceptual, Logical, and Physical models

  • Conceptual model focuses on high-level business concepts and relationships

  • Logical model translates the conceptual model into a more detailed structure

  • Physical model represents how the data will be stored in a database system

  • Data Modelling concepts include entities, attributes, relationships, and const...read more

Add your answer

Q11. explain promises, promise.all(), impliment binary search

Ans.

Promises are objects representing the eventual completion or failure of an asynchronous operation. promise.all() is a method that takes an array of promises and returns a single promise that resolves when all of the promises have resolved.

  • Promises are used in JavaScript to handle asynchronous operations.

  • promise.all() takes an array of promises and returns a single promise that resolves when all promises in the array have resolved.

  • Binary search is a search algorithm that finds...read more

Add your answer

Q12. impliment counter using closure in js

Ans.

Implement a counter using closure in JavaScript.

  • Create a function that returns another function which increments a counter variable.

  • The counter variable should be defined in the outer function's scope and only accessible to the inner function.

  • Each time the inner function is called, increment the counter variable and return its value.

Add your answer

Q13. What are ensemble models

Ans.

Ensemble models are machine learning models that combine multiple individual models to improve predictive performance.

  • Ensemble models work by aggregating predictions from multiple models to make a final prediction.

  • Common types of ensemble models include Random Forest, Gradient Boosting, and AdaBoost.

  • Ensemble models are often more accurate and robust than individual models.

  • They can reduce overfitting and increase generalization performance.

  • Ensemble models can be used for class...read more

Add your answer

Q14. Find deepest object in nested object

Ans.

Use recursion to find the deepest object in a nested object structure.

  • Use recursion to iterate through each key in the object

  • Keep track of the depth level as you traverse the object

  • Compare the depth levels of each nested object to find the deepest one

Add your answer

Q15. Difference between bagging and boosting

Ans.

Bagging and boosting are ensemble learning techniques used to improve the performance of machine learning models by combining multiple weak learners.

  • Bagging (Bootstrap Aggregating) involves training multiple models independently on different subsets of the training data and then combining their predictions through averaging or voting.

  • Boosting involves training multiple models sequentially, where each subsequent model corrects the errors made by the previous models, focusing m...read more

Add your answer

Q16. Guesstimation on real estate

Ans.

Estimate the market value of a specific real estate property

  • Consider the location of the property

  • Look at recent sales of similar properties in the area

  • Take into account the size and condition of the property

  • Factor in any unique features or upgrades that may affect the value

Add your answer

Q17. What is abstract class

Ans.

An abstract class is a class that cannot be instantiated and is used as a base class for other classes to inherit from.

  • Cannot be instantiated on its own

  • May contain abstract methods that must be implemented by subclasses

  • Can have both abstract and non-abstract methods

Add your answer

Q18. Explain OOPS concepts

Ans.

OOPS concepts refer to Object-Oriented Programming principles like Inheritance, Encapsulation, Polymorphism, and Abstraction.

  • Inheritance: Allows a class to inherit properties and behavior from another class.

  • Encapsulation: Bundling data and methods that operate on the data into a single unit.

  • Polymorphism: Ability to present the same interface for different data types.

  • Abstraction: Hiding the complex implementation details and showing only the necessary features.

Add your answer

Q19. Explain ACID Properties

Ans.

ACID properties are a set of principles that guarantee reliability and consistency in database transactions.

  • Atomicity ensures that all operations in a transaction are completed successfully or none at all.

  • Consistency ensures that the database remains in a valid state before and after the transaction.

  • Isolation ensures that transactions are executed independently without interference from other transactions.

  • Durability ensures that once a transaction is committed, its changes ar...read more

Add your answer

Q20. Do you know about telesales

Ans.

Telesales is the process of selling products or services over the phone.

  • Telesales involves making outbound calls to potential customers to pitch products or services

  • It requires strong communication and persuasion skills

  • Telesales representatives often use scripts to guide their conversations

  • Follow-up calls and building relationships with customers are important in telesales

  • Examples of telesales include cold calling for insurance sales or promoting new products to existing cust...read more

Add your answer

Q21. What are closures

Ans.

Closures are functions that have access to their own scope, as well as the scope in which they were defined.

  • Closures allow functions to access variables from their outer function even after the outer function has finished executing.

  • They are commonly used to create private variables in JavaScript.

  • Closures can be used to create functions that 'remember' their lexical environment.

Add your answer

Q22. Comfortable for night or not.

Ans.

Yes, I am comfortable for night.

  • I am comfortable sleeping at night.

  • I prefer a quiet and dark environment for a good night's rest.

  • I have a bedtime routine that helps me relax and fall asleep easily.

Add your answer

Q23. describe product management

Ans.

Product management involves overseeing the development and marketing of a product from conception to launch.

  • Identifying market needs and opportunities

  • Defining product strategy and roadmap

  • Collaborating with cross-functional teams

  • Prioritizing features and enhancements

  • Analyzing data and feedback for product improvements

Add your answer

Q24. Explain BigQuery

Ans.

BigQuery is a fully managed, serverless data warehouse by Google Cloud for analyzing large datasets using SQL.

  • Fully managed and serverless data warehouse

  • Allows for analyzing large datasets using SQL

  • Integrates with other Google Cloud services like Data Studio and AI Platform

Add your answer
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at Vishakha Polyfab

based on 17 interviews in the last 1 year
Interview experience
3.9
Good
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Interview Questions from Similar Companies

3.6
 • 2k Interview Questions
4.0
 • 683 Interview Questions
3.3
 • 476 Interview Questions
3.9
 • 257 Interview Questions
4.1
 • 198 Interview Questions
3.7
 • 133 Interview Questions
View all
Top Shaadi.com Interview Questions And Answers
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
70 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter