C, URL since the other options aren’t addresses at all
Answer:
Check the explanation
Explanation:
CODE:
static int findEvenQueue(Queue<Integer> numbers)
{
//loop runs till the queue has atleast one element
while(numbers.size() > 0)
{
//Checking the head of the queue whether it is even
int temp = numbers.peek();
if(temp % 2 == 0)
{
//if the head is even then return it
return temp;
}
else
{
//else remove the number at head
int removed = numbers.poll();
}
}
//if no even number present in the Queue then return -1
return -1;
}
Answer:
BPO Role in India's Economic Growth
The role played by BPOs in boosting India's economy shows that the IT and ITeS sector have been contributing largely to the economic growth of India. The growth in the contribution of BPOs to Gross Domestic Product has shown a steady rise from 1.2% to 5.4%.