Answer:
Procedural Programming => Functions
Object-Oriented Programming => Classes
Explanation:
Procedural programming is essentially what it sounds like – it's a series of procedures that the computer executes out. A procedure is essentially a function built of different steps that you the coder have grouped as such.
Object-Oriented Programming is all about objects. Objects contain data in the form of attributes, and functions in the form of methods. The most popular Object-Oriented Programming languages are class based, meaning that each object is an instance of a class (the class being a template). 
Hope that helps! And you can always research more online!
 
        
             
        
        
        
Answer:
- var count = 0;
- var counterElement = document.getElementById("counter");
- counterElement.innerHTML = count;
- var a = setInterval(
-     function(){  
-         count++;
-         counterElement.innerHTML = count;
-         if(count == 5){
-             clearInterval(a);
-         }
-     }
-         , 300);
Explanation:
The solution code is given from Line 6 - 15.  
setInterval function is a function that will repeatedly call its inner function for an interval of time. This function will take two input, an inner function and the interval time in milliseconds.  
In this case, we define an inner function that will increment count by one (Line 8) and then display it to html page (Line 9). This inner function will repeatedly be called for 300 milliseconds. When the count reaches 5, use clearInterval to stop the innerFunction from running (Line 11 - 13).  
 
        
             
        
        
        
Answer:
cyber crime, also called computer crime, the use of a computer as an instrument to further illegal ends, such as committing fraud, trafficking in child p0®n0graphy and intellectual property, stealing identities, or violating privacy. Cyber crime, especially through the Internet, has grown in importance as the computer has become central to commerce, entertainment, and government.