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 87.7k Reviews

Filter interviews by

TCS Junior Software Test Engineer Interview Questions and Answers

Updated 21 Jun 2024

TCS Junior Software Test Engineer Interview Experiences

2 interviews found

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

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Ask about test cases, scenarios in different types
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

One round of aptitude test

Round 2 - Coding Test 

2 simple coding questions based java

Round 3 - Technical 

(1 Question)

  • Q1. Technical rounds with interview panel Java based questions

Junior Software Test Engineer Interview Questions Asked at Other Companies

Q1. Write a code to define priority in Automation framework ?
Q2. What is Parallel testing? State the code
asked in NTT
Q3. what is regression testing and performance testing
asked in Transsion
Q4. Writing test cases What is stress testing
asked in NTT
Q5. what is the defect life cycle

Interview questions from similar companies

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

(2 Questions)

  • Q1. Find x path and script for screenshot
  • Ans. 

    To find x path and script for screenshot, use browser developer tools and Selenium WebDriver.

    • Use browser developer tools to inspect elements and find x path

    • Use Selenium WebDriver to capture screenshot

    • Example x path: //input[@id='username']

    • Example script for screenshot: driver.manage().window().maximize(); File screenshotFile = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE); FileUtils.copyFile(screenshotFile

  • Answered by AI
  • Q2. Write reverse string programme
  • Ans. 

    A program to reverse a given string

    • Create a character array to store the reversed string

    • Iterate through the original string from end to start and copy each character to the new array

    • Terminate the new array with a null character to indicate end of string

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - study well

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. What is Instance variable
  • Ans. 

    Instance variable is a variable declared in a class, but outside of any method. Each object of the class has its own copy of the instance variable.

    • Instance variables are declared at the class level, outside of any method.

    • Each object of the class has its own copy of the instance variable.

    • Instance variables are used to store the state of an object.

  • Answered by AI
  • Q2. What is collection
  • Ans. 

    A collection is a group of related objects or data items that are stored together.

    • Collections can be used to store and manipulate groups of objects or data items in programming.

    • Common types of collections include arrays, lists, sets, and maps.

    • Collections provide methods for adding, removing, and accessing elements within the group.

    • Example: An array of integers [1, 2, 3, 4] is a collection of numbers.

  • Answered by AI
  • Q3. List is interface or class
  • Ans. 

    List is an interface in Java that represents an ordered collection of elements.

    • List is an interface in Java.util package

    • It extends Collection interface and is implemented by classes like ArrayList, LinkedList, etc.

    • List allows duplicate elements and maintains insertion order

  • Answered by AI
  • Q4. Webdriver is interface or class

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear the basic opp concept and basic java program

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Walk-in and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Aptitude Test 

1st round is aptitude test all questions are related to domain knowledge & related to testing

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself.
Round 2 - Technical 

(1 Question)

  • Q1. Types of testing & sdlc
  • Ans. 

    Types of testing include functional, non-functional, manual, automated, and more. SDLC includes planning, design, development, testing, and deployment.

    • Functional testing ensures that the software meets the requirements and specifications.

    • Non-functional testing checks the performance, security, and usability of the software.

    • Manual testing is done by humans, while automated testing is done by software.

    • SDLC includes plann...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Types of API Testing
  • Ans. 

    API testing includes functional, performance, security, and integration testing.

    • Functional testing: testing the functionality of API endpoints

    • Performance testing: testing the speed and scalability of API

    • Security testing: testing the security of API against attacks

    • Integration testing: testing the integration of API with other systems

    • Examples: Postman, SoapUI, JMeter

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have immediately joiner person.

Skills evaluated in this interview

I applied via Company Website and was interviewed in Feb 2022. There were 4 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 - Assignment 

Company details

Round 4 - Coding Test 

C language

Interview Preparation Tips

Interview preparation tips for other job seekers - Tell about your self java introduced, about java
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

C++ ,Java , CAD , CNC programming, Data analytics

Round 2 - Technical 

(5 Questions)

  • Q1. What product management ur doing
  • Q2. Where did you undergo your technical traing
  • Q3. Where did u place most of your focus when reviewing somebody else code
  • Q4. What did you develop
  • Q5. What was the project before you are doing
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic apptitude qwuestions were asked

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on java and cybersecurity what is cybersecurity what is malware and ransomeware
  • Q2. What is java how is it different from python
  • Ans. 

    Java is a statically typed, object-oriented programming language, while Python is dynamically typed and focuses on simplicity and readability.

    • Java is statically typed, meaning variables must be declared with a specific data type, while Python is dynamically typed.

    • Java is more verbose and requires more code to accomplish tasks compared to Python.

    • Python emphasizes simplicity and readability, making it easier for beginner...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Introduction why ltimindtree
  • Ans. 

    I chose Mindtree because of its reputation for innovation, collaborative work culture, and opportunities for growth.

    • Reputation for innovation: Mindtree is known for its cutting-edge technology solutions and innovative projects.

    • Collaborative work culture: Mindtree fosters a team-oriented environment where employees can learn and grow together.

    • Opportunities for growth: Mindtree offers various training programs and career...

  • Answered by AI
  • Q2. Relocation situastion based questions

Interview Preparation Tips

Topics to prepare for LTIMindtree Junior Software Developer interview:
  • Java
  • cybersecurity
  • HTML
Interview preparation tips for other job seekers - prepare well on topics mentioned inyour resume

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Aptitude test includes number series, profit and loss, percentage, train problems

Round 2 - Technical 

(2 Questions)

  • Q1. About SQL queries and database
  • Q2. About object oriented programming, pointers, arrays, linked list

TCS Interview FAQs

How many rounds are there in TCS Junior Software Test Engineer interview?
TCS interview process usually has 2 rounds. The most common rounds in the TCS interview process are Technical, Aptitude Test and Coding Test.
What are the top questions asked in TCS Junior Software Test Engineer interview?

Some of the top questions asked at the TCS Junior Software Test Engineer interview -

  1. Technical rounds with interview panel Java based questi...read more
  2. Ask about test cases, scenarios in different ty...read more

Tell us how to improve this page.

TCS Junior Software Test Engineer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more
TCS Junior Software Test Engineer Salary
based on 14 salaries
₹3.5 L/yr - ₹6 L/yr
40% more than the average Junior Software Test Engineer Salary in India
View more details
System Engineer
1.1L salaries
unlock blur

₹1 L/yr - ₹9 L/yr

IT Analyst
67.2k salaries
unlock blur

₹5.1 L/yr - ₹16 L/yr

AST Consultant
51.3k salaries
unlock blur

₹8 L/yr - ₹25 L/yr

Assistant System Engineer
29.8k salaries
unlock blur

₹2.2 L/yr - ₹7 L/yr

Associate Consultant
29k 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.6
Compare

Accenture

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