Upload Button Icon Add office photos

Filter interviews by

ITC Group Interview Questions and Answers

Updated 27 Aug 2022

ITC Group Interview Experiences

Popular Designations

2 interviews found

I applied via Approached by Company

Round 1 - Technical 

(1 Question)

  • Q1. What iis diffrent between ups nd inverter
  • Ans. 

    UPS provides backup power during power outages while an inverter converts DC to AC power.

    • UPS provides instant backup power during power outages

    • Inverter converts DC to AC power

    • UPS has a battery backup system while inverters may or may not have one

    • UPS is used for critical applications like hospitals, data centers, etc.

    • Inverters are used for domestic purposes like powering home appliances, etc.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Best knowledge nd good team work is good quality of person and he also a good thinker every conditionn

Electrical Engineer Interview Questions asked at other Companies

Q1. What is the difference between Switch gear & Circuit Breakers ?
View answer (13)

Interview Questionnaire 

3 Questions

  • Q1. Why do u want to join ITC
  • Q2. As a frasher I have no any experience about any work so it's a big platform for me to start my carrier
  • Q3. How they manage that mughe off on ground working peoples

Mechanical Engineer Interview Questions asked at other Companies

Q1. What we need to do if pressure valve fail in boiler
View answer (8)

Interview questions from similar companies

I applied via Referral and was interviewed before Mar 2021. There were 2 interview rounds.

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

They give me some problems of sales in rural areas that this products sales was not success in this type of area what you do to improve it?
I just answer that gave them more scheme on product to the dealer and they will gave more discount to store to make sale growth. First start without no profit and loss after that the product success we start making business. Because all is need to make sales. Developed company growth or nothing. They just want target. The Target ? Remind it.

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have skills to sell their products in any how. And njoy to do. Then join it. This job is for only you dear.

I applied via Naukri.com and was interviewed before May 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What do u think about the urban n rural changes in economy.? Where lies the potential of growth for FMCG

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident , tell what you know .n say what you don't.

I applied via Recruitment Consultant and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Why do you want this job and Is this job suitable for you, if so, please justify.
  • Q2. If relocated, would you be able to live at Remote areas/Hill areas/Border areas etc.?
  • Q3. Interviewer: Book order of water bottlels and assume I am an countryside Retailer. (Scenario: Retailer was arranging water bottle stocks by self to sell)
  • Q4. Where do you see yourself after 5 years in this company, if Hired?
  • Q5. Why you are leaving your previous job?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be polite, Be gentle, Smile always, Never feel offended.
Key to get hired:Never lie to employer who is hiring you.
Congrats...you are hired.

I applied via Walk-in and was interviewed before Apr 2021. 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 - Market yourself,apply even if you're not fully qualified

I applied via Recruitment Consultant and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your Journey
  • Ans. Share your schooling to present job summary, then share role and responsibilities. Achievement and share you are best in what
  • Answered by Jyotirmay Halder

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and don't give Bluff. If you don't know say I don't have idea about that particular job or duty.

Analyst Interview Questions & Answers

Dabur user image Anonymous

posted on 11 Feb 2022

I applied via Naukri.com and was interviewed before Feb 2021. There were 3 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 - HR 

(1 Question)

  • Q1. Tell me about yourself.
Round 3 - HR 

(1 Question)

  • Q1. Why should we hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - Very nice company to work from today

I applied via Recruitment Consultant and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Related to sales automation.
  • Q2. What is SFA?
  • Ans. 

    SFA stands for Sales Force Automation.

    • SFA is a software system that automates sales processes.

    • It helps sales teams manage customer interactions, track leads, and close deals.

    • SFA can also provide analytics and reporting on sales performance.

    • Examples of SFA software include Salesforce, HubSpot, and Zoho CRM.

  • Answered by AI
  • Q3. What is DMS?
  • Ans. 

    DMS stands for Document Management System.

    • DMS is a software system used to manage, store, and track electronic documents and images.

    • It allows for easy retrieval and sharing of documents within an organization.

    • DMS can also provide version control and security features to ensure document integrity.

    • Examples of DMS include Microsoft SharePoint, Google Drive, and Dropbox Business.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a long session and was an interesting one.

I appeared for an interview before Jan 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This was a typical DS/Algo where I was asked to solve two questions related to Binary Trees and write the pseudo code for both of them followed by some theoretical questions related to Operating Systems.

  • Q1. 

    K-th Largest Number in a BST

    Given a binary search tree (BST) consisting of integers and containing 'N' nodes, your task is to find and return the K-th largest element in this BST.

    If there is no K-th la...

  • Ans. 

    Find the K-th largest element in a BST.

    • Perform reverse in-order traversal of the BST to find the K-th largest element.

    • Keep track of the count of visited nodes to determine the K-th largest element.

    • Return -1 if there is no K-th largest element in the BST.

  • Answered by AI
  • Q2. 

    Is Height Balanced Binary Tree Problem Statement

    Determine if the given binary tree is height-balanced. A tree is considered height-balanced when:

    1. The left subtree is balanced.
    2. The right subtree is bala...
  • Ans. 

    Determine if a given binary tree is height-balanced by checking if left and right subtrees are balanced and their height difference is at most 1.

    • Check if the left subtree is balanced

    • Check if the right subtree is balanced

    • Calculate the height difference between the left and right subtrees

    • Return 'True' if all conditions are met, otherwise return 'False'

  • Answered by AI
  • Q3. Can you explain the concepts of Zombie Process and Orphan Process in operating systems?
  • Ans. 

    Zombie process is a terminated process that has completed execution but still has an entry in the process table. Orphan process is a process whose parent process has terminated.

    • Zombie process is created when a child process completes execution but its parent process has not yet read its exit status.

    • Zombie processes consume system resources and should be cleaned up by the parent process using wait() system call.

    • Orphan p...

  • Answered by AI
Round 2 - Face to Face 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This was also a Data Structures and Algorithm round where I was asked to solve 3 medium to hard level problems along with their pseudo code within 60 minutes .

  • Q1. 

    Longest Substring Without Repeating Characters Problem Statement

    Given a string S of length L, determine the length of the longest substring that contains no repeating characters.

    Example:

    Input:
    "abac...
  • Ans. 

    Find the length of the longest substring without repeating characters in a given string.

    • Use a sliding window approach to keep track of the longest substring without repeating characters.

    • Use a hashmap to store the index of each character in the string.

    • Update the start index of the window when a repeating character is found.

    • Calculate the maximum length of the window as you iterate through the string.

    • Return the maximum le

  • Answered by AI
  • Q2. 

    Problem: Search In Rotated Sorted Array

    Given a sorted array that has been rotated clockwise by an unknown amount, you need to answer Q queries. Each query is represented by an integer Q[i], and you must ...

  • Ans. 

    Search for integers in a rotated sorted array efficiently.

    • Use binary search to efficiently search for integers in the rotated sorted array.

    • Handle the rotation of the array while performing binary search.

    • Return the index of the integer if found, else return -1.

  • Answered by AI
  • Q3. 

    Count Subarrays with Sum Divisible by K

    Given an array ARR and an integer K, your task is to count all subarrays whose sum is divisible by the given integer K.

    Input:

    The first line of input contains an...
  • Ans. 

    Count subarrays with sum divisible by K in an array.

    • Iterate through the array and keep track of the prefix sum modulo K.

    • Use a hashmap to store the frequency of each prefix sum modulo K.

    • For each prefix sum, increment the count by the frequency of (prefix sum - K) modulo K.

    • Handle the case when prefix sum itself is divisible by K.

    • Return the total count of subarrays with sum divisible by K.

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

In this round , I was asked to code a simple question related to BST . After that I was asked the internal implementation of a Hash Map where I was supposed to design a Hash Map using any of the Hashing Algorithms that I know . This was preety challenging for me but I got to learn so much from it.

  • Q1. 

    Ceil Value from BST Problem Statement

    Given a Binary Search Tree (BST) and an integer, write a function to return the ceil value of a particular key in the BST.

    The ceil of an integer is defined as the s...

  • Ans. 

    Ceil value of a key in a Binary Search Tree (BST) is found by returning the smallest integer greater than or equal to the given number.

    • Traverse the BST to find the closest value greater than or equal to the key.

    • Compare the key with the current node value and update the ceil value accordingly.

    • Recursively move to the left or right subtree based on the comparison.

    • Return the ceil value once the traversal is complete.

  • Answered by AI
  • Q2. 

    Design a Constant Time Data Structure

    Create a data structure that maintains mappings between keys and values, supporting the following operations in constant time:

    1. INSERT(key, value): Add or update t...
  • Ans. 

    Design a constant time data structure to maintain mappings between keys and values with various operations.

    • Use a hash table to achieve constant time complexity for INSERT, DELETE, SEARCH, and GET operations.

    • Keep track of the number of key-value pairs for GET_SIZE operation.

    • Check if the hash table is empty for IS_EMPTY operation.

    • Return true or false for SEARCH operation based on key existence.

    • Return the value associated...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAFlipkart interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

ITC Group Interview FAQs

How many rounds are there in ITC Group interview?
ITC Group interview process usually has 1 rounds. The most common rounds in the ITC Group interview process are Technical.
What are the top questions asked in ITC Group interview?

Some of the top questions asked at the ITC Group interview -

  1. What iis diffrent between ups nd inver...read more
  2. How they manage that mughe off on ground working peop...read more

Tell us how to improve this page.

ITC Group Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Flipkart Interview Questions
4.0
 • 1.3k Interviews
Dabur Interview Questions
4.0
 • 272 Interviews
Nestle Interview Questions
3.9
 • 234 Interviews
Britannia Interview Questions
4.0
 • 165 Interviews
Procter & Gamble Interview Questions
4.2
 • 115 Interviews
Marico Interview Questions
4.0
 • 88 Interviews
View all

ITC Group Reviews and Ratings

based on 140 reviews

3.8/5

Rating in categories

3.6

Skill development

3.4

Work-life balance

3.4

Salary

4.2

Job security

3.5

Company culture

2.9

Promotions

3.4

Work satisfaction

Explore 140 Reviews and Ratings
Sales Officer
55 salaries
unlock blur

₹3 L/yr - ₹6.1 L/yr

Area Executive
55 salaries
unlock blur

₹4.8 L/yr - ₹10 L/yr

Assistant Manager
39 salaries
unlock blur

₹12.2 L/yr - ₹35 L/yr

Area Sales Executive
23 salaries
unlock blur

₹6 L/yr - ₹11.5 L/yr

Finance Executive
16 salaries
unlock blur

₹4.4 L/yr - ₹8.5 L/yr

Explore more salaries
Compare ITC Group with

Hindustan Unilever

4.2
Compare

Nestle

3.9
Compare

Britannia

4.0
Compare

Godrej Consumer Products

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