i
TCS
Filter interviews by
Arrays are fixed-size, while ArrayLists are dynamic and can grow or shrink in size.
Arrays have a fixed size: `String[] fruits = new String[5];`
ArrayLists can change size dynamically: `ArrayList<String> fruits = new ArrayList<>();`
Arrays can store primitives and objects: `int[] numbers = {1, 2, 3};`
ArrayLists can only store objects: `ArrayList<Integer> numbers = new ArrayList<>();`
Accessing ...
API stands for Application Programming Interface, enabling software applications to communicate and interact with each other.
APIs allow different software systems to exchange data and functionality.
RESTful APIs use HTTP requests to access and manipulate data, e.g., fetching user data from a web service.
SOAP APIs use XML for message format and rely on other application layers for security and communication.
APIs can...
Developed a web-based application for managing student attendance using PHP and MySQL.
Utilized PHP for server-side scripting to handle user requests and data processing.
Implemented MySQL for database management to store student records and attendance data.
Designed a user-friendly interface using HTML, CSS, and JavaScript for easy navigation.
Incorporated features like attendance tracking, reporting, and notificatio...
OOPs (Object-Oriented Programming) is a programming paradigm based on objects and classes, promoting code reusability and modularity.
Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).
Inheritance: Mechanism to create a new class using properties and methods of an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).
Polymorphism: Ability to present th...
What people are saying about TCS
SQL joins combine rows from two or more tables based on related columns, enabling complex queries and data retrieval.
INNER JOIN: Returns records with matching values in both tables. Example: SELECT * FROM A INNER JOIN B ON A.id = B.id;
LEFT JOIN: Returns all records from the left table and matched records from the right table. Example: SELECT * FROM A LEFT JOIN B ON A.id = B.id;
RIGHT JOIN: Returns all records from ...
DevOps integrates development and operations for faster software delivery and improved collaboration.
Continuous Integration (CI) and Continuous Deployment (CD) streamline the development process. Example: Jenkins automates testing and deployment.
Infrastructure as Code (IaC) allows for automated infrastructure management. Example: Terraform provisions cloud resources through code.
Monitoring and logging are crucial ...
Developed a machine learning model to predict customer churn in a telecom company.
Collected and cleaned customer data including usage patterns and demographics.
Used classification algorithms like Random Forest and Logistic Regression to train the model.
Evaluated model performance using metrics like accuracy, precision, and recall.
Implemented the model in a production environment to monitor and predict customer chu...
Web API concepts involve creating interfaces for communication between different software systems over the internet.
Web API stands for Application Programming Interface, which allows different software systems to communicate with each other over the internet.
Web APIs use HTTP protocols to define a set of rules for communication between systems.
Web APIs can be used to access data, services, or functionality from a ...
Sorting in Python can be done using built-in functions like sorted() or sort() method.
Use sorted() function to return a new sorted list without modifying the original list.
Use sort() method to sort the list in-place.
You can specify key function to customize the sorting order.
Example: nums = [3, 1, 4, 1, 5, 9, 2]; sorted_nums = sorted(nums); nums.sort()
To connect a database with an API, you need to establish a connection between the database and the API server.
Create an API endpoint that will handle database operations such as CRUD (Create, Read, Update, Delete) operations.
Use database drivers or ORM (Object-Relational Mapping) libraries to interact with the database from the API code.
Establish a secure connection between the API server and the database by confi...
I applied via Company Website and was interviewed before Sep 2021. There were 3 interview rounds.
1. verbal abilities
2. Mathematics aptitude
3. IT security questions
4. Coding questions (2)
The TCS NQT test consisted of three sections: numerical, verbal, and logical aptitude, followed by an advanced aptitude section and two coding questions.
I am a recent graduate with a degree in Computer Science and a passion for technology. I have experience with programming languages like Java and Python.
Recent graduate with a degree in Computer Science
Passionate about technology
Proficient in programming languages like Java and Python
Java is a popular programming language known for its platform independence, object-oriented features, and robustness.
Platform independence - Java code can run on any platform with Java Virtual Machine (JVM)
Object-oriented - Java supports classes, objects, inheritance, and polymorphism
Robust - Java has strong memory management, exception handling, and type checking
Security - Java has built-in security features like sand...
Encapsulation, Inheritance, Polymorphism, Abstraction
Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: Class with private data members and public methods.
Inheritance: Ability of a class to inherit properties and behavior from another class. Example: Subclass inheriting from a superclass.
Polymorphism: Ability to present the same interface for different data types. Example: Me...
Yes, I am willing to relocate for the right opportunity.
I am open to relocating for a promising career opportunity
I have relocated for previous job positions and am comfortable with the process
I understand the benefits of relocating for career growth and development
No active backlogs
No, I do not have any active backlogs
I have successfully completed all my courses without any pending assignments
I am up to date with all my work and responsibilities
I applied via Campus Placement and was interviewed in Jul 2024. There were 3 interview rounds.
1. Aptitude
A) Verbal
B) Reasoning
C) Quants
2. Coding test
A) Arrays - Number of ways to reach a position after exactly K steps
B) Rotate Matrix
A friend function in C++ allows access to private and protected members of a class.
Friend functions are not members of the class but can access its private and protected members.
They are declared using the keyword 'friend' inside the class.
Example: 'friend void display(ClassName obj);'
Friend functions can be useful for operator overloading.
They can also be used to implement certain functionalities that require access t...
Tuple is immutable, ordered collection of elements while list is mutable, ordered collection of elements in Python.
Tuple is created using parentheses () while list is created using square brackets []
Tuple elements cannot be changed once assigned while list elements can be modified
Tuple is faster than list for iteration and accessing elements
Example: tuple_example = (1, 2, 3) and list_example = [1, 2, 3]
Agile methodology is iterative and flexible, while waterfall model is sequential and rigid.
Agile focuses on delivering working software in short iterations
Waterfall follows a linear sequential flow from requirements to testing
Agile allows for changes and feedback throughout the development process
Waterfall requires all requirements to be defined upfront
Agile is more adaptive to changes in project scope
Waterfall is less...
Agile is iterative and flexible, while waterfall is sequential and rigid.
Agile involves continuous feedback and adaptation, while waterfall follows a linear approach.
Agile is best suited for projects with changing requirements, while waterfall is better for projects with well-defined requirements.
Agile promotes collaboration and communication among team members, while waterfall focuses on documentation and formal proce...
Yes, there are drawbacks of Agile model.
Lack of predictability in terms of project timelines and deliverables
Difficulty in handling large and complex projects
Dependency on customer collaboration and feedback can sometimes slow down the process
Requires experienced team members for effective implementation
May lead to scope creep if not managed properly
I want to work at TCS because of its reputation for innovation, global presence, and opportunities for growth.
TCS is known for its cutting-edge technology solutions and innovation in the IT industry.
TCS has a strong global presence with offices in multiple countries, providing opportunities for international exposure.
TCS offers a wide range of projects and clients, allowing for professional growth and development.
TCS h...
My hobbies include playing the guitar, hiking, and reading science fiction novels.
Playing the guitar
Hiking
Reading science fiction novels
I have extensive team project experience in college, working on various assignments and presentations.
Led a team of 5 students to develop a mobile application for a class project
Collaborated with classmates to create a research paper on artificial intelligence
Participated in a group presentation on cybersecurity for a final exam
Yes, I am a continuous learner who is always seeking to expand my knowledge and skills.
I regularly attend workshops, seminars, and online courses to stay updated with the latest technologies and trends.
I actively seek feedback from colleagues and supervisors to identify areas for improvement.
I enjoy reading technical blogs and articles to enhance my understanding of complex concepts.
I have pursued certifications in rel...
I have successfully completed multiple projects on time and received recognition for my problem-solving skills.
Received Employee of the Month award for implementing a new system that improved efficiency by 20%
Led a team in developing a software solution that reduced errors by 15%
Achieved a 98% customer satisfaction rate in handling technical support issues
I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.
The aptitude test will have logical reasoning, problem solving ,english and 2 coding questions to assess the candidate's knowledge
I would rate myself a 7 out of 10 in Python, with solid skills in data manipulation and web development.
Proficient in using libraries like Pandas for data analysis.
Experience with Flask for building web applications.
Familiar with object-oriented programming concepts.
Able to write unit tests using the unittest framework.
Comfortable with basic algorithms and data structures.
A palindrome is a word that reads the same backward as forward. This code checks if a given word is a palindrome.
A palindrome example: 'radar' is the same forwards and backwards.
To check, reverse the string and compare it to the original.
In Python, use slicing: word == word[::-1] to check for palindrome.
Simple quantitative questions and one coding question.
Yes, I am willing to join the company in various locations across India.
I am open to relocating for the job opportunity
I am flexible with location preferences
I am excited about the prospect of working in different parts of India
Medium level- just prepare from youtube
Medium level just search previous year questions
I am a passionate engineer with a strong background in software development and problem-solving skills, eager to contribute to innovative projects.
Educational Background: Graduated with a degree in Computer Science from XYZ University, where I developed a solid foundation in programming.
Technical Skills: Proficient in languages like Java, Python, and C++, with hands-on experience in developing applications and software...
Java is a versatile, object-oriented programming language known for its portability and strong community support.
Java is platform-independent due to the Java Virtual Machine (JVM). Example: Write once, run anywhere.
It is an object-oriented language, which means it uses objects to represent data. Example: Classes and objects.
Java has a strong type system, requiring explicit declaration of variable types. Example: int ag...
Number systems, Time, speed and distance, percentage
Usually 2 coding questions of 1hr
Yes, I am open to relocating anywhere for the right opportunity.
I am flexible and willing to relocate for career growth
I have experience moving for previous job opportunities
I understand the importance of being open to new locations for professional development
I want to join this company because of its reputation for innovation and growth opportunities.
Impressed by the company's track record of innovation
Excited about the potential for growth and advancement within the company
Interested in the company's culture and values
Believe my skills and experience align well with the company's needs
I appeared for an interview in Feb 2025, where I was asked the following questions.
Developed a web-based application for managing student attendance using PHP and MySQL.
Utilized PHP for server-side scripting to handle user requests and data processing.
Implemented MySQL for database management to store student records and attendance data.
Designed a user-friendly interface using HTML, CSS, and JavaScript for easy navigation.
Incorporated features like attendance tracking, reporting, and notifications fo...
I applied via Campus Placement and was interviewed in May 2024. There were 4 interview rounds.
It was easy and it Consisted several rounds logical, reasoning,coding
Includes quantitative verbal and reasoning questions
Oops concepts in Java refer to Object-Oriented Programming principles like Inheritance, Polymorphism, Encapsulation, and Abstraction.
Inheritance: Allows a class to inherit properties and behavior from another class.
Polymorphism: Ability of an object to take on many forms.
Encapsulation: Wrapping data and methods into a single unit.
Abstraction: Hiding the implementation details and showing only the necessary features.
Yes, I am open to relocating for the right opportunity.
I am willing to relocate for the right job opportunity
I have no restrictions on relocating for work
I am open to exploring new locations for career growth
Some of the top questions asked at the TCS Assistant System Engineer interview -
The duration of TCS Assistant System Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 275 interview experiences
Difficulty level
Duration
based on 3.7k reviews
Rating in categories
System Engineer
1.1L
salaries
| ₹1 L/yr - ₹9 L/yr |
IT Analyst
65.7k
salaries
| ₹5.1 L/yr - ₹16.6 L/yr |
AST Consultant
53.3k
salaries
| ₹8 L/yr - ₹25.1 L/yr |
Assistant System Engineer
33.2k
salaries
| ₹2.6 L/yr - ₹6.4 L/yr |
Associate Consultant
32.6k
salaries
| ₹9 L/yr - ₹33 L/yr |
Amazon
Wipro
Infosys
Accenture