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:Following is the C program:-
#include <stdio.h>
int fun()//function fun of return type int and it returns value 6.
{
    return 6;
}
int main() {
   int a, b;
   a = 10;
   b = a + fun();//adds 6 to a.
   printf("With the function call on the right, ");
   printf("\n%d ",b);//printing b..
 return 0;
}
Output:-
With the function call on the right,  
16 
Explanation:
The function fun return the value 6 so it adds 6 to a and stores the result in b.
 
        
             
        
        
        
Answer:
4 GB
Explanation:
<u>Determine the maximal size of a file </u>
100 direct block address
= 100 * 1024 = 102400
One single indirect block address
= 128 * 1024 = 131072
One double indirect block address
= 128 * 128 * 1024 = 16777216
one triple indirect block address
=  128 * 128 * 128 * 1024 = 2147483648
one quadruple indirect block addresses
=  128 * 128 * 128 * 128 * 1024 = 274877906944
maximal size of the file 
 = ∑ 102400 +  131072 + 16777216 + 2147483648 + 274877906944
= 4GB
 
        
             
        
        
        
Answer:
s = input("Input a float: ")
print("{:12.2f}".format(float(s)))
Explanation:
- Read a number  from user using the input function of Python.
- Use the format function of Python to correctly format the output according to the given requirements.
- Note: Use Python 3.6 or above for this code to run without any issue.
Output:
Input a float: 1234.56789
1234.57