A process to be followed in calculations or other problem-solving operations.
Answer:
° Webpages could finally incorporate tables into the design.
° Webpage layouts were finally designed using HTML code.
Explanation:
Web design is the structure or styles that are used to make webpages more interactive and attractive for web users to use.
In other to design a web page, on of the tools been used are programming or coding languages.
Examples include, HTML, Cascading Styles(CSS) e.t.c.
The addition of an improvement over early web design resulted in the use of Hyper Text Markup Language(HTML) code to design the layout of webpage.
Hyper Text Markup Language(HTML) is a programming or coding language that is used first in creating and designing a webpage. It gives the webpage, a very good layout and structure.
Also when designing webpages, tables can now be incorporated into the design
Nondirect competition is the variance between vendors whose products or services are not the same but that could gratify the consumer need
Lets take exampl of microsoft corporation
The indirect competitors are WHOLE FOODS and WAL-MART
Direct competitors sells the product or services that are same
the direct competitors are Apple, Google, HP, IBM
hope it helps
Answer:
Number of times new computer faster than old computer = 13.90 times (Approx)
Explanation:
Given:
Clock speed of old computer = 266 MHz
Clock speed of new computer = 3.7 GHz
266MHz = 0.266GHz
Find:
Number of times new computer faster than old computer
Computation:
Number of times new computer faster than old computer = Clock speed of new computer / Clock speed of old computer
Number of times new computer faster than old computer = 3.7 / 266
Number of times new computer faster than old computer = 3.7 / 0.266
Number of times new computer faster than old computer = 13.90 times (Approx)
Answer:
# main function is defined
# the calculateAmount is called here
def main():
print("The new amount is: ", calculateAmount(), sep="")
# calculateAmount function that calculate the interest
def calculateAmount():
# the value of principal is p
p = 5000
# the value of rate is r
r= 2
# the time is t
t = 1
# the formula for finding interest
interest = (p * r * t) / 100
# the new amount is calculated
amount = p + interest
# the amount is returned
return amount
# a call that make main function begin execution
if __name__ == "__main__":
main()
Explanation:
The program is written in Python and it is well commented. A screenshot is attached showing program output