Upload Button Icon Add office photos

T-Systems ICT India

Compare button icon Compare button icon Compare

Filter interviews by

T-Systems ICT India Software Developer Interview Questions and Answers

Updated 21 Oct 2024

T-Systems ICT India Software Developer Interview Experiences

1 interview found

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

(1 Question)

  • Q1. What is Concrete class ?

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic questions on dotnet core
  • Q2. Basic questions on angular
Round 2 - Coding Test 

MCQ asked for css,js etx

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

DSA questions and programming concepts

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse string and optimize it
  • Ans. 

    Reverse array of strings efficiently

    • Use two pointers approach to swap characters from start and end of each string

    • Optimize by using in-place reversal instead of creating new strings

    • Consider edge cases like empty strings or strings with only one character

  • Answered by AI
  • Q2. Reverse binary tree
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Joining location
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Anna University and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. It consists of MCQ question related to oops,SQL
Round 2 - Group Discussion 

General topics were given

Round 3 - HR 

(1 Question)

  • Q1. The HR was friendly and I was asked to write code for sorting , then about my project

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with basic questions related to oops, SQL
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Sep 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. Asp.net, C#, Coding questions
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - NA

I applied via Campus Placement and was interviewed in Aug 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Programming,verbal vebility,logical learning

Interview Preparation Tips

Interview preparation tips for other job seekers - i feel very good in both rounds.but secound round i exams is difficults copare to first round.

Interview Questionnaire 

3 Questions

  • Q1. Tr1- difference between switch case and if else, write the code for sorting
  • Ans. 

    Switch case is used for multiple conditions while if else is for binary conditions. Sorting can be done using various algorithms.

    • Switch case is faster than if else for multiple conditions

    • If else is more readable for binary conditions

    • Sorting can be done using bubble sort, insertion sort, quick sort, etc.

    • Example code for bubble sort: for(i=0;iarr[j+1]){swap(&arr[j],&arr[j+1]);}}}

  • Answered by AI
  • Q2. Tr2-difference between compiler and interpreter, Solve a challange on their own coding platform with proper output
  • Ans. 

    Difference between compiler and interpreter with a coding challenge

    • Compiler translates the entire code into machine language before execution while interpreter translates line by line during execution

    • Compiler generates an executable file while interpreter does not

    • Compiler is faster but debugging is harder while interpreter is slower but debugging is easier

    • Coding challenge: Write a program to find the sum of two numbers

  • Answered by AI
  • Q3. Oops concept

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

Interview Questionnaire 

4 Questions

  • Q1. What is object ?
  • Ans. 

    An object is an instance of a class that encapsulates data and behavior.

    • Objects have attributes (data) and methods (behavior).

    • Objects can interact with each other through method calls.

    • Objects can be created from classes.

    • Examples of objects include a car, a person, or a bank account.

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

    Multi threading is the ability of a program to perform multiple tasks concurrently.

    • It allows for better utilization of CPU resources

    • It can improve program performance and responsiveness

    • Examples include web servers handling multiple requests simultaneously

    • It requires careful management of shared resources to avoid race conditions

  • Answered by AI
  • Q3. Can we create multiple objects
  • Ans. 

    Yes, we can create multiple objects in programming.

    • Objects are instances of a class.

    • We can create multiple objects of the same class.

    • Each object has its own set of instance variables and methods.

    • Objects can interact with each other through their methods.

    • Example: creating multiple instances of a 'Person' class for different people.

  • Answered by AI
  • Q4. What are types of encapsulation
  • Ans. 

    Encapsulation types are data, procedural and combination.

    • Data encapsulation hides data from outside world and provides access through methods.

    • Procedural encapsulation hides implementation details of a procedure.

    • Combination encapsulation is a mix of data and procedural encapsulation.

    • Examples include private variables in a class, access modifiers in Java, etc.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - First of all the company is doing great job in this pandemic situation ..it hires a lot of people ...the interview is cool and soft ....the HR's are very good ...I like their nature ...thank you so much for giving this opportunity to share my advice .

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

13 Questions

  • Q1. What technologies you are familiar with?
  • Ans. 

    I am familiar with a wide range of technologies used in software development.

    • Java

    • Python

    • C++

    • JavaScript

    • HTML/CSS

    • SQL

    • Git

    • Linux

    • RESTful APIs

    • Agile methodologies

  • Answered by AI
  • Q2. What are the OOPs concept in Java?
  • Ans. 

    OOPs concepts in Java include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods together in a class.

    • Inheritance: Creating new classes from existing ones, inheriting their properties and behaviors.

    • Polymorphism: Objects of different classes can be treated as objects of a common superclass.

    • Abstraction: Hiding complex implementation details and providing a simplified interfa

  • Answered by AI
  • Q3. What are the ways to achieve abstraction?
  • Ans. 

    Abstraction can be achieved through interfaces, abstract classes, and encapsulation.

    • Using interfaces to define a set of methods that a class must implement

    • Using abstract classes to provide a base implementation that can be extended by subclasses

    • Encapsulating implementation details to hide complexity and provide a simpler interface

    • Using design patterns such as Factory and Strategy to abstract away implementation details

  • Answered by AI
  • Q4. Difference between class and Interface object and fucntion instance and all the differences?
  • Ans. 

    Class is a blueprint for creating objects while interface defines a contract for implementing classes.

    • Class is a template for creating objects with properties and methods.

    • Interface is a contract that defines a set of methods and properties that a class must implement.

    • Object is an instance of a class that has its own set of properties and methods.

    • Function instance is a reference to a function that can be called with arg...

  • Answered by AI
  • Q5. Some graph question and some more questions from data structure like about linkedlist queue.
  • Q6. Inheritance
  • Q7. Scope of access modifiers
  • Ans. 

    Access modifiers control the visibility and accessibility of class members.

    • Access modifiers include public, private, protected, and internal.

    • Public members can be accessed from anywhere.

    • Private members can only be accessed within the same class.

    • Protected members can be accessed within the same class and its subclasses.

    • Internal members can be accessed within the same assembly.

    • Access modifiers help enforce encapsulation ...

  • Answered by AI
  • Q8. Some tree questions
  • Q9. Some graph question
  • Q10. What do you know about cloud
  • Ans. 

    Cloud refers to the delivery of computing services over the internet.

    • Cloud computing allows users to access data and applications from anywhere with an internet connection.

    • Cloud services can be categorized into three main types: Infrastructure as a Service (IaaS), Platform as a Service (PaaS), and Software as a Service (SaaS).

    • Cloud providers include Amazon Web Services (AWS), Microsoft Azure, and Google Cloud Platform.

    • ...

  • Answered by AI
  • Q11. Some basic question like which things come in Iaas
  • Q12. What are the ways to achieve some task on aws
  • Ans. 

    There are multiple ways to achieve tasks on AWS depending on the specific task.

    • Using AWS Management Console

    • Using AWS CLI

    • Using AWS SDKs

    • Using AWS CloudFormation

    • Using AWS Elastic Beanstalk

    • Using AWS Lambda

    • Using AWS Step Functions

    • Using AWS Batch

  • Answered by AI
  • Q13. About ec2 and many more

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be honest about what you know and how much you know tell them very clearly you do not know much about this do not try to make stories they know more than you

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Tell about yourself.
  • Ans. 

    I am a software developer with experience in various programming languages and a passion for creating innovative solutions.

    • Proficient in Java, C++, and Python

    • Experience with web development using HTML, CSS, and JavaScript

    • Familiarity with agile development methodologies

    • Strong problem-solving and analytical skills

    • Excellent communication and teamwork abilities

  • Answered by AI
  • Q2. What is array and how it is different from linked lists?
  • Ans. 

    Array is a collection of elements of same data type. Linked list is a data structure where each element points to the next one.

    • Arrays have fixed size, linked lists can grow dynamically

    • Accessing elements in an array is faster than in a linked list

    • Inserting or deleting elements in a linked list is faster than in an array

    • Arrays are stored in contiguous memory locations, linked lists are not

    • Arrays are used for random acces

  • Answered by AI
  • Q3. OSI model (Networking)?
  • Ans. 

    The OSI model is a conceptual model that describes the communication functions of a telecommunication or computing system.

    • The OSI model has 7 layers: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each layer has a specific function and communicates with the layers above and below it.

    • The Physical layer deals with the physical transmission of data, while the Application layer deals with u...

  • Answered by AI
  • Q4. Explain OSI model modules?
  • Ans. 

    The OSI model is a conceptual model that characterizes and standardizes the communication functions of a telecommunication or computing system.

    • The OSI model has 7 layers: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each layer has a specific function and communicates with the layers above and below it.

    • The Physical layer deals with the physical transmission of data, while the Applicati...

  • Answered by AI
  • Q5. About project? what technologies used? How you implemented?

Interview Preparation Tips

Interview preparation tips for other job seekers - My personal advice is to first be prepared on what u have written in Resume.
Get some current knowledge about the company like CEO name, latest tech. on which company working on .

Skills evaluated in this interview

T-Systems ICT India Interview FAQs

How many rounds are there in T-Systems ICT India Software Developer interview?
T-Systems ICT India interview process usually has 1 rounds. The most common rounds in the T-Systems ICT India interview process are Technical.
How to prepare for T-Systems ICT India Software Developer 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 T-Systems ICT India. The most common topics and skills that interviewers at T-Systems ICT India expect are Python, Healthcare, Information Technology, Logistics and Automotive Engineering.

Tell us how to improve this page.

T-Systems ICT India Software Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
T-Systems ICT India Software Developer Salary
based on 53 salaries
₹6.4 L/yr - ₹21.6 L/yr
57% more than the average Software Developer Salary in India
View more details

T-Systems ICT India Software Developer Reviews and Ratings

based on 4 reviews

3.4/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.2

Salary

4.2

Job security

4.0

Company culture

4.0

Promotions

4.2

Work satisfaction

Explore 4 Reviews and Ratings
Senior Consultant
1.1k salaries
unlock blur

₹10 L/yr - ₹42.1 L/yr

Consultant
1.1k salaries
unlock blur

₹8 L/yr - ₹30 L/yr

Associate Consultant
247 salaries
unlock blur

₹3.5 L/yr - ₹8.6 L/yr

SAP Basis Consultant
179 salaries
unlock blur

₹4 L/yr - ₹20 L/yr

Softwaretest Engineer
115 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Explore more salaries
Compare T-Systems ICT India with

IBM

4.0
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Tech Mahindra

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