Answer:
Running time of algorithm is O(n).
Explanation:
n is power of 2
n =2,4,8,16,32,...................................
A is an array having n elements
B is an array of size 0 to (n/2)-1
if n=4 B then (4/2)-1 =1 So B has size 2
for(i=0;i<=(n/2)-1;++)
{
B[i]=A[2i]+A[2i+1];
}
This for loop will run n/2 times so complexity in terms of Big Oh is O(n/2) =O(n)
Running time of algorithm is O(n).
Answer:
The correct answer is C. Acquisition means only one company became history which is the acquired company, while the acquiring company remains.
Explanation:
An acquisition occurs when one company or corporation takes control of another (the name itself indicates that the company that acquires the other is the dominant one). Generally, larger companies acquire smaller ones. In such cases, the company acquires a smaller one and establishes itself as the owner.