Answer:
INSERT INTO Movie(Title,Rating,ReleaseDate)
VALUES("Raiders of the Lost ArkPG",'PG',DATE '1981-06-15'),
("The Godfaher",'R',DATE '1972-03-24'),
("The Pursuit of Happyness",'PG-13',DATE '2006-12-15');
Explanation:
The SQL statement uses the "INSERT" clause to added data to the movie table. It uses the single insert statement to add multiple movies by separating the movies in a comma and their details in parenthesis.
 
        
             
        
        
        
Answer:
When the provider of the web app he uses goes out of business
.
When he has an intermittent internet connection at his home
.
Explanation:
It can fully depend on many factors. As well, we can talk to:
Internet reliance
Security
Reduced speed
Browser support
 
        
             
        
        
        
Answer:
what is typing race 
this link can not be clicked
 
        
             
        
        
        
Answer: C) a 10 percent increase in efficiency of sales of a particular product line over one year
The term "quantifiable" means that we can attach a number to it. Specifically, a number in which we can do math operations upon it. Something like telephone numbers or serial numbers don't really count as quantifiable entities. They are qualitative variables instead. So you have to be careful what numbers you run into. In this case, "10 percent increase in efficiency" is quantitative and fits what we're after. 
A 10% increase corresponds to the multiplier 1.10; for instance, if you had sales of 40 million dollars one year, then a 10% increase is 1.10*40 = 44 million in sales. This is one example where we apply a math operation (specifically multiplication) on the value in question.
 
        
             
        
        
        
Answer:
Here is my answer in Javascript
num = 0;   // Use to calcate the even numbers
loop = 10; // Use for the highest even number that will be calcated for
index = loop/2; // Calcate the size of the array based upon how many loops their
let arr = [index]; //Create array to store the even numbers
let i = 0; // Use to keep track of which on what number in the while loop we are on  
let total = 0; //Used to add up all of the even numbers
let mean = 0; //Used to calcate the mean of all even numbers
do {
  i = i + 1; //Keep track of what loop we are on
  num = num + 2; //Used to calcate the even number
  arr.push(num); //Push the num into a array
  total = total + arr[i]; //Calcate the total of the array
  mean = total / i; //Calcate the mean
}
while (num != loop); 
//Output the result
console.log(mean);