- screenshots of scores will be posted in comments
- screenshots of completed sections will be posted in comments
HTML Skeleton | |
<!DOCTYPE html> #Declaration is used to inform a website visitor's browser that the document being rendered is an HTML document. | |
<html> #This tag starts an HTML file and tells browswers what kind of file this is | |
<head> #This tag includes information about the document such as the name of the file and other technical information like meat tags and style tags | |
</head> #Those with a slash (/) in front of them, are the closing tags | |
<body> #where you place all the information that will actually show up on the web page once it is online and opened in a browser. | |
</body> | |
</html> |
Module 1 Week 4 Diagnostic | |
This exercise is intended to help you assess your progress with the concepts and techniques we’ve covered during the week. | |
For these questions, write a short description or snippet of code that meets the requirement. In cases where the question mentions a “given” data value, use the variable given to refer to it (instead of re-writing the information). | |
1. Give one difference between Modules and Classes. | |
``` | |
Modules can be initializd. |
Week 2 and 3 Diagnostic | |
This exercise is intended to help you assess your progress with the concepts and techniques we’ve covered during the week. | |
For these questions, write a short snippet of code that meets the requirement. In cases where the question mentions a “given” data value, use the variable given to refer to it (instead of re-writing the information). | |
Use single (`) and triple backticks (```) to container code snippets. | |
1. Define a class called PizzaOven which has a method cook_pizza which returns the string "mmm 'za". | |
``` | |
class PizzaOven |