For loop, if you have to fill water in a bucket three times, It will fill water in a bucket three times. While loop, If you have to take water from the well multiple times but stop when the water is empty in the well.
Explanation:
- For loop is used mostly static way of programming.
- While loop is used for dynamic approach of programming.
- Static approach has fix number of times the task is done.
- Dynamic approach is conditional attempt to complete the entire task.
- For loop uses discrete which means it uses the count approach.
- While loop is basis on characteristic, It works mostly with alphabet.
- Functions play major role in while loop to take a dynamic approach.
Answer:
TRUE - Main Content should be created with time, effort, and expertise, and should not be copied from another source.
True -High quality Main Content (MC) allows the page to achieve its purpose well.
Explanation:
Web design and development is the creation of web pages.web pages can be static or links to multiple pages. A static web page has only one page and a site address. Multiple web pages, are series of related web pages linked together with a link tag line of code.
In a web page, a main content is the main information needed to be passed across by the programmer or blogger, it varies from page to page in a multiple web site. It must be unique and contain the main information of the web page.
The answer is one ☝️ question for the poll of a vote
Answer: Link and use destination styles
Explanation: First copy the table on Excel you want to include in Word, now go to your Word document and press Ctrl + V to paste the contents into the Word file. In order to link, you have to click on the Paste Options button at the bottom right and choose either Match Destination Table Style and Link to Excel or Keep Source Formatting and Link to Excel.
Answer:
<u>algorithm</u>
original = float(raw_input("Enter initial balance: "))
interest = float(raw_input("Enter promised return: "))
expenses = float(raw_input("Enter monthly expenses: "))
interest = interest / 100 / 12
month = 0
balance = original
if balance * interest - expenses >= 0:
print "You don't need to worry."
else:
while balance + balance * interest - expenses >= 0: # negation of the if condition
balance = balance + interest * balance # in one month
balance = balance - expenses
month = month + 1
print month, balance
print month / 12, "years and", month % 12, "months"