Upload Button Icon Add office photos

Filter interviews by

TCS iON Software Development Engineer Interview Questions and Answers

Updated 20 Dec 2024

TCS iON Software Development Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

(2 Questions)

  • Q1. Jump game from leetcode
  • Q2. Rotation of matrix by 45 degress
  • Ans. 

    To rotate a matrix by 45 degrees, transpose the matrix and then reverse the rows.

    • Transpose the matrix

    • Reverse the rows of the transposed matrix

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What is encapsulation in oops?
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data into a single unit.

    • Encapsulation helps in hiding the internal state of an object and restricting access to it.

    • It allows for data hiding, which prevents direct access to an object's attributes.

    • Encapsulation also enables the concept of data abstraction, where only relevant details are exposed to the outside world.

    • By using access modifiers ...

  • Answered by AI
  • Q2. How do you configure MySQL database ?
  • Ans. 

    MySQL database can be configured using configuration files like my.cnf, command line options, and environment variables.

    • Use my.cnf file to configure settings like port number, data directory, and buffer sizes

    • Command line options can be used to override settings from my.cnf file

    • Environment variables like MYSQL_ROOT_PASSWORD can be used to set passwords during installation

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice with LeetCode and ensure that everything is reflected on your resume.

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Find duplicates
  • Ans. 

    Find duplicates in an array of strings

    • Iterate through the array and store each element in a hash set

    • If an element is already in the hash set, it is a duplicate

    • Return a list of all duplicates found

  • Answered by AI
  • Q2. And programming related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Depends on hr

Skills evaluated in this interview

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 

Reasoning coding technical questions etc

Round 3 - HR 

(2 Questions)

  • Q1. Project discussion introduction self introduction etc
  • Q2. Project information and etc how you know about programming language

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing nothing nothing nothing nothing nothing nothing
Round 1 - Technical 

(1 Question)

  • Q1. Java technical questions
Round 2 - Technical 

(1 Question)

  • Q1. Project related questions
Round 3 - HR 

(1 Question)

  • Q1. Strengths, Weakness, formalities, describe yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good with technical concepts & keep it simple in HR round.

I applied via Referral and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Traverse an array linear Search,Implement linkedlist,OOP questiona like inheritance in java

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Package,Good work life balance,Excellent work culture(Best Place to Work really)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Jan 2025.

Round 1 - Aptitude Test 

The maximum score required to achieve is 50% out of 100.

Round 2 - Technical 

(2 Questions)

  • Q1. Can you describe your previous project?
  • Q2. Describe Mobile Testing and API Testing.

Interview Preparation Tips

Interview preparation tips for other job seekers - My technician interview is progressing very well, as expected, and they will ask me multiple scenario-based questions on SQL databases, as well as on manual testing; however, they will not consider me for the HR round.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Normal logical, verbal, and quantitative ability questions.

Round 2 - Psychometric Test 

(1 Question)

  • Q1. Behavioural questions like how do you manage your team what do you do in thia or that situation
Round 3 - Technical 

(2 Questions)

  • Q1. Computer Fundamentals like OOPS,DBMS and SQL
  • Q2. Questions Based on yourresume

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Patient and work o you CS fundamentals
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Data structure was more and it was difficult round

Round 2 - Technical 

(1 Question)

  • Q1. It will depend on interviewer
Round 3 - Behavioral 

(1 Question)

  • Q1. It will be depending on Manager who is taking interview
Round 4 - HR 

(1 Question)

  • Q1. It will be very smooth

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a very good company overall I had very good learning and experience
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - Coding Test 

Test will be in hacker rank there would be a difficulty level between easy to medium

Round 2 - Technical 

(1 Question)

  • Q1. Question will be from data structure and easy to medium level of the programming laanguage question
Round 3 - HR 

(1 Question)

  • Q1. This is just to check your english ability
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

One coding test happen

Round 2 - Technical 

(2 Questions)

  • Q1. Java questions, spring boot framework questions
  • Q2. DSA using stream api
  • Ans. 

    Using stream API for Data Structures and Algorithms

    • Stream API in Java can be used to perform operations on collections like filtering, mapping, reducing, etc.

    • It can be used for implementing various data structures and algorithms efficiently.

    • For example, you can use stream API to find the sum of all elements in an array or filter out even numbers from a list.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Java questions and spring boot questions
  • Q2. One program using stream api
  • Ans. 

    Using stream API to filter a list of numbers and find the sum of even numbers

    • Use Stream.filter() to filter out even numbers

    • Use Stream.mapToInt() to convert stream to IntStream

    • Use IntStream.sum() to find the sum of even numbers

  • Answered by AI

Skills evaluated in this interview

TCS iON Interview FAQs

How many rounds are there in TCS iON Software Development Engineer interview?
TCS iON interview process usually has 2 rounds. The most common rounds in the TCS iON interview process are Coding Test and HR.
What are the top questions asked in TCS iON Software Development Engineer interview?

Some of the top questions asked at the TCS iON Software Development Engineer interview -

  1. How do you configure MySQL databas...read more
  2. What is encapsulation in oo...read more
  3. Rotation of matrix by 45 degr...read more

Tell us how to improve this page.

TCS iON Software Development Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

TCS iON Software Development Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

2.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Operations Executive
249 salaries
unlock blur

₹1.2 L/yr - ₹4.5 L/yr

Software Developer
151 salaries
unlock blur

₹2.8 L/yr - ₹12 L/yr

System Engineer
126 salaries
unlock blur

₹2 L/yr - ₹9.2 L/yr

Software Engineer
118 salaries
unlock blur

₹1 L/yr - ₹9 L/yr

IT Manager
57 salaries
unlock blur

₹1.2 L/yr - ₹4.2 L/yr

Explore more salaries
Compare TCS iON with

Wipro

3.7
Compare

Amazon

4.1
Compare

TCS

3.7
Compare

Infosys

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