A table in excel is responsible for keeping track of numerical data.
Meaning information in the form of numbers.
Answer: False
Explanation: Even though you can remember it is not really good because some hackers can track you passwords through those websites and could hack your account.
Put a code or security system on or a very secure password
Hope this helps...
Answer:
class Db_test(models.Model):
name = models.CharField(max_length=50)
comment = models.CharField(max_length=200)
created = models.DateField(auto_now_add=True)
modified = models.DateField(auto_now=True)
class Meta:
db_table = "db_test"
Explanation: