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

Clear (1)

ITC Infotech Associate Technical Consultant Interview Questions and Answers

Updated 25 Jul 2024

ITC Infotech Associate Technical Consultant Interview Experiences

4 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Common aptitude questions and coding rounds

Round 2 - Technical 

(2 Questions)

  • Q1. General and depth DBMS, OS, OOPs knowledge
  • Q2. From resume, projects, internships and skills
Round 3 - HR 

(2 Questions)

  • Q1. How would u see yourself in 5 yrs?
  • Q2. Few management questions and strengths and weakness and other related HR rounds questions.

Interview Preparation Tips

Topics to prepare for ITC Infotech Associate Technical Consultant interview:
  • DBMS
  • OS
  • OOPS
  • Software Engineering
  • projects related topics
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

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 Resume tips
Round 2 - Aptitude Test 

Round 1 : (Aptitude + Coding)

This round was conducted on the Amcat platform. There were 4 sections
1. Quantitative Aptitude (MCQ Type)
2. English (MCQ Type)
3. 2 coding questions
4. Data Interpretation (MCQ Type)

Results were declared the next day. Top 20 scorers of the aptitude were directly called for the Technical Interview and I was one of them. Others who cleared the cutoff had to face a GD round to make it to the technical interview. And mind it, GD was an elimination round.

Round 3 - Technical 

(1 Question)

  • Q1. Round 2: (Technical Interview) Tell me something about yourself. Which post are you willing to be interviewed for? (As I was a bit interested in the data part, so I chose the post of Data Analyst.) What d...

Associate Technical Consultant Interview Questions Asked at Other Companies

asked in Streebo
Q1. Which one is better to store data, Excel or Relation Database Sys ... read more
asked in Mastek
Q2. which is Faster subquery or Join? Or subquery or function? Why vi ... read more
asked in TecTree
Q3. Program to Separate Vowels and Consonants from a String
Q4. How we can give permission to multiple users to delete user , use ... read more
asked in TecTree
Q5. Print a Hollow pyramid Using JAVA language
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Campus Placement and was interviewed before Jul 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude questions

Round 2 - Coding Test 

Medium level coding questions

Round 3 - Technical 

(2 Questions)

  • Q1. Basic questions on dbms, os, oops, dsa
  • Q2. Tell me about yourself, project details and skills mentioned
Round 4 - HR 

(2 Questions)

  • Q1. Where do u see yourself in 5 years
  • Ans. 

    In 5 years, I see myself as a senior technical consultant leading projects and mentoring junior team members.

    • Advancing to a senior technical consultant role

    • Leading projects and teams

    • Mentoring junior team members

    • Continuing professional development and certifications

  • Answered by AI
  • Q2. Why should we hire u?
  • Ans. 

    I have a strong technical background, excellent problem-solving skills, and a passion for learning and growing in the field.

    • Extensive experience in technical consulting and problem-solving

    • Strong knowledge of relevant technologies and tools

    • Proven track record of successfully implementing solutions for clients

    • Passionate about continuous learning and professional development

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

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

Round 1 - Aptitude Test 

Quick MCQ based test

Round 2 - Technical 

(1 Question)

  • Q1. Technical round with easy questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and be quick on your feet.

ITC Infotech interview questions for designations

 Associate Consultant

 (17)

 Senior Associate Consultant

 (1)

 Associate Information Technology Consultant

 (43)

 Technical Lead

 (5)

 Technical Architect

 (3)

 Lead Consultant

 (33)

 Principal Consultant

 (1)

 PLM Consultant

 (1)

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: Apti was quite easy . In Basic CS concepts software engineering is prominent.
Tips: Brush up Software Engineering before written test
Duration: 90 minutes
Total Questions: 50

College Name: NIT BHOPAL

I was interviewed before Aug 2016.

Interview Preparation Tips

Round: General and technical aptitude
Experience: There were questions on basics of programming and general questions on verbal,reasoning and quantitative.
Tips: Time will be short to answer all so keep watch on time

Round: Group Discussion
Experience: They segregated us in to batches and in our team there were 10 members.
Tips: Easy round
Duration: 15 minutes

Round: Telephonic
Experience: They tested my communication skill in that round

College Name: Dhanalakshmi college of engineering

I was interviewed in Apr 2017.

Interview Questionnaire 

2 Questions

  • Q1. Java questions...
  • Q2. Tell me about urself and about us family and all
  • Ans. 

    I am a software developer with a passion for coding and problem-solving. My family is supportive and has always encouraged my career in tech.

    • Experienced software developer

    • Passionate about coding and problem-solving

    • Supportive family that encourages my career in tech

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Easy questions are there
Duration: 1 hour
Total Questions: 90

Round: Group Discussion
Experience: 12 members are there only 9 got selected
Tips: Be confident in urself and specially work in Communication skills
Duration: 15 minutes

Round: Technical Interview
Experience: Asking all the concepts of Java like oops collections threads
Tips: Prepare well on Java

Round: HR Interview
Experience: Everything was Gud but due to my certificate problem I got rejected.. Otherwise everything is good.
Tips: Be confident

College Name: C. V. Raman College of Engineering

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was an easy round which went really smooth.

  • Q1. 

    Nth Fibonacci Number Problem Statement

    Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1.

    Input:

    ...
  • Ans. 

    Calculate the Nth Fibonacci number efficiently using dynamic programming.

    • Use dynamic programming to store previously calculated Fibonacci numbers to avoid redundant calculations.

    • Start with base cases F(1) and F(2) as 1, then iteratively calculate F(n) using F(n-1) and F(n-2).

    • Ensure the input N is within the constraints 1 <= N <= 10000.

    • Example: For N = 5, the 5th Fibonacci number is 5 (1, 1, 2, 3, 5).

  • Answered by AI
  • Q2. 

    Prime Numbers Problem Statement

    Given a positive integer N, your task is to determine and return all prime numbers less than or equal to N.

    Input:

    N = 10

    Output:

    2 3 5 7

    Example:

    Input:
    N = 20
    Out...
  • Ans. 

    Implement a function to return all prime numbers less than or equal to a given positive integer N.

    • Create a function that takes a positive integer N as input

    • Iterate from 2 to N and check if each number is prime

    • Use a helper function to determine if a number is prime

    • Return an array of all prime numbers less than or equal to N

  • Answered by AI
  • Q3. What is a merge join in SQL?
  • Ans. 

    A merge join in SQL is a method of combining two sorted datasets by matching corresponding rows based on a specified condition.

    • Merge join is used when joining two large datasets that are already sorted.

    • It is more efficient than other join methods like nested loop join or hash join for sorted datasets.

    • The join condition must be an equality condition.

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

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

The round went excellent. I really enjoyed it. Just be confident about whatever you answer

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPALarsen & Toubro Infotech (LTI) interview preparation:Topics to prepare for the interview - Database, Basic C/C++, Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 3 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

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This round went well. Interview depends on your basic knowledge of C/C++.

  • Q1. 

    Matrix Multiplication Task

    Given two sparse matrices MAT1 and MAT2 of integers with dimensions 'N' x 'M' and 'M' x 'P' respectively, the goal is to determine the resulting matrix produced by their multipl...

  • Ans. 

    Implement a function to multiply two sparse matrices and return the resulting matrix.

    • Create a function that takes two sparse matrices as input and returns the resulting matrix after multiplication

    • Iterate through the non-zero elements of the matrices to perform the multiplication efficiently

    • Handle the edge cases such as empty matrices or matrices with all zero elements

    • Ensure the dimensions of the matrices are compatible

  • Answered by AI
  • Q2. 

    Problem: Count Even or Odd in Array

    Tanmay and Rohit are best buddies. Tanmay gives Rohit a challenge involving an array of N natural numbers. The task is to perform and answer a series of queries on the ...

  • Ans. 

    Count the number of even or odd numbers in a range of an array based on given queries.

    • Create an array to store the input numbers.

    • Iterate through the queries and update or count even/odd numbers based on the query type.

    • Output the count of even or odd numbers for each query of type 1 or 2.

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical HR round with behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPALarsen & Toubro Infotech (LTI) interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 3 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

Software Developer Interview Questions & Answers

Capgemini user image Dwarkesh Maheshwari

posted on 23 Sep 2017

I was interviewed in Sep 2017.

Interview Questionnaire 

1 Question

  • Q1. Basic c questions and sorting Then about projects

Interview Preparation Tips

Round: Test
Experience: Basic apti questions
But reasoning was tricky
Tips: Don't waste time
Duration: 1 hour
Total Questions: 32

Round: Technical test
Experience: Basic c question
SQL questions
Tips: Must have deep knowledge in c

Round: Technical Interview
Experience: Briefly explain my project and then successfully answerd questions asked
Tips: Complete knowledge of your project

College Name: KIET
Contribute & help others!
anonymous
You can choose to be anonymous

ITC Infotech Interview FAQs

How many rounds are there in ITC Infotech Associate Technical Consultant interview?
ITC Infotech interview process usually has 3 rounds. The most common rounds in the ITC Infotech interview process are Aptitude Test, Technical and HR.
What are the top questions asked in ITC Infotech Associate Technical Consultant interview?

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

  1. general and depth DBMS, OS, OOPs knowle...read more
  2. basic questions on dbms, os, oops, ...read more
  3. Technical round with easy questi...read more

Recently Viewed

INTERVIEWS

General Motors

No Interviews

INTERVIEWS

Indian Space Research Organisation

No Interviews

INTERVIEWS

Genstru Consultants

No Interviews

INTERVIEWS

Standard Chartered

No Interviews

INTERVIEWS

Coal India

No Interviews

INTERVIEWS

Strand Life Sciences

No Interviews

INTERVIEWS

Alstom Transportation

No Interviews

INTERVIEWS

V. M. Salgaocar & Bro.

No Interviews

INTERVIEWS

Info Edge

No Interviews

INTERVIEWS

o9 Solutions

No Interviews

Tell us how to improve this page.

ITC Infotech Associate Technical Consultant Interview Process

based on 5 interviews

1 Interview rounds

  • Aptitude Test Round
View more
ITC Infotech Associate Technical Consultant Salary
based on 250 salaries
₹4.7 L/yr - ₹20 L/yr
21% more than the average Associate Technical Consultant Salary in India
View more details

ITC Infotech Associate Technical Consultant Reviews and Ratings

based on 28 reviews

3.6/5

Rating in categories

3.2

Skill development

3.7

Work-life balance

3.2

Salary

3.1

Job security

3.6

Company culture

2.7

Promotions

2.7

Work satisfaction

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

₹0 L/yr - ₹0 L/yr

Lead Consultant
4.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Consultant
830 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
503 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
373 salaries
unlock blur

₹0 L/yr - ₹0 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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent