I have attended some interview recently. i came across with a common question in both the interviews.
The Question is "Can you explain your current project architecture?"
i have answered that question by explaining the different layers used and the technologies used for that layers.
But i came to know that the interviewer is not satisfied with that answer.
So, someone please let me know what should i explain when i encounter that question.....!
Thanks in Advance.....
A:
The term "project architecture" would need to defined, in my opinion. A "project" does not have an "architecture." An information system has an architecture. An "enterprise" software application has an architecture, not a project however.
A project has a schedule, a budget, a scope, quality requirements, etc.
As indicated, software architectures are typically described via hardware/systems integration perspective, e.g. firewalls, security, routers, message queues, relational database management systems, etc.
JSP pages, servlets, XML, etc., are technologies used to build an "application." They are not part of an architecture. If your interviewer does not know this, then you may have difficulty in answering the question.
Good luck!
B:
By project architecture, i guess the interviewer was referring to the application architecture which would be in most cases an MVC architecture if its a web application.
You started off well by explaining the different layer and the various technlogies used in every layer.You should have also explained little in-depth about the application functionality by mentioning the code flow.
For eg. Lets say your application requires user to login to access it.In that case, you can explain how the validation is being implemented in the application by explaining the code flow like from JSP/JSF --> managed bean --> service layer (Interface) --> Impl class --> then DAO layer --> Impl class and finally checking in your database and passing the result back to the presentation layer by wrapping the result in DTO.
Hope this helps !!
C:
I think what the interviewer meant was, describe the architecture used in your current or last project? This is a very common question to see how well you understand the bigger picture. If the question was not clearer, get it clarified before you go on to answer it. While answering, you could also query the interviewers as to you were on the right track.
-- You could talk about both physical and logical architectures.
-- Physical architecture is all about how many servers, load balanced, clustered, active-active versus active-passive, disaster recovery, etc. This includes the application servers, database servers, integration servers, etc.
-- Logical architecture is all about:
-- application/component A invoking application/component B using protocol X
-- Various tiers/layers of your application and how they interact with each other. For example, model, view, controller, data,
and integration tiers. Within tiers, you may have multiple layers like service layer, data access layer, etc.
-- Any batch processes.
-- Any integration with other systems, etc
Use simple box diagrams to give a bigger picture. You may also earn some brownie points by discussing not only the "how"s but also the "why"s.
<!-- Attachments -->
分享到:
相关推荐
面向初学者,深入浅出,通俗易懂的算法介绍。Once Upon an Algorithm: How Stories Explain Computing
The authors think aloud as they work through their project's architecture, the tradeoffs made in its construction, and when it was important to break rules. Beautiful Code is an opportunity for ...
Once Upon an Algorithm How Stories Explain Computing 英文无水印pdf pdf所有页面使用FoxitReader和PDF-XChangeViewer测试都可以打开 本资源转载自网络,如有侵权,请联系上传者或csdn删除 本资源转载自网络...
This document presumptuously purports to explain how to do research . We give heuristics that may be useful in picking up the specific skills needed for research (reading, writing, programming) and ...
Ensuring Product Integrity and Program Quality uses proven Project Management methods, as well as elements of IEEE embedded software development techniques, to explain how to deliver a reliable ...
Picture a computer ...This engaging book explains computation accessibly and shows its relevance to daily life. Something to think about next time we execute the algorithm of getting up in the morning.
Data Lake Architecture will explain how to build a useful data lake, where data scientists and data analysts can solve business challenges and identify new business opportunities. Learn how to ...
* 演讲的目的是为了inform、demonstrate、explain或persuade听众。 二、演讲的要素 * 演讲的三要素:信息、演讲者、听众 * 信息是演讲的核心,演讲者通过语言和非语言符号传递信息。 * 演讲者是信息的来源,通过...
this article explain how to make a program in visual c++ to transmit to srial port from window 7 or window xp version service pack 2.
It will then teach you about the types of patterns and the principles of software development, and explain the various aspects of distributed computing to keep your applications effective and ...
This tutorial explains how to set up log4j with email, files and stdout. It compares XML to properties configuration files, shows how to change LogLevels for a running application. Furthermore, we ...
You will be able to look over the shoulder of major coding and design experts as they work through their project's architecture, the tradeoffs made in its construction, and when it was important to ...
Oracle 中 explain_plan 的用法 Oracle 中的 explain_plan 是一个强大的分析工具,能够帮助用户了解 SQL 语句的执行计划,通过它可以了解 Oracle 是如何连接表、使用什么方式扫描表(索引扫描或全表扫描)以及使用...
It is an introduction to how the FreeBSD project works. The FreeBSD project model will be described as of July 1st, 2004. It is based on the Niels Jørgensen's paper [Jørgensen, 2001], FreeBSD's ...
I explain new and interesting bits of syntax, but this book isn’t primarily about teaching you how to use JavaScript. It’s about teaching you how to build real applications by using AdonisJs. The ...
We start with an overview of ERP and NetSuite ERP, before going on to explain the built-in features to show the breadth of NetSuite ERP's product and its ease of use. We then discuss business aspects...
def my_view(request): MyModel.objects.all() # 或者使用方法 output = MyModel.objects.all().explain() ``` 在这个例子中,`@explain`装饰器和`.explain()`方法都会在执行queryset时,附加`EXPLAIN`或`EXPLAIN...