Upload Button Icon Add office photos
Engaged Employer

i

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

TCS Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

TCS Project Engineer Interview Questions and Answers

Updated 15 Nov 2024

TCS Project Engineer Interview Experiences

6 interviews found

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

I applied via Company Website and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Conversation skills and knowledge about project

Round 2 - Assignment 

My knowledge about project work

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

I applied via Naukri.com and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. For 6 years java experienced. Basic oops concepts with examples, exception handling, collections concepts

Project Engineer Interview Questions Asked at Other Companies

asked in Wipro
Q1. Triangle Star Pattern Task Your task is to print a triangle patte ... read more
asked in Wipro
Q2. Encode The String Problem Statement Given a string S of length N, ... read more
asked in Wipro
Q3. Count Number of Subsequences Problem Statement Given an array of ... read more
asked in Wipro
Q4. Mindbending Product Problem Statement You are given an array ARR ... read more
asked in Wipro
Q5. Difference between compiler and interpreter. Why do you apply to ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Java 8 coding questions
  • Q2. Spring boot questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good in technical areas
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(2 Questions)

  • Q1. Hobbies and strength
  • Q2. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience overall had great work with dxc
Had enjoyed working

TCS interview questions for designations

 Project Manager

 (25)

 Project Trainee

 (1)

 Project Analyst

 (1)

 Project Intern

 (1)

 Project Assistant

 (1)

 Senior Project Associate

 (1)

 Project Management Officer

 (1)

 Infrastructure Project Manager

 (1)

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

Interview Questionnaire 

4 Questions

  • Q1. Any industry trends you can share ur opinion
  • Ans. 

    The trend towards sustainable and green engineering practices.

    • Increasing focus on renewable energy sources such as solar and wind power.

    • Implementation of energy-efficient technologies and practices in construction and manufacturing processes.

    • Growing demand for environmentally friendly materials and designs.

    • Integration of smart and connected systems for improved energy management and resource optimization.

    • Emphasis on wa...

  • Answered by AI
  • Q2. What are your strengths
  • Ans. Ability to work with a team, Analytical skills, problem solving
  • Answered Anonymously
  • Q3. What challenge did you faced in your last job
  • Q4. I utilise my skills & experience effectively in my last job

Interview Preparation Tips

Interview preparation tips for other job seekers - Thankyou For the interview questioning

Interview Questionnaire 

1 Question

  • Q1. Tell me about last year project details

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. Even if you don't know answer of few questions politely say I a knot able to recall now..overall it was good experience

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

It had a 2 programs with easy and medium level of coding programs, please go through the recent interview problems asked in wipro

Round 2 - Technical 

(5 Questions)

  • Q1. What is Object oriented programming
  • Ans. 

    Object oriented programming is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOP focuses on creating objects that interact with each other to solve problems

    • Encapsulation, inheritance, and polymorphism are key principles of OOP

    • Examples of OOP languages include Java, C++, and Python

  • Answered by AI
  • Q2. What is multi threading
  • Ans. 

    Multi threading is a programming concept where multiple threads within a process execute independently to improve performance.

    • Allows for concurrent execution of tasks within a single process

    • Improves performance by utilizing multiple CPU cores

    • Requires careful synchronization to avoid race conditions

    • Examples include web servers handling multiple requests simultaneously

  • Answered by AI
  • Q3. Why is java not 100% oop
  • Ans. 

    Java is not 100% OOP because it supports primitive data types and static methods.

    • Java has primitive data types like int, double, etc. which are not objects.

    • Java allows static methods which do not require an instance of a class to be called.

    • Java also has the concept of wrapper classes to convert primitive data types to objects.

  • Answered by AI
  • Q4. What are collections in java
  • Ans. 

    Collections in Java are classes and interfaces that provide a way to store and manipulate groups of objects.

    • Collections provide dynamic data structures like List, Set, and Map.

    • They offer methods to add, remove, and manipulate elements in the collection.

    • Examples include ArrayList, LinkedList, HashSet, and HashMap.

  • Answered by AI
  • Q5. Internal working of hash map
  • Ans. 

    A hash map is a data structure that stores key-value pairs and uses a hash function to map keys to their corresponding values.

    • Hash map uses a hash function to determine the index of the key-value pair in the underlying array.

    • Collision resolution techniques like chaining or open addressing are used to handle situations where multiple keys hash to the same index.

    • Hash maps typically have O(1) average time complexity for i...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Explain OOPs concept in JAVA
  • Ans. 

    OOPs concept in JAVA refers to Object-Oriented Programming principles like encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (object).

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

    • Polymorphism: Ability of a method to do different things based on the object it is acting upon.

    • Abstraction: Hidin...

  • Answered by AI
  • Q2. Explain Memory management in JAVA
  • Ans. 

    Memory management in JAVA involves allocation, usage, and deallocation of memory for objects and variables.

    • Java uses automatic memory management through garbage collection

    • Memory is allocated on the heap for objects and on the stack for local variables

    • Java Virtual Machine (JVM) manages memory allocation and deallocation

    • Memory leaks can occur if objects are not properly dereferenced

  • Answered by AI
  • Q3. Explain Reflection in JAVA
  • Ans. 

    Reflection in Java allows programs to inspect or modify their own structure at runtime.

    • Reflection allows access to class information, fields, methods, and constructors at runtime.

    • It is commonly used in frameworks like Spring and Hibernate for dependency injection and ORM.

    • Example: Using reflection to dynamically load classes or invoke methods based on user input.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Java Basics in depth

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Self intro about our previous work
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response
Round 1 - Technical 

(1 Question)

  • Q1. What is the purpose of the test.startTest() and test.stopTest() methods in programming?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare thoroughly before attending an interview.

TCS Interview FAQs

How many rounds are there in TCS Project Engineer interview?
TCS interview process usually has 1-2 rounds. The most common rounds in the TCS interview process are Technical, Resume Shortlist and Aptitude Test.
How to prepare for TCS Project Engineer 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 TCS. The most common topics and skills that interviewers at TCS expect are API, AutoCAD, Fmea and HAZOP.
What are the top questions asked in TCS Project Engineer interview?

Some of the top questions asked at the TCS Project Engineer interview -

  1. Any industry trends you can share ur opini...read more
  2. For 6 years java experienced. Basic oops concepts with examples, exception hand...read more
  3. Java 8 coding questi...read more

Tell us how to improve this page.

TCS Project Engineer Interview Process

based on 5 interviews

1 Interview rounds

  • Technical Round
View more
TCS Project Engineer Salary
based on 161 salaries
₹1.9 L/yr - ₹9 L/yr
5% more than the average Project Engineer Salary in India
View more details

TCS Project Engineer Reviews and Ratings

based on 19 reviews

4.2/5

Rating in categories

3.8

Skill development

4.0

Work-life balance

3.5

Salary

4.3

Job security

3.8

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 19 Reviews and Ratings
System Engineer
1.1L salaries
unlock blur

₹1 L/yr - ₹9 L/yr

IT Analyst
66.9k salaries
unlock blur

₹5.1 L/yr - ₹16 L/yr

AST Consultant
51.4k salaries
unlock blur

₹8 L/yr - ₹25 L/yr

Assistant System Engineer
29.8k salaries
unlock blur

₹2.2 L/yr - ₹5.7 L/yr

Associate Consultant
29.3k salaries
unlock blur

₹9 L/yr - ₹32 L/yr

Explore more salaries
Compare TCS with

Amazon

4.1
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

Accenture

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