Questions

Q:

The right ventricle transports oxygenated blood to the lungs.

A) TRUE B) FALSE
Answer & Explanation Answer: B) FALSE

Explanation:

The right ventricle transports deoxygenated blood to the lungs, where the oxygenation takes place.


Hence, the given statement is FALSE.

Report Error

View Answer Workspace Report Error Discuss

Subject: Biology
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

2 2698
Q:

Which airport becomes as International Airport recently in 2017 ?

A) Chennai B) Kolkata
C) Vijayawada D) Patna
 
Answer & Explanation Answer: C) Vijayawada

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk

3 2698
Q:

If there is a lock on an adjacent key, an insert will fail if the isolation level is set to what?

A) committed read B) repeatable read
C) share read D) indexed read
 
Answer & Explanation Answer: B) repeatable read

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: IBM Certification

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

The greenhouse effect is caused by

A) Deforestation B) Burning of Fossil Fuels
C) Increase in Population D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

The major greenhouse gases (GHG’s) solely responsible for greenhouse effect are Carbon dioxide, Ozone, Methane and Water vapor. Although these gases comprise 1% of our atmosphere, they act like a thick warm blanket outside that surrounds this planet and regulate climate control. Greenhouse effect is not bad. In fact, it is needed for all of us to survive on planet Earth. In short, the greenhouse effect is nothing but a naturally occurring process designed by nature that aids in heating earth’s surface and helps to maintain ecological balance.

Now, while some of that heat dissipates into space, some of it burns along the atmosphere, and some of it penetrates the atmosphere and finds its way into the lower atmosphere and the planet’s surface. This in turn raises the average temperature of the Earth. Therefore, the increase in the Earth’s surface temperature due to increase in the number of greenhouse gases leads to global warming.

 

Causes of Green House Effects ::

 

* Burning of Fossil Fuels

* Deforestation 

* Increase in Population

* Farming

* Industrial Waste and Landfills.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

5 2695
Q:

A person who knows many foreign languages

A) Grammarian B) Polyglot
C) Linguist D) Bilingual
 
Answer & Explanation Answer: C) Linguist

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

1 2695
Q:

The preamble to our constitution provided that India is

A) a sovereign, socialist, secular and democratic republic B) a sovereign republic with a socialist pattern of society
C) a socialist, secular and democratic republic D) a sovereign, socialist and democratic republic
 
Answer & Explanation Answer: A) a sovereign, socialist, secular and democratic republic

Explanation:

The Preamble was adopted with the constitution in the constituent assembly.

 

The Preamble proclaims the solemn resolution of the people of India to constitute India into a 'Sovereign socialist secular democratic republic'.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

2 2695
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 2695