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
3.7

based on 84.9k Reviews

Filter interviews by

TCS Junior Engineer Interview Questions, Process, and Tips for Experienced

Updated 6 Nov 2024

Top TCS Junior Engineer Interview Questions and Answers for Experienced

View all 6 questions

TCS Junior Engineer Interview Experiences for Experienced

5 interviews found

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

As a fresher I applied, it basic aptitude

Round 2 - Group Discussion 

GD between group of 10

Round 3 - HR 

(4 Questions)

  • Q1. Tell me about yourself ?
  • Q2. Tell me your strengths and weakness?
  • Ans. 

    My strengths include problem-solving skills, attention to detail, and ability to work well in a team. My weakness is that I can be overly critical of my own work.

    • Strengths: problem-solving skills

    • Strengths: attention to detail

    • Strengths: ability to work well in a team

    • Weakness: overly critical of my own work

  • Answered by AI
  • Q3. Projects you had worked on?
  • Ans. 

    I have worked on projects involving building automation systems and IoT devices.

    • Developed a smart home system using Raspberry Pi and sensors

    • Implemented a temperature control system for a greenhouse using Arduino

    • Designed a monitoring system for energy consumption in buildings

  • Answered by AI
  • Q4. Languages you know as per of your skillset?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. In depth questions on core and advanced java
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Sep 2023. 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 - Aptitude Test 

Coding questions related java and some questions related java, spring boot

Round 3 - Technical 

(2 Questions)

  • Q1. What is hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

    • HashMap is part of the Java Collections framework.

    • It uses hashing to store key-value pairs in an array.

    • Example: HashMap map = new HashMap<>(); map.put("key1", 1); int value = map.get("key1");

  • Answered by AI
  • Q2. Multi threading,

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Oct 2022. There were 4 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 - Group Discussion 

Different topics are allotted by hr and we need to choose one of them and give all perspective

Round 3 - Technical 

(7 Questions)

  • Q1. Basic knowledge of your field Some question or problems are given by hr and senior staff and you need to provide your way of thinking then background discussion and your future goals ara analyzed
  • Q2. What is your goal in your career life
  • Q3. What tye of skills you have and how many types of job or other experience you got from previous placement and jobs if you done any
  • Ans. What is your expectations from this placement drive
  • Answered Anonymously
  • Q4. What is your family background Where do you live What is sources of income to your family
  • Q5. Are you comfortable in doing job on field or your interested in office work
  • Q6. Are you able to join the job if you have given different locations and extra time work needed sometimes
  • Q7. Are you able to join emediately
Round 4 - HR 

(4 Questions)

  • Q1. Technical question with various problems asked which are related to your field
  • Q2. Step with proper description asked of solution which your giving of any problem
  • Q3. Technical knowledge testing is done by asking technical question and machinery gadgets. Field knowledge checked by asking site situation to and we need to give uts Solution
  • Q4. Percentage in technical subjects arw checeked
  • Ans. 

    Yes, percentage in technical subjects is checked for Junior Engineer position.

    • Technical subjects are a crucial part of the Junior Engineer role.

    • The percentage in technical subjects is checked to assess the candidate's knowledge and understanding of the subject.

    • The weightage given to technical subjects may vary depending on the company and job profile.

    • Candidates should focus on scoring well in technical subjects to incr...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Well preparation of technical knowledge is must if you want to crack hr round which is very though to crack.
Tricky question are always asked by senior on 2nd round which can creat messing in giving answers

TCS interview questions for designations

 Junior Engineer Electrical

 (2)

 Junior Quality Engineer

 (1)

 Junior Software Engineer

 (11)

 Junior System Engineer

 (2)

 Junior Software Test Engineer

 (2)

 Junior Developer

 (4)

 Junior Executive

 (3)

 Junior Analyst

 (3)

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 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. What is constructor?
  • Ans. 

    A constructor is a special type of method in a class that is automatically called when an object of that class is created.

    • Constructors have the same name as the class they belong to

    • Constructors do not have a return type

    • Constructors can be used to initialize the object's state or perform any necessary setup

    • Example: public class Car { public Car() { // constructor code here } }

  • Answered by AI
  • Q2. What is spring boot ?
  • Ans. 

    Spring Boot is a Java-based framework used to create stand-alone, production-grade Spring-based Applications.

    • Spring Boot simplifies the process of developing and deploying Spring applications.

    • It provides a set of pre-configured tools and conventions to get started quickly.

    • Spring Boot eliminates the need for manual configuration and boilerplate code.

    • It includes embedded servers like Tomcat, Jetty, or Undertow for easy d...

  • Answered by AI
  • Q3. What is diff between array and arraylist
  • Ans. 

    Array is a fixed-size data structure while ArrayList is a dynamic-size data structure in Java.

    • Array is a fixed-size collection of elements of the same data type, while ArrayList is a dynamic-size collection that can grow or shrink as needed.

    • Arrays can store primitive data types and objects, while ArrayList can only store objects.

    • Arrays require a specified size at the time of creation, while ArrayList can dynamically re...

  • Answered by AI
  • Q4. Diff between throw and throws
  • Ans. 

    throw is a keyword used to explicitly throw an exception in Java, while throws is used in method signature to declare the exceptions that can be thrown by the method.

    • throw is used to throw an exception explicitly in Java code

    • throws is used in method signature to declare the exceptions that can be thrown by the method

    • Example: throw new Exception();

    • Example: public void method() throws Exception {};

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary expectations

Skills evaluated in this interview

Get interview-ready with Top TCS Interview Questions

Interview questions from similar companies

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

(1 Question)

  • Q1. Minimum 4 words
Round 2 - Technical 

(1 Question)

  • Q1. Minimum 4 words
Round 3 - Technical 

(1 Question)

  • Q1. Minimum 4 words
Round 4 - Technical 

(1 Question)

  • Q1. Minimum 4 words
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How the induction motor is started?
  • Ans. 

    Induction motor is started by providing a rotating magnetic field in the stator winding.

    • Start by connecting the stator winding to a three-phase AC power supply.

    • The rotating magnetic field is produced in the stator winding, which induces current in the rotor bars.

    • The induced current in the rotor bars creates a magnetic field, causing the rotor to start rotating.

    • Common methods of starting induction motors include direct-...

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

I applied via Campus Placement and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude and problem solving, email writing

Round 2 - One-on-one 

(1 Question)

  • Q1. Data structure, C programming, Networking

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in basics.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - HR 

(1 Question)

  • Q1. Tell em about self
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jul 2022. 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 - Technical 

(1 Question)

  • Q1. Hydraulics, Rotating equipments
Round 3 - Technical 

(1 Question)

  • Q1. Theoretical & Practical Knowledge about Mechanical rotating Equipments

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard, don't think your are a fool. time will change one day.

TCS Interview FAQs

How many rounds are there in TCS Junior Engineer interview for experienced candidates?
TCS interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the TCS interview process for experienced candidates are Technical, Resume Shortlist and HR.
What are the top questions asked in TCS Junior Engineer interview for experienced candidates?

Some of the top questions asked at the TCS Junior Engineer interview for experienced candidates -

  1. Percentage in technical subjects arw chece...read more
  2. what is diff between array and arrayl...read more
  3. what is spring boo...read more

Tell us how to improve this page.

People are getting interviews through

based on 3 TCS interviews
Company Website
WalkIn
Job Portal
33%
33%
33%
1% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
TCS Junior Engineer Salary
based on 100 salaries
₹1.9 L/yr - ₹8.5 L/yr
42% more than the average Junior Engineer Salary in India
View more details

TCS Junior Engineer Reviews and Ratings

based on 27 reviews

4.3/5

Rating in categories

4.1

Skill development

4.3

Work-Life balance

4.1

Salary & Benefits

4.5

Job Security

4.3

Company culture

3.9

Promotions/Appraisal

4.2

Work Satisfaction

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

₹1 L/yr - ₹9 L/yr

IT Analyst
68.2k salaries
unlock blur

₹5.1 L/yr - ₹16 L/yr

AST Consultant
51k salaries
unlock blur

₹8 L/yr - ₹25 L/yr

Assistant System Engineer
29.9k salaries
unlock blur

₹2.2 L/yr - ₹5.6 L/yr

Associate Consultant
28.6k salaries
unlock blur

₹8.9 L/yr - ₹32 L/yr

Explore more salaries
Compare TCS with

Amazon

4.1
Compare

Wipro

3.7
Compare

Infosys

3.7
Compare

Accenture

3.9
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