Upload Button Icon Add office photos

Filter interviews by

HEPL - A Cavinkare Group Company Interview Questions, Process, and Tips

Updated 28 Dec 2024

Top HEPL - A Cavinkare Group Company Interview Questions and Answers

View all 21 questions

HEPL - A Cavinkare Group Company Interview Experiences

Popular Designations

17 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(4 Questions)

  • Q1. String functionality
  • Q2. Array functionality
  • Q3. Some project questions
  • Q4. Joins and write a syntax for inner join
  • Ans. 

    Inner join is used to combine rows from two or more tables based on a related column between them.

    • Use INNER JOIN keyword in SQL to perform inner join

    • Specify the columns to join on using ON keyword

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

  • Answered by AI

Top HEPL - A Cavinkare Group Company Java Developer Interview Questions and Answers

Q1. What is for loop?
View answer (1)

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)

Product deigner Interview Questions & Answers

user image Abishek

posted on 28 Dec 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Simply they ask about you !
  • Q2. Expectation
Round 2 - Assignment 

Gave me the assignment

Round 3 - One-on-one 

(3 Questions)

  • Q1. They valued my portfolio and my work
  • Q2. Design Thinking
  • Q3. Thought process

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be bold and not Expect more on that ,
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Write an Update Query
  • Ans. 

    Update query to modify data in a database table

    • Use UPDATE statement followed by table name

    • Set the column(s) to be updated using SET keyword

    • Specify the new values for the column(s) to be updated

    • Add WHERE clause to specify the condition for updating specific rows

  • Answered by AI
  • Q2. In Bootstrap how many columns are there ?
  • Ans. 

    There are 12 columns in Bootstrap grid system.

    • Bootstrap grid system is divided into 12 columns.

    • Columns can be combined to create different layouts.

    • Example:

      will create a column that spans half of the row.

  • Answered by AI
  • Q3. Is Java Interpreted or Compiler language ?
  • Ans. 

    Java is a compiled language that is first compiled into bytecode and then interpreted by the Java Virtual Machine (JVM).

    • Java is first compiled into bytecode by the Java compiler.

    • The bytecode is then interpreted by the Java Virtual Machine (JVM) at runtime.

    • This combination of compilation and interpretation makes Java a compiled language with some interpreted features.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This company will provide Base salary of 10k per month as fresher in any Devloper role.
Good place to learn and develop skills.
No Bond.

Skills evaluated in this interview

Junior Java Developer Interview Questions asked at other Companies

Q1. Why we need Oops concepts? What is Constructor? Need of Constructor? StringBuilder? etc.
View answer (1)

Java Developer Interview Questions & Answers

user image Mohkeshvaren S

posted on 30 Sep 2024

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

(3 Questions)

  • Q1. What is oops in java
  • Ans. 

    Object-oriented programming concepts in Java

    • OOPs stands for Object-Oriented Programming

    • Key concepts include classes, objects, inheritance, polymorphism, encapsulation

    • Java supports OOPs principles like abstraction, encapsulation, inheritance, and polymorphism

  • Answered by AI
  • Q2. Oops concepts in java
  • Ans. 

    Object-oriented programming concepts in Java

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

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

    • Polymorphism: ability of an object to take on many forms

    • Abstraction: hiding the implementation details and showing only the necessary features of an object

  • Answered by AI
  • Q3. Some questions in mysql

Skills evaluated in this interview

Top HEPL - A Cavinkare Group Company Java Developer Interview Questions and Answers

Q1. What is for loop?
View answer (1)

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)

HEPL - A Cavinkare Group Company interview questions for popular designations

 Java Developer

 (6)

 Assistant Manager- Purchase

 (1)

 Data Engineer

 (1)

 Desktop Support Engineer

 (1)

 IT fresher

 (1)

 Junior Java Developer

 (1)

 MIS Executive

 (1)

 Senior Java Developer

 (1)

Desktop Support Engineer Interview Questions & Answers

user image venkateshbabu kumar

posted on 5 Dec 2024

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

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

Round 1 - HR 

(2 Questions)

  • Q1. Tell me aboutyourself
  • Q2. Why you come this interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go

Desktop Support Engineer Interview Questions asked at other Companies

Q1. What is APIPA? WHAT IS SUBNETMASK? DIFFERENCE BETWEEB IPv4 and IPv6. How many types of os installation? What is BIOS AND what is use of CMOS BATTARY? WHST IS HDD and how many types of HDD? How to shot SMPS AND HOW TO UPDRADE RAM? DIFFERENCE... read more
View answer (3)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. What is for loop?
  • Ans. 

    A for loop is a control flow statement for iterating a specific number of times.

    • Used to iterate over a range of values or elements in an array

    • Consists of initialization, condition, and increment/decrement expressions

    • Example: for(int i=0; i<5; i++) { System.out.println(i); }

  • Answered by AI
  • Q2. Collection in java?
  • Ans. 

    Collections in Java are frameworks that provide an architecture to store and manipulate a group of objects.

    • Collections provide interfaces (List, Set, Map) and classes (ArrayList, LinkedList, HashSet, HashMap) to store and manipulate groups of objects.

    • Collections framework includes algorithms to manipulate data structures like sorting, searching, etc.

    • Collections are more flexible and efficient than arrays in Java.

    • Exampl...

  • Answered by AI
  • Q3. Exception handling in Java?
  • Ans. 

    Exception handling in Java is a mechanism to handle runtime errors and prevent program crashes.

    • Use try-catch blocks to handle exceptions

    • Use finally block to execute code regardless of exception

    • Use throw keyword to manually throw exceptions

    • Use throws keyword in method signature to declare exceptions that can be thrown

  • Answered by AI

Interview Preparation Tips

Topics to prepare for HEPL - A Cavinkare Group Company Java Developer interview:
  • Java basics
  • Full stack course
Interview preparation tips for other job seekers - They asked very very basics questions only. I answered well for this 3 questions they asked. I expected and prepared more. But lastly I get disappointed only. They only selected fullstack course completed students(6-1 year course). They don't care about you completed any project or skill you have. They only expecting who completed high paid course.

Skills evaluated in this interview

Top HEPL - A Cavinkare Group Company Java Developer Interview Questions and Answers

Q1. What is for loop?
View answer (1)

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Static variable

Senior Java Developer Interview Questions asked at other Companies

Q1. Delete Kth node From EndYou have been given a singly Linked List of 'N' nodes with integer data and an integer 'K'. Your task is to remove the Kth node from the end of the given Linked List. For example: The given linked list is 1 -&gt; 2 -... read more
View answer (4)

Java Developer Interview Questions & Answers

user image UIUX94 Rathish.R .R

posted on 20 Sep 2024

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

(2 Questions)

  • Q1. Syntax for for loop
  • Ans. 

    For loop syntax is used for iterating over a collection of elements in Java.

    • Syntax: for(initialization; condition; iteration) { // code block }

    • Initialization: executed before the loop starts

    • Condition: evaluated before each iteration, loop continues if true

    • Iteration: executed after each iteration

    • Example: for(int i=0; i<10; i++) { System.out.println(i); }

  • Answered by AI
  • Q2. Syntax for an array
  • Ans. 

    Syntax for declaring an array in Java

    • Declare the array type followed by square brackets and the array name

    • Initialize the array using curly braces with values separated by commas

    • Example: String[] names = {"Alice", "Bob", "Charlie"}

  • Answered by AI

Skills evaluated in this interview

Top HEPL - A Cavinkare Group Company Java Developer Interview Questions and Answers

Q1. What is for loop?
View answer (1)

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. For loop syntax?
  • Ans. 

    For loop is used to iterate over a collection of elements in Java.

    • Syntax: for(initialization; condition; update) { // code block }

    • Example: for(int i=0; i<10; i++) { System.out.println(i); }

  • Answered by AI
  • Q2. What is string in Java?
  • Ans. 

    A string in Java is a sequence of characters used to represent text.

    • Strings are objects in Java, created using the 'String' class.

    • Strings are immutable, meaning their values cannot be changed once they are created.

    • Strings can be concatenated using the '+' operator.

    • Example: String str = "Hello, World!";

  • Answered by AI

Skills evaluated in this interview

Top HEPL - A Cavinkare Group Company Java Developer Interview Questions and Answers

Q1. What is for loop?
View answer (1)

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. On core knowledge
  • Q2. About the systems and processes, core job profile on how procurement system works
  • Q3. About inventory management and purchase process
  • Q4. Team handling and multiple locations expertise
Round 2 - HR 

(1 Question)

  • Q1. About salary structure and job profile

Assistant Manager- Purchase Interview Questions asked at other Companies

Q1. Are u ready to working flexible time and also flexible location.
View answer (2)

HEPL - A Cavinkare Group Company Interview FAQs

How many rounds are there in HEPL - A Cavinkare Group Company interview?
HEPL - A Cavinkare Group Company interview process usually has 1-2 rounds. The most common rounds in the HEPL - A Cavinkare Group Company interview process are Technical, Resume Shortlist and HR.
How to prepare for HEPL - A Cavinkare Group Company 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 HEPL - A Cavinkare Group Company. The most common topics and skills that interviewers at HEPL - A Cavinkare Group Company expect are Sales, Java, B2B Sales, Campaign Management and Marketing.
What are the top questions asked in HEPL - A Cavinkare Group Company interview?

Some of the top questions asked at the HEPL - A Cavinkare Group Company interview -

  1. What is oops?,what is different between dbms and rdbms?,mainly concentrate on j...read more
  2. What is a difference between dbms and rd...read more
  3. Define eloquent in laravel? What is Hasone and Hasmany in laravel? How many col...read more
How long is the HEPL - A Cavinkare Group Company interview process?

The duration of HEPL - A Cavinkare Group Company interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

HEPL - A Cavinkare Group Company Interview Process

based on 10 interviews in last 1 year

Interview experience

3.2
  
Average
View more

People are getting interviews through

based on 11 HEPL - A Cavinkare Group Company interviews
WalkIn
Job Portal
Campus Placement
55%
27%
9%
9% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

ITC Interview Questions
4.0
 • 535 Interviews
Dabur Interview Questions
4.0
 • 251 Interviews
Nestle Interview Questions
4.0
 • 232 Interviews
Himalaya Wellness Interview Questions
4.1
 • 106 Interviews
Patanjali Ayurved Interview Questions
4.0
 • 103 Interviews
Emami Interview Questions
3.9
 • 83 Interviews
Marico Interview Questions
4.0
 • 79 Interviews
View all

HEPL - A Cavinkare Group Company Reviews and Ratings

based on 121 reviews

3.8/5

Rating in categories

3.7

Skill development

3.8

Work-Life balance

3.3

Salary & Benefits

3.4

Job Security

3.7

Company culture

3.0

Promotions/Appraisal

3.6

Work Satisfaction

Explore 121 Reviews and Ratings
Executive Accountant
33 salaries
unlock blur

₹1.4 L/yr - ₹3 L/yr

Team Lead
24 salaries
unlock blur

₹3.3 L/yr - ₹5.7 L/yr

Senior Accounts Executive
21 salaries
unlock blur

₹2.8 L/yr - ₹3.5 L/yr

Business Analyst
12 salaries
unlock blur

₹1.2 L/yr - ₹5 L/yr

Junior Developer
9 salaries
unlock blur

₹1.8 L/yr - ₹2.5 L/yr

Explore more salaries
Compare HEPL - A Cavinkare Group Company with

Dabur

4.0
Compare

Marico

4.0
Compare

Himalaya Wellness

4.1
Compare

Patanjali Ayurved

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview