Answer:
Examine the sources cited by the website
Explanation:
Due to the ability for everyone to create a website, and that there are no governing standards on the quality of information given on websites, it is important when conducting research to ensure that the sources on the web are up to date, accurate, and provide an objective view 
Therefore, it is important to go through and examine the website critically using the the following criteria 
1) The website coverage
2) The currency of the website's information
3) Weather the website is objective or not
4) The identity of the author of the website and the ability to contact the author
5) The accuracy of the information contained in the website
 
        
             
        
        
        
Answer:
Binary code is a coding system using binary digits 0 and 1 to represent a letter, digit, or other characters in a computer or other electronic device. The binary code assigns a pattern of binary digits, also known as bits, to each character, instruction, etc.
 
        
                    
             
        
        
        
left[0]=a[0];
for(int i=1;i<=n-1;i++)
    left[i]=(left[i-1]*a[i])%M;
right[n-1]=a[n-1];
for(int i=n-2;i>=0;i--)
    right[i]=(right[i-1]*a[i])%M;
for query q
    if(q==0)
        return right[1]%M;
    if(q==n-1)
        return left[n-2]%M;
    return (left[q-1]*right[q+1])%M;
 
        
             
        
        
        
Answer:
base file name, file format, bitmap image
Explanation: