Answer:
CCSA
Explanation:
CCSA is "Checkpoint Certified Security Administrator". This certification is best suited for Jonas.
 
        
             
        
        
        
Answer:
Check where the file originates from, and if it is a trusted source or his own workbook, click Enable Content.
Explanation:
 
        
                    
             
        
        
        
Answer:
1. Architectural sheet. 
2. Site plan. 
3. Floor plan. 
4. Title page and index. 
5. Geodetic Engineer. 
Explanation:
1. Architectural sheet: A drawing sheet that contains perspective, site development title, page and sheet index. It is generally used by architects as a graphical representation of a development plan or project. 
2. Site plan: A drawing of the lot showing the setback and development of the house in relation to the lot.
3. Floor plan: The top view of the site or lot where the proposed house will be built.
4. Title page and index: Generally includes title block, table of contents, and signs and sealed of the duly licensed and registered professionals in the plans.
5. Geodetic Engineer: He signs in the lot survey plans. A geodetic engineer studies geodynamic phenomenon such as tide, polar motion and the earth movement. 
 
        
             
        
        
        
Answer:
numMugs=input(); #take input from the user and store it on a numMugs variable.
print ('Number of mugs:'+numMugs) #print the numMugs variable value with the Number of mugs: line.
Output:
- If the input is 8 then the program is print Number of mugs: 8.
- If the input is 'Harry' then the program is print Number of mugs: Harry.
Explanation:
- The above program is in python language with the two statements one in input and the other is output.
- The first line takes input and stores it into a variable named "numMugs".
- The second line print the value as Number of mugs: value_of_numMugs.
- The above program works for any type of input. It can work for the string data type or integer data type or character data type or any other data type.