Answer:
I think the answer is formulas 
 
        
                    
             
        
        
        
Answer:
to make peaceful mind.to develop our character..
 
        
             
        
        
        
Answer: True
Explanation: For loop is used in the C++ programming is defined as the statement that defines about the flow control .This loop works under some condition that is considered.
For loop is evaluated to execute for one time if the statement condition is true but there are also chances of no execution at all because of the incorrect condition. So, for loop might not run even once in that condition.Thus , the statement given is true.
 
        
             
        
        
        
Answer:
Following is the difference between Simple and Compound statement; Simple statement (sentence) is one which has only one subject and one predicate. A Compound statement (sentence) is one which has two or more independent clauses consisting of their own subject and predicate.
Explanation:
hope it helps you 
Mark as brainliest. 
And follow for a follow back 
 
        
             
        
        
        
Answer:
Following are the program in the Python Programming Language.
#set the infinite while loop
while(True):
  #get string input from the user
  name=input()
  #get integer input from the user
  num=int(input())
  #set the if statement to break the loop
  if(num==0):
    break
  #otherwise, print the following output
  else:
    print("Eating {} {} a day keeps the doctor away.".format(num, name))
<u>Output</u>:
oranges
5
Eating 5 oranges a day keeps the doctor away.
apple
0
Explanation:
<u>Following are the description of the program</u>:
- Set the loop that iterates at infinite times and inside the loop.
- Declare two variables which are 'name' that get string type input from the user and 'num' that get integer type input from the user.
- Set the if conditional statement for break the infinite while loop.
- Otherwise, it prints the following output.