Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by ITC Infotech Team. If you also belong to the team, you can get access from here

ITC Infotech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

ITC Infotech Associate Information Technology Consultant Interview Questions, Process, and Tips

Updated 17 Feb 2025

Top ITC Infotech Associate Information Technology Consultant Interview Questions and Answers

  • Q1. There is a bulb producing company and some of the produced bulbs got defected due to different reasons. Company wants to develop a module where they monitors the ratio of ...read more
  • Q2. What is software? What is SQL? Tell me about your major project. What is Oop? And it's type.
  • Q3. How Traffic Signals work? Which type of technology is used
View all 24 questions

ITC Infotech Associate Information Technology Consultant Interview Experiences

42 interviews found

I applied via campus placement at Pimpri Chinchwad College of Engineering, Pimpri and was interviewed in Sep 2022. There were 5 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 

Simple questions based on aptitude.

Round 3 - Assignment 

Online communication assessment was there

Round 4 - Coding Test 

The interviewer asked me basic questions on DSA and OOPs

Round 5 - HR 

(2 Questions)

  • Q1. It consisted only of 10min. They just me to introduce myself which should contain all information about me.
  • Q2. They told me about training process

Interview Preparation Tips

Interview preparation tips for other job seekers - ALL THE BEST. JUST BE CONFIDENT. They test our communication, technical and confidence
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic Aptitude questions and 1 Coding question

Round 2 - Technical 

(1 Question)

  • Q1. Basic questions based on the resume. OOPs, Collections, Exception handling, and 1 coding problem.
Round 3 - HR 

(1 Question)

  • Q1. Questions about your background, location, and salary negotiation.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company to start with. Great work-life balance, opportunity to upskill but very little pay.

Associate Information Technology Consultant Interview Questions Asked at Other Companies

Q1. There is a bulb producing company and some of the produced bulbs ... read more
Q2. What is software? What is SQL? Tell me about your major project. ... read more
Q3. How Traffic Signals work? Which type of technology is used
Q4. How to read excel, how can we read variable value without creatin ... read more
Q5. How would you make multiple back end requests at the same time in ... read more
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Dec 2022. There were 3 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 - Coding Test 

Online coding test involving fundamentals of Java language

Round 3 - One-on-one 

(4 Questions)

  • Q1. SQL and OOPS Fundamentals
  • Q2. Explain different JOINS
  • Ans. 

    Different types of JOINs are used in SQL to combine rows from two or more tables based on a related column between them.

    • INNER JOIN: Returns rows when there is at least one match in both tables.

    • LEFT JOIN (or LEFT OUTER JOIN): Returns all rows from the left table and the matched rows from the right table.

    • RIGHT JOIN (or RIGHT OUTER JOIN): Returns all rows from the right table and the matched rows from the left table.

    • FULL ...

  • Answered by AI
  • Q3. Explain Inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class can inherit attributes and methods from another class.

    • Allows for code reusability and promotes the concept of 'is-a' relationship

    • Derived class inherits properties and behaviors from base class

    • Can have multiple levels of inheritance

  • Answered by AI
  • Q4. Explain Overriding and overloading
  • Ans. 

    Overriding is when a subclass provides a specific implementation of a method that is already provided by its parent class, while overloading is when multiple methods have the same name but different parameters.

    • Overriding involves a subclass providing a specific implementation of a method from its parent class.

    • Overloading involves having multiple methods with the same name but different parameters.

    • Overriding is used for...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude can be cleared easily

Round 2 - Coding Test 

Coding MCQ and coding question

Round 3 - Technical 

(1 Question)

  • Q1. Coding question, SQL questions

ITC Infotech interview questions for designations

 Information Technology Support Engineer

 (1)

 Associate Consultant

 (17)

 Associate Technical Consultant

 (4)

 Senior Associate Consultant

 (1)

 Lead Consultant

 (33)

 Cloud Consultant

 (1)

 Functional Consultant

 (1)

 Principal Consultant

 (1)

I was interviewed in Feb 2022.

Round 1 - Technical 

(1 Question)

  • Q1. Questions were about Java, mainly about Java array and Java oops
Round 2 - Technical 

(1 Question)

  • Q1. It was similar like round 1, they asked me about core Java and about my education
Round 3 - HR 

(1 Question)

  • Q1. Asked me about myself and offered me the Job and discussed about CTC and job location

Interview Preparation Tips

Interview preparation tips for other job seekers - Your communication and technical skills are your gateway to the job.

Get interview-ready with Top ITC Infotech Interview Questions

I applied via Naukri.com and was interviewed in Dec 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Explain how spring application context could be configured?
  • Ans. 

    Spring application context can be configured using XML or Java-based configuration.

    • XML configuration involves creating an XML file with bean definitions and importing it into the application context.

    • Java-based configuration involves creating a Java class with @Configuration annotation and defining beans using @Bean annotation.

    • The application context can also be configured using annotations such as @ComponentScan and @A...

  • Answered by AI
  • Q2. What is localization in an application? How is it implemented?
  • Ans. 

    Localization is the process of adapting an application to meet the language, cultural, and other specific requirements of a particular country or region.

    • Localization involves translating text, adapting graphics, and adjusting formatting to meet the needs of a specific locale.

    • It can also involve changing date and time formats, currency symbols, and other regional settings.

    • Localization is implemented through the use of r...

  • Answered by AI
  • Q3. How would you make multiple back end requests at the same time in angular?
  • Ans. 

    To make multiple back end requests at the same time in Angular, you can use the forkJoin operator from the RxJS library.

    • Import the forkJoin operator from 'rxjs' in your Angular component or service

    • Create an array of observables representing the backend requests

    • Use the forkJoin operator to combine the observables and subscribe to the result

    • The result will be an array containing the responses from all the backend request

  • Answered by AI
  • Q4. Difference between session and session factory, which of them are thread safe?
  • Ans. 

    Session is a single-threaded conversation between client and server, while SessionFactory is a factory of sessions.

    • Session is created by SessionFactory

    • SessionFactory is thread-safe, while Session is not

    • SessionFactory is a heavy object, while Session is a lightweight object

    • SessionFactory is created only once per application, while Session is created per client request

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare some basic what-is-what kind of questions in your technical stack, expect some practical scenario based questions. The interview duration will be basically 20 to 25mins max, so no elaborate questions, just factual questions.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Oct 2022. There were 3 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 - Technical 

(4 Questions)

  • Q1. All the basic technical questions for the applied position.
  • Q2. What is solid principles
  • Ans. 

    SOLID principles are a set of five design principles in object-oriented programming to make software more maintainable, flexible, and scalable.

    • Single Responsibility Principle (SRP) - A class should have only one reason to change.

    • Open/Closed Principle (OCP) - Software entities should be open for extension but closed for modification.

    • Liskov Substitution Principle (LSP) - Objects of a superclass should be replaceable with...

  • Answered by AI
  • Q3. What is algorithm
  • Ans. 

    An algorithm is a step-by-step procedure for solving a problem or accomplishing a task.

    • An algorithm is a set of instructions that are followed to solve a problem.

    • It is a sequence of well-defined steps that can be executed by a computer.

    • Algorithms can be represented using flowcharts, pseudocode, or programming languages.

    • Examples of algorithms include sorting algorithms like bubble sort and searching algorithms like bina

  • Answered by AI
  • Q4. Write program for binarysort
  • Ans. 

    Binarysort is a sorting algorithm that works by repeatedly dividing the array into two halves and sorting them individually.

    • Start by dividing the array into two halves

    • Sort each half recursively

    • Merge the sorted halves back together

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion. Most of the cases they will bargain

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

It was basic DSA questions and some MCQs

Round 2 - Technical 

(1 Question)

  • Q1. Questions related to OOPs, Java and Reasoning.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Sep 2022. There were 3 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 tips
Round 2 - HR 

(1 Question)

  • Q1. About job roles and responsibilities
Round 3 - Technical 

(4 Questions)

  • Q1. Projects worked in company
  • Ans. 

    I have worked on various projects in the company, including system upgrades, software implementations, and network security enhancements.

    • System upgrades

    • Software implementations

    • Network security enhancements

  • Answered by AI
  • Q2. Roles and responsibilities
  • Q3. Big Achievements
  • Ans. 

    One of my biggest achievements was leading a team to successfully implement a new CRM system for a large client, resulting in a 20% increase in customer satisfaction.

    • Led a team to implement a new CRM system for a large client

    • Achieved a 20% increase in customer satisfaction

    • Received positive feedback from client for successful project completion

  • Answered by AI
  • Q4. Why leaving and joining itc

Interview Preparation Tips

Interview preparation tips for other job seekers - Easily you can crack the interview
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Sep 2022.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Basic questions about technical
  • Q2. Testing questions
Round 3 - Technical 

(1 Question)

  • Q1. Advanced level and programming skills to be tested
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Cool and better choose company

ITC Infotech Interview FAQs

How many rounds are there in ITC Infotech Associate Information Technology Consultant interview?
ITC Infotech interview process usually has 3-4 rounds. The most common rounds in the ITC Infotech interview process are Technical, HR and Aptitude Test.
How to prepare for ITC Infotech Associate Information Technology Consultant 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 ITC Infotech . The most common topics and skills that interviewers at ITC Infotech expect are Analytics, Data Management, ITIL, Java and Monitoring Tools.
What are the top questions asked in ITC Infotech Associate Information Technology Consultant interview?

Some of the top questions asked at the ITC Infotech Associate Information Technology Consultant interview -

  1. There is a bulb producing company and some of the produced bulbs got defected d...read more
  2. What is software? What is SQL? Tell me about your major project. What is Oop? A...read more
  3. How Traffic Signals work? Which type of technology is u...read more
How long is the ITC Infotech Associate Information Technology Consultant interview process?

The duration of ITC Infotech Associate Information Technology Consultant interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

ITC Infotech Associate Information Technology Consultant Interview Process

based on 29 interviews

4 Interview rounds

  • Technical Round
  • HR Round - 1
  • Personal Interview1 Round
  • HR Round - 2
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
DXC Technology Interview Questions
3.7
 • 809 Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
View all
ITC Infotech Associate Information Technology Consultant Salary
based on 5.2k salaries
₹4.1 L/yr - ₹15 L/yr
At par with the average Associate Information Technology Consultant Salary in India
View more details

ITC Infotech Associate Information Technology Consultant Reviews and Ratings

based on 570 reviews

3.6/5

Rating in categories

3.4

Skill development

3.8

Work-life balance

3.2

Salary

3.7

Job security

3.5

Company culture

2.9

Promotions

3.5

Work satisfaction

Explore 570 Reviews and Ratings
Associate Information Technology Consultant
5.2k salaries
unlock blur

₹4.1 L/yr - ₹15 L/yr

Lead Consultant
4.4k salaries
unlock blur

₹9 L/yr - ₹35 L/yr

Associate Consultant
828 salaries
unlock blur

₹2.5 L/yr - ₹16.1 L/yr

Software Engineer
499 salaries
unlock blur

₹4 L/yr - ₹16.3 L/yr

Senior Software Engineer
378 salaries
unlock blur

₹6.5 L/yr - ₹25 L/yr

Explore more salaries
Compare ITC Infotech with

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

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