Questions

Q:

Who is the author of the book 'The Candidate'.

Answer

Anirudh Bhattacharyya

Report Error

View answer Workspace Report Error Discuss

1 2574
Q:

Which alternative energy source is exhaustible?

A) tidal energy B) wind energy
C) solar energy D) geothermal energy
 
Answer & Explanation Answer: D) geothermal energy

Explanation:

Based on conventionality in deriving energy, energy sources could be classified as

 

Conventional ::

coal, oil, hydro, nuclear, etc... sources which can be used up or exhaustible.

(and)

Non - conventional ::

solar, wind, tidal, geothermal, biogas, etc... sources which are not exhausted.

 

Among the given options, Geothermal energy is the alternative energy source among all the choices that are given in the question, that is exhaustible.

Report Error

View Answer Report Error Discuss

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

4 2574
Q:

Pain controlling chemicals in the body are called

A) Endorphins B) Neural regulators
C) Androgens D) Histamines
 
Answer & Explanation Answer: A) Endorphins

Explanation:

Endorphins are called pain controlling chemicals in the body.

Report Error

View Answer Report Error Discuss

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

3 2573
Q:

Synonym of Sad?

A) Glad B) Lucky
C) Somber D) Fortunate
 
Answer & Explanation Answer: C) Somber

Explanation:

Sad means being unhappy, sorrowful, mournful, wistful,...

 

Hence, Somber means cheerless i.e, unhappy which is synonym of sad. All other options are opposites of Sad.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , CAT , GATE , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO , IT Trainer

0 2573
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 2572
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 2572
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 2571
Q:

What are the operating system components?

Answer

- Process management


- Main memory management


- File management


- I/O system management


- Secondary storage management


- Networking


- Protection system


- Command interpreter system

Report Error

View answer Workspace Report Error Discuss

2 2571