Answer:
to set up placeholders in a document where data will be inserted 
 
        
                    
             
        
        
        
Answer:
The answer is "Option A".
Explanation:  
- In the given C++ Language program on line 8 compile-time error will occur, because in the code the conditional statement is used. In if block, we check two conditions together, which is the number variable value is greater than equal to 0 and check less than equal to 100.  
- In this condition statement, a AND operator is used that execute when both condition is true, but in the last condition, we do not define a variable name that, checks value. That's why the program will give an error on line 8.
 
        
             
        
        
        
A i think idk im trying to earn points
        
             
        
        
        
Answer:   a profession is a job, or what you do for a living
example : a teacher is an example of proffesion
 
        
                    
             
        
        
        
The program is an illustration of functions.
<h3>What are functions?</h3>
Functions are set of program statements that are executed when called or evoked.
<h3>The main program</h3>
The function written in Python, where comments are used to explain each line of the program is as follows:
#This defines the function
def posodd_number_filter(num):
    #This checks if the function is odd and positive
    if num >0 and num%2 ==1:
        #If yes, this returns Accepted
        return "Accepted"
    #If no, this returns Rejected
    return "Rejected"
Read more about functions at:
brainly.com/question/14284563