Questions

Q:

What carries Blood back to the Heart?

A) Veins B) Arteries
C) Both A & B D) None
 
Answer & Explanation Answer: A) Veins

Explanation:

Veins carries Blood back from the body parts to the Heart.

 

We know that The circulatory system of our body is a loop. The Heart is the pump, the arteries and their smaller branches (arterioles) carry oxygen rich blood all through your body and the veins and their smaller branches (venules) carry oxygen depleted blood and waste products back.

Report Error

View Answer Report Error Discuss

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

3 2744
Q:

In which body cavities are the lungs located

A) Pelvic cavity B) Thoracic cavity
C) Abdominal cavity D) Body cavity
 
Answer & Explanation Answer: B) Thoracic cavity

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2743
Q:

In the given question, a part of the sentence is printed in bold. Below the sentence, three alternatives to the bold part are given which may help improve the sentence. Choose the option that reflects the correct use of the phrase in the context of the sentence. In case the given sentence is correct, your answer is (E) i.e. No correction required.

Monu and Sonu attempted to make light their difficulties, but it was obvious that things were going badly for them.

i attempted to make their difficulties light

ii has attempted to make light their difficulties

iii attempted to make light of their difficulties

A) Only I B) Only ii
C) Only iii D) Both ii and iii
 
Answer & Explanation Answer: C) Only iii

Explanation:
The correct option is 3 because the correct phrase that should be used here is ‘make light of their difficulties.’ It means ‘trying to treat something as though it is not serious or important, when it in fact is.
Report Error

View Answer Report Error Discuss

Filed Under: English

2 2743
Q:

Major fructose sources include

A) breads and cereals B) beer and liquor
C) milk and cheese D) fruits and honey
 
Answer & Explanation Answer: D) fruits and honey

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2743
Q:

What was the name of the mission that first landed men on the moon?

Answer

Apollo 11

Report Error

View answer Workspace Report Error Discuss

0 2742
Q:

Write a c program for binary search.

Answer

#include<stdio.h>
int main(){

    int a[10],i,n,m,c=0,l,u,mid;

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

    printf("Enter the elements in ascending order: ");
    for(i=0;i<n;i++){
         scanf("%d",&a[i]);
    }

    printf("Enter the number to be search: ");
    scanf("%d",&m);

    l=0,u=n-1;
    while(l<=u){
         mid=(l+u)/2;
         if(m==a[mid]){
             c=1;
             break;
         }
         else if(m<a[mid]){
             u=mid-1;
         }
         else
             l=mid+1;
    }
    if(c==0)
         printf("The number is not found.");
    else
         printf("The number is found.");

    return 0;
}

Sample output:
Enter the size of an array: 5
Enter the elements in ascending order: 4 7 8 11 21
Enter the number to be search: 11
The number is found.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2742
Q:

Name the sea demoness known for trapping birds by illusion, who tried to obstruct Hanuman on his way to Lanka?

Answer

Simhika

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Culture

33 2741
Q:

Factors that aid venous return include all except

A) pressure changes in the thorax B) urinary output
C) activity of skeletal muscles D) venous valves
 
Answer & Explanation Answer: B) urinary output

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2741