Questions

Q:

How many non regional members are there in the African development Bank

A) 24 B) 23
C) 25 D) 27
 
Answer & Explanation Answer: C) 25

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

1 2681
Q:

When is International Day of Non-Violence,recognized by the UN,observed on M.K.Gandhi's birthday is observed

A) December 11 B) November 29
C) October 2 D) Second wednesday of october
 
Answer & Explanation Answer: C) October 2

Explanation:
Report Error

View Answer Report Error Discuss

1 2681
Q:

Glass is a.........mixture of metallic...........

A) homogenous, sulphates B) homogenous, silicates
C) heterogenous, carbonates D) heterogenous, nitrates
 
Answer & Explanation Answer: B) homogenous, silicates

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

0 2680
Q:

The kidneys are stimulated to produce renin

A) when the pH of the urine decreases B) when the specific gravity of urine rises above 1.10
C) when the peritubular capillaries are dilated D) by a decrease in the blood pressure
 
Answer & Explanation Answer: D) by a decrease in the blood pressure

Explanation:

The kidneys are stimulated to produce renin by a decrease in the blood pressure.

 

The_kidneys_are_stimulated_to_produce_renin1559028461.jpg image

The renin-angiotensin system or RAS regulates blood pressure and fluid balance in the body. When blood volume or sodium levels in the body are low, or blood potassium is high, cells in the kidney release the enzyme, renin. Renin's primary function is therefore to eventually cause an increase in blood pressure, leading to restoration of perfusion pressure in the kidneys.

Report Error

View Answer Report Error Discuss

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

1 2679
Q:

' World Meteorological Day ' is observed on ?

A) March 24 B) March 23
C) March 20 D) March 25
 
Answer & Explanation Answer: B) March 23

Explanation:

Each year, the World Meteorological Organisation (WMO), its members and the worldwide meteorological community around the world celebrate World Meteorological Day on 23rd March around a chosen theme. And this year the theme is "Understanding the cloud".

Report Error

View Answer Report Error Discuss

Filed Under: Important Days and Years
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

1 2679
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 2679
Q:

Red Cross was founded by

A) J.H.Durant B) Baden Powell
C) Tygve Lie D) Frederic Passey
 
Answer & Explanation Answer: C) Tygve Lie

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

0 2679
Q:

which of the following has the longest wavelength

A) Infrared radiation B) γ-radiation
C) Ultraviolet radiation D) Visible radiation
 
Answer & Explanation Answer: A) Infrared radiation

Explanation:

Infrared radiation

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst

4 2679