Answer:
The difference between While loop and Do - While loop are explained below.
Explanation:
- While loop : It is a looping procedure in which the statements inside the while loop are executed depending on the condition outside the while before starting the loop.
- If the condition is true then the code inside loop is executed otherwise not.
- Do - While loop: It is a looping procedure in which the statements inside the loop get executed and then the condition at the end of the loop is checked.
- This means even the condition is fails the statements inside the loop are executed once.
- Do while loop name itself suggests that "do the while and then check the condition".
Answer:
Option B
Explanation:
The top most reason for the bankruptcy of many small businesses is the inaccurate credit management.
Credit management deals with granting credits, recovery of credit granted on its due time, terms of grant of credits, other related issues and to make sure it comply with the company's policies.
The main aim of credit management is to work for the improvement of profits generated and the revenues within a bank or a firm.
Therefore, any inaccuracy in these will result in major set back to many small businesses.
Answer:
here got from a friend
Explanation:
w = ["Algorithm", "Logic", "Filter", "Software", "Network", "Parameters", "Analyze", "Algorithm", "Functionality", "Viruses"]
for i in range (len(w)):
print(w[i].upper())