Web App Development 2 - 2015 - Section A
1. What sequence of commands would you issue to upload and share your code in a GitHub repository? You can assume the added code wont cause a conflict with existing code.
pull add commit push
pull commit push add
push add commit pull
push commit add pull
2. The typical architecture of a web application follows a:
Two tier architecture
Three Tier architecture
Model View Template
Model View Controller
3. What design pattern does the django web application use:
Model View Controller Pattern
Subject Observer Pattern
Model View Template Pattern
Factory Pattern
4. An overriding principle when design web applications is:
separation of content
keep’em separated
concerns separation
separation of concerns
5. The responsibilities of the middleware include: (select option where all correctly apply):
handle incoming requests from clients and servers, request data from server, return a html/xml response to the client and server.
handle incoming requests from servers, request data from the client, return an html/xml response the server
handle incoming requests from clients, request data from a database, return an html/xml response to the client
handle incoming request from clients, request data from a database, return a html/xml response to the server
6. What does HTTP stand for?
Hyper Text Transfer Protocol
The good of all internet citizens
Hyper Text Transfer Process
Hyper Text The Protocol
7. The two most frequently used in HTTP requests are:
GET and POST
PUSH and GET
FETCH and POST
PUSH and PULL
8. Which problem does HTTP suffer from:
entomophobia, fear of being crawled
statuslessness, maintains no status
statelessness, maintains no state
statefulness, maintains state
9. AJAX stands for:
Asynchronous JavaScript and eXtensible Makeup Language
Amsterdam Football club
Asynchronous Java and Extensible Markup Language
Asynchronous JavaScript and eXtensible Markup Language
10. AJAX enables us to (Select the option where all statements apply):
make requests without reloading the page, to receive and work with data from the server, using only xml data
make requests by reloading the page, to receive and work with data from the server, using any type data
make requests without reloading the page, to receive and work with data from the server, using any type data
make requests by reloading the page, to receive and work with data from the server, using only xml data
Submit Quiz