Find Interview Questions for Top Companies
Ques:- About CLR, reflection and assemblies?
Right Answer:
CLR (Common Language Runtime) is the execution engine for .NET applications, managing memory, security, and execution. Reflection is a feature that allows inspection of metadata about assemblies, types, and members at runtime, enabling dynamic type creation and method invocation. Assemblies are compiled code libraries in .NET, consisting of one or more files, and serve as the fundamental building blocks of .NET applications, containing metadata and resources.
Ques:- Could you please give me the diagram of BO 6.5 Architecture or explain about the tires?
Right Answer:
The BusinessObjects (BO) 6.5 architecture typically consists of three tiers:

1. **Client Tier**: This includes tools like Web Intelligence, Crystal Reports, and Dashboard Designer, where users create and view reports.

2. **Application Server Tier**: This tier hosts the BusinessObjects services, including the Central Management Server (CMS), which manages user access and security, and the Report Server, which processes report requests.

3. **Database Tier**: This is where the repository databases reside, storing metadata, user data, and report data. It can include databases like Oracle, SQL Server, or others.

A diagram would typically show these three tiers with arrows indicating communication between them.
Ques:- What is Difference between thread and process?
Right Answer:
A process is an independent program in execution with its own memory space, while a thread is a smaller unit of a process that shares the same memory space and resources with other threads of the same process.
Ques:- What is the difference between 2-Tier architecture and3-Tier architecture
Right Answer:
2-Tier architecture consists of a client and a server, where the client directly communicates with the database server. In contrast, 3-Tier architecture adds an intermediate layer (the application server) between the client and the database server, allowing for better separation of concerns, scalability, and manageability.
Ques:- If there are too many page faults what is the problem?
Right Answer:
Too many page faults indicate that the system is spending excessive time retrieving data from disk instead of using RAM, leading to decreased performance and increased latency. This often suggests insufficient physical memory or inefficient memory management.
Ques:- To ensure one pgm. doesnt corrupt other pgm. in a Multi-pgm.enviornment .what you should do?
Right Answer:
To ensure one program doesn't corrupt another in a multi-program environment, you should implement process isolation, use sandboxing techniques, and enforce strict access controls to shared resources.
Ques:- What is 3 tier, 2 tier and n tier client server architechure? Explain in detail.
Right Answer:
**2-Tier Architecture:**
In a 2-tier architecture, the client directly communicates with the server. The client handles the presentation layer, while the server manages the data layer. This setup is typically used in small applications where the client and server are closely linked.

**3-Tier Architecture:**
In a 3-tier architecture, there are three distinct layers:
1. **Presentation Layer** (Client): The user interface where users interact with the application.
2. **Application Layer** (Middle Tier): This layer processes business logic and communicates between the presentation and data layers.
3. **Data Layer** (Server): This layer manages data storage and retrieval.

This separation allows for better scalability, maintainability, and flexibility.

**N-Tier Architecture:**
N-tier architecture extends the 3-tier model by adding more layers, which can include additional services like caching, load balancing, or integration with external services. Each layer can be distributed across different servers, enhancing scalability and allowing
Ques:- What is overloading in WCF?how to do autentication in WCF.
Right Answer:
Overloading in WCF refers to the ability to define multiple service operations with the same name but different parameters, allowing clients to call the appropriate method based on the arguments provided.

Authentication in WCF can be done using various methods, such as Windows Authentication, Username/Password authentication, or token-based authentication (like JWT). You can configure the desired authentication method in the service's web.config or app.config file under the `<system.serviceModel>` section.
Ques:- What do you test in compatability for client server and web application? ?
Right Answer:
In compatibility testing for client-server and web applications, you test the following:

1. **Browser Compatibility**: Ensure the application works across different web browsers (Chrome, Firefox, Safari, etc.) and their versions.
2. **Operating System Compatibility**: Verify functionality on various operating systems (Windows, macOS, Linux) and their versions.
3. **Device Compatibility**: Test on different devices (desktops, laptops, tablets, smartphones) to ensure a responsive design.
4. **Network Compatibility**: Check performance over different network conditions (Wi-Fi, 4G, 5G) and speeds.
5. **Database Compatibility**: Ensure the application interacts correctly with various database systems if applicable.
6. **Third-party Integration**: Test compatibility with third-party services and APIs used by the application.
7. **Security Compatibility**: Verify that security features work across different platforms and configurations.
Ques:- What is Loader?
Right Answer:
A loader is a program that loads executable files into memory and prepares them for execution by the operating system. It handles the process of reading the program's code and data from storage, allocating memory space, and linking any necessary libraries or resources.
Ques:- If try is followed by finally block what happen to exceptionoccured in try block
Right Answer:
If an exception occurs in the try block, the finally block will still execute regardless of whether the exception is handled or not. If the exception is not caught, it will propagate after the finally block executes.
Ques:- What is the diffrence between plc&dcs
Right Answer:
PLC (Programmable Logic Controller) is primarily used for discrete control and automation of machinery, while DCS (Distributed Control System) is used for continuous process control in large industrial systems. PLCs are typically more suited for individual machine control, whereas DCS is designed for complex processes involving multiple control loops and distributed control elements.
Ques:- What is n tier ?
Right Answer:
N-tier architecture is a software architecture model that separates an application into multiple layers or tiers, typically including presentation, application logic, and data storage. Each tier is independent and can communicate with others over a network, allowing for better scalability, maintainability, and separation of concerns.
Ques:- What is architecture of IIS?
Right Answer:
The architecture of Internet Information Services (IIS) is based on a modular design that includes the following key components:

1. **HTTP.sys**: The kernel-mode HTTP listener that handles requests and responses.
2. **IIS Worker Process (w3wp.exe)**: The user-mode process that executes web applications and handles requests.
3. **Application Pools**: Isolates web applications for better security and reliability.
4. **Modules**: Extensible components that process requests, such as authentication, authorization, and logging.
5. **Handlers**: Process specific types of requests, like static files or dynamic content.
6. **Management Tools**: Interfaces like IIS Manager for configuration and monitoring.

This architecture allows for efficient request processing, scalability, and management of web applications.
Ques:- Is there a way to be able to change an image(company logo) dynamically in a report? Example if you have 100 reports, and with the market uncertainity if you anticipate that the company logo might change, how can you change the image just in one place and have this reflected in all teh reports at run time?
Right Answer:
Yes, you can achieve this by storing the company logo image in a centralized location, such as a database or a shared file server. In your report templates, reference the logo image using a dynamic link or variable that points to this centralized location. When the logo changes, simply update the image in that location, and all reports will reflect the new logo at runtime without needing to modify each report individually.


Application Architecture refers to the blueprint or framework that outlines how software applications are structured and how their components interact with each other and with external systems. It involves defining the layers, modules, interfaces, and data flow to ensure that an application meets business requirements, performs efficiently, and is easy to maintain and scale.

A well-designed application architecture considers aspects such as usability, security, performance, and reliability. Common architectural patterns include monolithic, microservices, client-server, and event-driven architectures. Architects decide on technology stacks (like databases, APIs, frontend/backend frameworks), integration methods, and deployment strategies.

Professionals working in this domain analyze business needs and translate them into technical specifications. They also focus on modularity, reusability, and ensuring that different components can evolve independently without breaking the system. Understanding cloud architectures, containerization (Docker, Kubernetes), and DevOps practices is increasingly important.

Good application architecture reduces development time, improves collaboration between teams, and supports future growth. It helps avoid technical debt and ensures that applications remain robust as user demands increase.

Whether you’re a software developer, system architect, or project manager, knowledge of application architecture principles is essential for delivering quality software solutions aligned with organizational goals.

AmbitionBox Logo

What makes Takluu valuable for interview preparation?

1 Lakh+
Companies
6 Lakh+
Interview Questions
50K+
Job Profiles
20K+
Users