BusinessAnalystFaq.com

 

Home | BA-Interview-Questions  | Jobs | Resumes  | BA-Dictionary | Books | Contact | Privacy Policy
Training & Tutorials:

*Roles and Responsibilities of a

 Business Analyst

*What is System Analyst

*What is SDLC and different

 Phases of it?

*What is usecase diagram?

 & its Importance.

*How to draw flowchart? And

 its uses?

*What is RUP? Explain in detail.

*What is UML explain in detail?

*Business Analyst Tutorials

*Business Analyst Interview

 Questions

*Testing (QA) knowledge Required

 for BA

*Business Analyst Healthcare

 domain Tutorials

*Business Analyst Finance

 Domain Tutorials

*Rational Rose Tools Interview

 Questions

*Diagrams for Business Analyst

*Resumes for Business Analyst

*Jobs for Business Analyst

*Interviews Tips

*Other-Interview-Questions

 

BA Interview Questions

*BA Interview questions set 1

*BA Interview questions set 2

*BA Interview questions set 3

*BA Interview questions set 4

*BA Interview questions set 5

*Business analyst Interview

 questions 6

*Business analyst Interview

 questions 7

*Business analyst Interview

 questions 8

*Resume writing tips for BA 9

*General business analyst interview

  questions 10

*Mortgage related interview questions

  for BA 11

 

Business Analyst Tutorials

*Responsibilities of a Business Analyst

*What is Business Analysis

*Sequence diagram Explained

*Class diagram explained

*RUP explained

*UML(unified modelling language)

*SDLC(systems development life cycle)

*Insurance knowledge for BA

*Health care knowledge for BA

*Finance banking knowledge for BA

*Role of a Business Analyst(high level)

*Use case diagram step by step

*Class Diagrams UML

*Responsibilities of BA

*What is RUP ?

*RUP in SDLC process

*SDLC

*Bug Life cycle

*BA Faq

*Business Users of the system

*Class diagrams

*CMM levels

*Collaboration diagram

*Data Mapping & Data modeling

*Data model in data base

*Deliverables in SDLC

*Tools used by BA

*Q-Gate (quality gate)

*RUP (rational unified processing)

*Sequence diagrams

*Deliverables in RUP

*UML (unified modeling language)

*Use case diagram

*Use case examples

*Use case template examples

*what are JAD sessions?

*What is GAP analysis ?

*What is User acceptance testing (
UAT)?

*Daily duties of a BA

*What is System analyst ?

*UML Tutorial Part 1

*UML Tutorial Part 2

*UML Tutorial Part 3

*UML Tutorial Part 4

*UML Tutorial Part 5

*UML Tutorial Part 6

*UML Tutorial Part 7

*UML Tutorial Part 8

 

Testing Knowledge

*Testing processes

*QTP recording flow

*Break points in qtp

*Split actions in qtp

*Parameterization

*Check Points in QTP

*Integrated testing

*What is QTP ?

*Loadrunner step by step

 

Business Analyst Finance

*Business Analyst Finance domain

 Interview questions set 1

*What is Fixed rate Loan?

*What is home equity line of credit

  (HELOC) ?

*What is Loan to value ratio ?

*What is debt to income  ratio &

*What is lien Lien holder ?

*What are mutual funds ? Interview

 questions

*Trading of Stocks , what are stocks?

*New york Stock exchange

*What is NASDAQ ?

*Stock exchanges in USA

*Factors that will affect the change in

 price of STOCKS

*How to buy a STOCK ?

*What stocks are treated as equity

 while bonds as debt ?

*Some more Finance related interview

  questions for Business analyst

*Imp finance related interview

 questions for BA

*What is SWAP and types of swaps

*What are  Options & Bonds and types

Bonds in finance

*what are Options in finance

*what is a derivative and how it functions

*Who is a broker dealer

*Commercial bank in brokerage industry

*Who is a market maker?

*who is a specialist ?

*What are bond and types of bonds

*Steps for writing use case diagram

*What is SOX (Sarbanes Oxley act)

*CMM Capability maturity model

 

Business Analyst Health care :

*BA Health Care Claims

*SAS (statistical analysis system)

*Clinical Trials

*What are FACETS

*Health care fraud detection

*What is HIPAA

*Medicare Procedures and policies

*Health care Interview questions for BA 

 

 

 

 

 

Java struts interview questions

 

What Are Struts?

 

Struts framework is a prerequisite for a professional web application. It is the framework that every web application developer should have in his or her toolbox. The Struts framework provides the scaffolding for the workings of a web application. Published standards and its proven design pattern will enable your application to have an expansible development pattern.

 

The core of the framework is a flexible control layer, adhering to standard technologies such as Jave Servlets, JavaBeans, ResourceBundles, and XML. Its technology also meets the standards of various Jakarta Commons packages, making it a universal framework that could be easily utilized in any setting. The framework supports application architectures based on the Model 2 approach. This provides a variety and offers web application developers a choice aside from the more common Model-View-Controller (MVC) design paradigm.

 

Struts provide the Controller component. However, the Model and the View is based on integration and interaction with other technologies. The interaction of standard data access technologies, like JDBC and EJBC, with Struts provides the Model for the framework. Other third party packages like Hibernate, iBATIS or Object Relational Bridge also serve this purpose. The View component is produced in much the same way as the Model. Common presentation systems like JavaServer Pages, not excluding JSTL and JSF, Velocity Templates and XSLT are compatible with Struts.

 

Explain Jakarta Struts Framework?

 

The development of web based application of any size and scale is possible with Jakarta Struts framework. This open source implementation of MVC (Model-View-Controller) allows for robust architecture. Thus it facilitates the design of scaleable, reliable web applications with Java by making the design process much simpler.

 

Define Action Servlet.

 

Action Servlet is the class org.apache.struts.Action Servlet. This class is the controller in the Jakarta Struts Framework. As the medium of delivery, the controller handles all requests to the server.

 

How To Make Available Message Resources Definitions to the Struts Framework?

 

Message Resources Definitions files are added to the struts-config.xml file through the <message-resources/> tag. This is because the Message Resources Definitions files are simple .properties files that contain messages usable in the struts project.

 

What Is Action Class?

 

All database/business processing happens in the Action Class. All database related stuffs are encouraged to be performed in the Action Class. The Action Class wraps around the business logic and it is a part of the Model. It serves to translate the HttpServletRequest to the business logic. Using the Action requires us to Subclass and to overwrite the execute() method. The parameterized class is bypassed by the ActionServlet (commad) to ActionForm through the execute() method. ActionForward is the return type for the execute method. In turn, the Struts Framework forwards requests to the file using the ActionForward according to the value of the returned ActionForward object.

 

Action Form

 

An ActionForm is a JavaBean functioning to extend org.apache.struts.action.ActionForm. When a client fills in a form and entered it, the ActionForm object will be automatically populated on the server side. The ActionForm also functions to keep the session state ongoing for web application.

 

 

photo