i
TCS
Filter interviews by
Web server handles HTTP requests and responses, while application server executes business logic and supports dynamic content.
Web server serves static content like HTML, CSS, and images (e.g. Apache, Nginx)
Application server executes server-side code and supports dynamic content (e.g. Tomcat, JBoss)
Web server can be used without an application server, but not vice versa
Codes used in the project works
What people are saying about TCS
TCS interview questions for designations
I applied via Company Website and was interviewed in Apr 2024. There were 2 interview rounds.
This coding assignment contain exception handling problem
Its about exception handling
Get interview-ready with Top TCS Interview Questions
Java is a popular programming language known for its platform independence and object-oriented approach.
Java is a high-level, class-based, object-oriented programming language.
It is designed to have as few implementation dependencies as possible, making it platform-independent.
Java applications are typically compiled to bytecode that can run on any Java virtual machine (JVM).
Microservices are a software development technique where applications are broken down into smaller, independent services that communicate with each other.
Microservices are small, independent services that work together to form a complete application
Each microservice is responsible for a specific function or feature
Microservices communicate with each other through APIs
They can be developed, deployed, and scaled independ...
Singleton class is a class that allows only one instance of itself to be created and provides a global point of access to that instance.
Singleton class restricts the instantiation of a class to one object.
It provides a way to access its unique instance globally.
Commonly used in scenarios where only one instance of a class is needed, such as database connections or configuration settings.
CSS stands for Cascading Style Sheets. It is a language used for styling web pages.
CSS is used to control the layout and appearance of HTML elements on a webpage
There are three types of CSS: inline, internal, and external
Inline CSS is applied directly to an HTML element using the style attribute, e.g.
Internal CSS is defined within the