Answer:
I believe its C
Explanation:
I'm sorry if its wrong...
Answer:
Request the colleague to call after sometime
Explanation:
While working on a customer issue, your colleague calls and asks for help to resolve his issue. What should be done is to "Request the colleague to call after some time."
This is because,e in situations like that, it is believed that the customer should come first, and that is the purpose of being there. For employee to serve the customer. A colleague can easily link up with other employees to get his issues sorted, or simply wait.
Answer:
return 8 * x
Explanation:
Given
The attached code segment
Required
Which single statement can replace the program body
From calculate(), we have:

The first line (x = x + x) implies that:

So, on the next line; 2x will be substituted for x
i.e.
becomes


So, on the third line; 4x will be substituted for x
i.e.
becomes


In programming: 8x = 8 * x:
This means that: return 8 * x can be used to replace the body
Answer:
All three of them are linear Data Structures.
A stack is a FILO(First In Last Out) or LIFO(Last In First Out) type data structure means first inserted element will be the last one to be removed form the stack.Insertion and Deletion is from one end only called head.
ex:-A stack of books on the shelf.
A queue is FIFO(First In First Out) type means the first inserted element will be the first one to be removed.In queue insertion is from the back or tail and removal of elements is done form the front.
ex:-A queue at the ticket counter.
In array each element stored is given an index, by which we can be access the element very easily. We can use this index to modify or store element at that index of the array. i.e any object can be accessed with the right index, unlike queue and stack.
We can access only the front and back in the queue.In stack we can access only the top but in array we can access any element with the index.