Frequently Asked Questions
Describe the difference between an XML Sitemap and a HTML Sitemap. List the benefits and disadvantages of using each. |
XML Sitemap:Primarily for search engines, written in XML. Helps with crawling and indexing but is not user-friendly.
HTML Sitemap:For users, written in HTML, improves navigation, and is visible on the website.
|
Evaluate three IDEs and how they suit an entry-level trainee code developer. |
1. Visual Studio CodeLightweight, supports many languages, has useful extensions.
2. PyCharmSmart Python tools, built-in debugging, good for web development.
3. EclipseStrong for Java, great debugging, many plugins.
|
Brief history of web browser development and issues encountered by web developers. |
History:
Common Issues:
Solutions:
|
What are website testing methodologies? |
|
Endorsed accessibility requirements for all NT Government webpages |
|
How should assets be organized for a webpage? |
Local Project Structure:
Websites
├── RhondasMangoChutney
│ ├── assets
│ │ ├── images
│ │ ├── css
│ │ ├── js
│ │ ├── fonts
│ │ ├── downloads
│ ├── index.html
│ ├── recipe.html
│ ├── about.html
Hosting (public_html folder):
public_html
├── assets
│ ├── images
│ │ ├── mango-chutney.jpg
│ │ ├── cooking-process.jpg
│ │ ├── bottled-chutney.jpg
│ ├── css
│ │ ├── style.css
│ ├── js
│ │ ├── script.js
│ ├── fonts
│ ├── downloads
├── index.html
├── recipe.html
├── about.html
|