Answer:
d.Responsive Display ads
e.Uploaded ads (Image & AMPHTML)
Explanation:
The two main ad formats used in a Standard Display campaign are;
1. Responsive Display ads: they are Google's new default ad format and are automatically created by Google using assets provided by users in a square and landscape format. 
2. Uploaded ads (Image & AMPHTML): they are created using a tool like Google Web Designer to create adverts outside of Google Ads. 
They can be uploaded as a jpeg, gif, zip file and png extension into Google Ads. 
 
        
             
        
        
        
Answer:
False
Explanation:
The RAM does lose its memory when you turn off the computer, unlike hard drive which is slower but keeps memory
 
        
                    
             
        
        
        
Answer:
I try to search the answer but I couldn't find it
 
        
             
        
        
        
People would get skin cancer very easily, plants would start to die off, water would start to evaporate, and the world would be in danger.
        
                    
             
        
        
        
Answer:
Explanation:
The following code is written in Java and it simply creates the 2-Dimensional int array with the data provided and then uses the Arrays class to easily print the entire array's data in each layer.
import java.util.Arrays;
class Brainly {
    public static void main(String[] args) {
        int[][] arr = {{16, 17, 14}, {17, 18, 17}, {15, 17, 14}};
     
      
       System.out.print(Arrays./*Remove this because brainly detects as swearword*/deepToString(arr));
    }
}