CS 511-Web Engineering
Week 1
Topic 14-15
CS 511-Week 1:Topic 14-15 |
Topic 14:
Architecture of web-based system:
Multi-tier architecture:
Web development can be implemented on multiple levels.
2-tier architecture:
At least 2 tiers are created, When we access a website
- Client-side tier
- Server-side tier
3-tier architecture:
In 3-tier architecture
- The first tier is responsible for content display
- The second tier is business logic for generating dynamic content
- The third tier is the database layer which stores data and manages the database.
Assessment:
- The difference between LAMP and WAMP is that of __________?
- Domain name
- Operating system
- Application server
- Database server
- Which of the following extensions helps developers improve the quality of the website?
- Fetchhouse
- Lighthouse
- Adblock
- Pophouse
- The Presentation layer, database logic, and database management layer are collectively referred to as
- 2-tier architecture
- 3-tier architecture
- 1-tier architecture
- Patch architecture
- __________ extension blocks the advertisements on a webpage.
- Gblock
- Plug-ins
- Adblock
- All block
- A webpage request can generate further multiple requests.
- False
- True
- Web servers are not like a computer that responds to HTTP requests.
- False
- True
- Which of the following is the correct shortcut key to open "developer tools" in Chrome?
- B+Shift+I
- Long press to A
- Ctrl+Shift+I
- Alt+Ctrl+I
- Which of the following application displays the user's requested webpage?
- Routing Algorithm
- Routing Protocol
- Domain Name System
- Web browser
- A scripting language is used to generate
- Dynamic content
- Country level content
- Empty content
- Trashed content
- Python is a ________ language?
- Scripting
- HTML
- CSS
- Database
Topic 15:
Introduction to HTML
HTML stands for Hypertext markup Language. Markup indicates information about the content. There are different versions of HTML but the latest version is HTML.
HTML5:
All modern browsers supported HTML5.
Elements and attributes:
HTML elements are also called HTML Tags. HTML elements also contain attributes and content.
For example an anchor tag image file is content
<a href="http://www.central park.com"> <img src="file.gif" alt="something" /> </a>
An empty element:
An empty element means it does not contain any text.
Nesting element:
The nested element must be closed first.
Assessment:
- A scripting language is used to generate
- Dynamic content
- Country level content
- Empty content
- Trashed content
- Python is a ________ language?
- Scripting
- HTML
- CSS
- Database
0 Comments