Upload Button Icon Add office photos

Best Value Chem

Compare button icon Compare button icon Compare

Filter interviews by

Best Value Chem HR Executive Interview Questions and Answers

Updated 23 May 2024

Best Value Chem HR Executive Interview Experiences

1 interview found

HR Executive Interview Questions & Answers

user image Anonymous

posted on 23 May 2024

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

(1 Question)

  • Q1. Tell me something about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - good

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 Best Value Chem?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Feb 2022. There were 2 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 

Interview Preparation Tips

Interview preparation tips for other job seekers - I'm good work and best results with you

HR Executive Interview Questions Asked at Other Companies

asked in Tata Group
Q1. From an HR perspective, should a manager understand HR principles ... read more
asked in Sodexo
Q2. What do you know about Labor Law?
Q3. What is your understanding of outsourcing?
asked in Accenture
Q4. If you had 100 million dollars, what would you do?
asked in Siri AB
Q5. What are the sourcing techniques you are familiar with ? How long ... read more
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - HR 

(1 Question)

  • Q1. General questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Technical Test and product test
Round 3 - Vice President 

(1 Question)

  • Q1. Deep knowledge of Market

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Prepare about company portfolio and current market situation.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Mar 2023. There were 5 interview rounds.

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 - Aptitude Test 

Tricky questions from js, sql, c#

Round 3 - Technical 

(2 Questions)

  • Q1. Uses of B Tree
  • Ans. 

    B Trees are used for indexing in databases and file systems.

    • Used for efficient searching, insertion, and deletion operations in databases.

    • Helps in maintaining sorted data for quick retrieval.

    • Commonly used in file systems to store large amounts of data efficiently.

    • Each node in a B Tree can have multiple children, reducing the height of the tree.

  • Answered by AI
  • Q2. What is CTE in sql
  • Ans. 

    CTE stands for Common Table Expression in SQL, used to create temporary result sets that can be referenced within a SELECT, INSERT, UPDATE, or DELETE statement.

    • CTEs improve readability and maintainability of complex queries

    • CTEs can be recursive, allowing for hierarchical data querying

    • CTEs are defined using the WITH keyword followed by the CTE name and query

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Program to reverse a linked list
  • Ans. 

    Reverse a linked list by changing the next pointers of each node to point to the previous node.

    • Start with three pointers: current, prev, and next.

    • Iterate through the linked list, updating the next pointers to point to the previous node.

    • Update prev, current, and next pointers in each iteration until the end of the list is reached.

  • Answered by AI
  • Q2. Puzzles from geeksforgeeks
Round 5 - HR 

(1 Question)

  • Q1. General HR questions like difficulties, strength weakness etc.

Skills evaluated in this interview

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is your current role?
  • Ans. 

    I am currently working as a Business Analyst at a technology company.

    • Analyzing business processes and requirements

    • Creating reports and dashboards for stakeholders

    • Collaborating with cross-functional teams to gather and analyze data

  • Answered by AI
  • Q2. About basic finance
Round 2 - Technical 

(2 Questions)

  • Q1. What is hedge fund?
  • Ans. 

    A hedge fund is an investment fund that pools capital from accredited individuals or institutional investors and invests in a variety of assets.

    • Hedge funds are typically only available to accredited investors due to their complex and risky nature.

    • They often use leverage and derivatives to amplify returns.

    • Hedge funds charge both a management fee and a performance fee based on the fund's profits.

    • They can invest in a wide...

  • Answered by AI
  • Q2. What are derivatives ?
  • Ans. 

    Derivatives are financial instruments whose value is derived from an underlying asset or group of assets.

    • Derivatives can be used for hedging, speculation, or arbitrage.

    • Common types of derivatives include options, futures, forwards, and swaps.

    • Derivatives allow investors to take positions on the price movements of assets without owning the assets themselves.

    • They are often used to manage risk in financial markets.

    • Derivati...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why do you wan to change?
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Desire for professional growth and development

    • Interest in exploring new industries or sectors

    • Seeking a more collaborative work environment

    • Opportunity to work on more impactful projects

    • Desire for better work-life balance

  • Answered by AI
  • Q2. Salary discussion

Software Developer Interview Questions & Answers

IVP (India) user image MCA22 Gaurav Prakash

posted on 13 Aug 2023

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

(3 Questions)

  • Q1. What is arrow function in JS
  • Ans. 

    Arrow functions are a concise way to write functions in JavaScript.

    • Arrow functions have a shorter syntax compared to regular functions.

    • They do not have their own 'this' keyword, and instead inherit 'this' from the parent scope.

    • Arrow functions are best suited for non-method functions, and cannot be used as constructors.

    • Example: const add = (a, b) => a + b;

  • Answered by AI
  • Q2. What is runtime polymerphism
  • Ans. 

    Runtime polymorphism is the ability of a subclass to override a method from its superclass during runtime.

    • Runtime polymorphism is achieved through method overriding in object-oriented programming.

    • It allows a subclass to provide a specific implementation of a method that is already defined in its superclass.

    • The actual method called is determined by the type of object at runtime.

    • Example: Animal class has a method 'makeSo...

  • Answered by AI
  • Q3. What is abstraction in oops
  • Ans. 

    Abstraction in OOP is the concept of hiding complex implementation details and showing only the necessary features to the outside world.

    • Abstraction allows us to focus on what an object does rather than how it does it

    • It helps in reducing complexity and improving maintainability of code

    • Example: A car is an abstraction of various components like engine, wheels, etc. Users interact with the car without needing to know the ...

  • Answered by AI
Round 3 - Coding Test 

DSA questions Reverse the linkedlist

Round 4 - One-on-one 

(2 Questions)

  • Q1. Explain your project
  • Q2. He asked two SQL queries

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Assignment 

Only DSa and aptitude was asked

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are lucky, you will be selected.
dene wala toh bhagwan hi hota h.
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Naukri.com

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 - Technical 

(2 Questions)

  • Q1. Brief about previous work experience
  • Q2. Questions regarding technical knowledge
Round 3 - HR 

(1 Question)

  • Q1. Discussion regarding salary

Interview Preparation Tips

Interview preparation tips for other job seekers - The difficulty of interview is moderate. Get strong about basics and sure you will get through. Thanks.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is the concrete
  • Ans. 

    Concrete is a strong and durable building material made from a mixture of cement, sand, gravel, and water.

    • Concrete is commonly used in construction for buildings, roads, bridges, and more

    • It is known for its strength, durability, and versatility

    • The ingredients of concrete include cement, sand, gravel, and water

    • Concrete can be poured into molds to create various shapes and structures

  • Answered by AI
  • Q2. How admixture work in concrete and different type of admixture and its uses.
  • Ans. 

    Admixtures are added to concrete to alter its properties or enhance its performance. They can improve workability, durability, and strength.

    • Admixtures are added to concrete during mixing to modify its properties.

    • Types of admixtures include water-reducing, air-entraining, accelerating, retarding, and plasticizers.

    • Water-reducing admixtures improve workability and reduce water content.

    • Air-entraining admixtures create smal...

  • Answered by AI
  • Q3. Properties of construction materials
  • Ans. 

    Construction materials have various properties that affect their performance and durability.

    • Strength: Ability to withstand loads without breaking or deforming (e.g. concrete, steel)

    • Durability: Resistance to wear, weathering, and deterioration over time (e.g. brick, stone)

    • Density: Mass per unit volume, affects weight and insulation properties (e.g. wood, foam)

    • Thermal conductivity: Ability to conduct heat, important for ...

  • Answered by AI
  • Q4. How to do mix design for different grade.
  • Ans. 

    Mix design for different grade involves determining the proportions of materials to achieve desired concrete properties.

    • Identify the required grade of concrete based on project specifications.

    • Select suitable materials such as cement, aggregates, and water.

    • Calculate the mix proportions based on desired strength and workability.

    • Perform trial mixes and adjust proportions as needed.

    • Test the concrete for desired properties ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Chryso Assistant Manager interview:
  • Mix design
Interview preparation tips for other job seekers - Just keep deep knowledge of concrete
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2022. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Expected salary and Prevoius salary details
  • Q2. For how long you will associate with company

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have direct contact with management no need of any interview you will get job directly with out any interview.

Best Value Chem Interview FAQs

How many rounds are there in Best Value Chem HR Executive interview?
Best Value Chem interview process usually has 1 rounds. The most common rounds in the Best Value Chem interview process are HR.

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Interview Questions from Similar Companies

Solenis Interview Questions
3.9
 • 20 Interviews
British Paints Interview Questions
3.6
 • 20 Interviews
Paushak Interview Questions
3.8
 • 16 Interviews
Chryso Interview Questions
3.8
 • 15 Interviews
Galva Decoparts Interview Questions
3.6
 • 15 Interviews
IVP (India) Interview Questions
4.1
 • 14 Interviews
View all
Plant Operator
35 salaries
unlock blur

₹1.5 L/yr - ₹4.1 L/yr

QC Chemist
33 salaries
unlock blur

₹1.5 L/yr - ₹4 L/yr

Maintenance Engineer
31 salaries
unlock blur

₹2 L/yr - ₹4.7 L/yr

Assistant Manager
19 salaries
unlock blur

₹6.1 L/yr - ₹14 L/yr

EHS Officer
18 salaries
unlock blur

₹3 L/yr - ₹4.3 L/yr

Explore more salaries
Compare Best Value Chem with

Cohizon Life Sciences Limited

3.6
Compare

British Paints

3.5
Compare

Galva Decoparts

3.6
Compare

AGROCEL INDUSTRIES

4.4
Compare
write
Share an Interview