Answer:
Just keep doing what you were doing explain what you would be doing in the future or where you see yourself in like 5 years and put details and things that make since to you!
The number of pixels displayed on the screen is known as screen resolution.
The coding applied to a text document to change it into an HTML is HTTP
Scripting language for webpages is Javascript.
Hypertext markup language is HTML
The address, or the item that specifies where on the Internet a site can be found is the URL.
--
Hope this helped :)
- What is your variable scope? Ie., in what parts of the program do you need it?
- Is it a value type or a reference type. Reference types must always be "newed". Value types are more expensive to pass as parameters.
- Does the type implement IDisposable? Then you should use it in a using { } clause.
- Is the type immutable (like string or DateTime)? Then making changes to it is more expensive than you may think.