Answer:
A responsive layout is usually a common and important aspect of a theme since it can allow users to use different devices and receive a proper satisfactory visit.
Explanation:
Depending on the purpose of the site, you need to be decided what functionalities you deem necessary and which are just useful in case you might need it later on. Example
A blog site will required a good blog theme,
including one that has ecommerce options depends weather the blogger might be thinking of selling things or not.
D. Data redundancy. This means the data is located in multiple places when it isn't necessary to do so.
Answer:
a database stores a large sum of data
Explanation:
its used to keep track of things like student names bank accounts and other things
<u>★ Defination:</u>
The number system or the numeral system is the system of naming or representing numbers. The number system helps to represent numbers in a small symbol set.
<u>★ Tips:</u>
The value of any digit in a number can be determined by:
• The digit
• Its position in the number
• The base of the number system
<u>★ Types of number system:</u>
There are various types of number system in mathematics. The four most common number system types are:
• Decimal number system (Base- 10)
• Binary number system (Base- 2)
• Octal number system (Base-8)
• Hexadecimal number system (Base- 16)
Answer:
total = 0
for i in range(5):
product = float(input())
tax = product * 0.07
print('Product price:',product)
print('Product tax:',tax)
print('----------------------')
total += product+tax
print('Total:',total)
Explanation:
Step 1 variables definition
total = 0
Step 2 loop over quantity of products
for i in range(5):
Step 3 ask for price and calculate the tax
product = float(input())
tax = product * 0.07
Step 4 print the product total
print('Product price:',product)
print('Product tax:',tax)
print('----------------------')
Step 5 print the general total
print('Total:',total)