Questions

Q:

What is virtual path?

Answer

Along any transmission path from a given source to a given destination, a group of virtual circuits can be grouped together into what is called path.

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

0 2847
Q:

When insulin is released, it causes

A) Amount of glucose in blood decreases B) Amount of glucose in blood increases
C) Amount of bile juice increases D) Amount of bile juice decreases
 
Answer & Explanation Answer: A) Amount of glucose in blood decreases

Explanation:

We know that, when we eat a meal, any carbohydrates we've eaten are broken down into glucose and passed into the bloodstream. This rise in blood glucose causes insulin to be released from the pancreas so glucose can move inside the cells and be used. As glucose moves inside the cells, the amount of glucose in the bloodstream returns to normal and insulin release slows down.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

3 2847
Q:

When backed by buying, power wants become

A) demands B) physical needs
C) exchanges D) social needs
 
Answer & Explanation Answer: A) demands

Explanation:

When backed by buying, power wants become demands. 

Report Error

View Answer Report Error Discuss

Filed Under: Marketing and Sales
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2846
Q:

Write a c program for quick sort.

Answer

#include<stdio.h>

void quicksort(int [10],int,int);

int main(){
  int x[20],size,i;

  printf("Enter size of the array: ");
  scanf("%d",&size);

  printf("Enter %d elements: ",size);
  for(i=0;i<size;i++)
    scanf("%d",&x[i]);

  quicksort(x,0,size-1);

  printf("Sorted elements: ");
  for(i=0;i<size;i++)
    printf(" %d",x[i]);

  return 0;
}

void quicksort(int x[10],int first,int last){
    int pivot,j,temp,i;

     if(first<last){
         pivot=first;
         i=first;
         j=last;

         while(i<j){
             while(x[i]<=x[pivot]&&i<last)
                 i++;
             while(x[j]>x[pivot])
                 j--;
             if(i<j){
                 temp=x[i];
                  x[i]=x[j];
                  x[j]=temp;
             }
         }

         temp=x[pivot];
         x[pivot]=x[j];
         x[j]=temp;
         quicksort(x,first,j-1);
         quicksort(x,j+1,last);

    }
}

Output:
Enter size of the array: 5
Enter 5 elements: 3 8 0 1 2
Sorted elements: 0 1 2 3 8

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2846
Q:

Which one of the following Committees is described as the 'twin sister' of the Estimates Committee?

A) Public Accounts Committee B) Committee on Public Undertakings
C) Departmental Standing Committee D) Privilege Committee
 
Answer & Explanation Answer: A) Public Accounts Committee

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

2 2844
Q:

Why should you use the Ad Preview and Diagnosis tool to check if your ads are live and running on Google?

Answer

By searching for keywords that trigger your ad, you can rack up impressions without clicks, which may lower your Click-Through Rate, which may prevent your ad from appearing as often as it is eligible.

Report Error

View answer Workspace Report Error Discuss

0 2843
Q:

What travels around the world but stays in one spot?

Answer

Therefore the answer for What travels around the world but stays in one spot is STAMP or any other thing that acts as a stamp does.


Ex. the letter in the envelope etc...


 


Since, Several things have the possibility, but the word travel evokes that it would move. 

Report Error

View answer Workspace Report Error Discuss

4 2842
Q:

The coil wire in the electric room heater or electric cooking heater is called __________.

A) Circuit B) Element
C) Filament D) Cells
 
Answer & Explanation Answer: B) Element

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

2 2842