Answer:
function sum(number) {
       if (number == 1) {
              return 1;
       }
       return number + sum(number -1);
}
Explanation:
This is a recursive function, it means that is a function that calls itself for example: if you call the function with sum(5) the process is :
sum(5)
    |______ 5 + sum(4)
                            |_______ 4 + sum(3)
                                                        |______ 3 + sum(2)
                                                                                    |_____2 + sum(1)
                                                                                                         |_____ 1
                                                                                                   
the result is 1+2+3+4+5 = 15
 
        
             
        
        
        
Answer: The .(dot) character
Explanation: in Linux, the period (dot) is short hand for the bash built in source. It will read and execute commands from a file in the current environment and return the exit status of the last command executed.
The .(dot) character is the first character for a file or directory names if they should not be displayed by commands such as ls unless specifically requested
 
        
             
        
        
        
Answer:
An employee list can give the departments and job titles of employees.
Explanation:
Well you have to your employees age birth certificate  and stuff like that on file and there department and title would bee in that file.
 
        
                    
             
        
        
        
A. This is a structural hazard.
B. This is a control hazard.
C. This is a data hazard. 
<u>Explanation:</u>
There are various types of hazards that occur in computer architecture based on certain conditions.  
The memory shared by instruction fetches and data accesses in a Von Neumann memory architecture. This is a structural hazard.  
A conditional branch instruction in a RISC processor. This is a control hazard.
An integer multiplier that takes two cycles to complete when all other arithmetic operations in a processor take one cycle. Assume that there are sufficient register read and write ports to support all the necessary read and writes per cycle. This is a data hazard. 
Data hazards occur happen when the pipeline changes the request for perusing/composing gets to operands with the goal that the request varies from the request seen by consecutively executing guidelines on the unpipelined machine.  
A structural hazard occurs when a piece of the processor's equipment is required by at least two guidelines simultaneously.  
Control hazards can cause a more noteworthy presentation misfortune for the DLX pipeline than data hazards.