Answer:
D) It creates a vector object with a starting size of 10 and all elements are initialized with the value 2.
Explanation:
When you write the statement vector<int> v(10,2); This statement declares a vector or dynamic array of size 10 that is the first parameter and the second parameter is the value with which all the elements in the vector are to be initialized.So in this vector all the 10 values will be initialized with the value 2.It is one of the way of initializing the vector.
 
        
             
        
        
        
Answer:
<u>Algorithm()
</u>
1.	p = Enter the price of item A.
2.	c = Enter the number of A’s purchased.
3.	Now the price per item with tax is:
               t= p+(p*6/100)
4.	The total cost of c items:  
              ct= t * c.
5.	Print ct.
In this algorithm, we are taking the price per item and counting it’s cost including tax. Then we are multiplying the price per item with tax with the number of items we purchase, to find the overall cost with tax.
You may calculate the overall cost without tax as (p*c). Then you can find the overall cost with tax as ((p*c)+(p*c*6/100)), as in both way, we will get the same result.
 
        
             
        
        
        
#2: Portrait taller than wide & landscape wider than tall
        
             
        
        
        
Answer:
false
Explanation:
Ms word is only an application software