Questions

Q:

Who is known as the Lady with the Lamp?

Who_is_known_as_the_Lady_with_the_Lamp1552997950.jpg image

A) Indira Gandhi B) Joan of Arc
C) Florence Nightingale D) Sarojini Naidu
 
Answer & Explanation Answer: C) Florence Nightingale

Explanation:

Florence Nightingale is known as the Lady with the Lamp. She got the name 'The Lady with the Lamp' because she would visit soldiers at night with a small lantern in her hand.

Report Error

View Answer Report Error Discuss

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

1 2570
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 2569
Q:

What is the capital city of Cambodia?

A) Phnom Penh B) Hanoi
C) Lamur D) Bangkok
 
Answer & Explanation Answer: A) Phnom Penh

Explanation:

Cambodia Capital- Phnom Penh, Currency- Cambodian riel.

Report Error

View Answer Report Error Discuss

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

7 2568
Q:

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

Answer

Anirudh Bhattacharyya

Report Error

View answer Workspace Report Error Discuss

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

Which one of the following elements cannot be detected by "Lassaigne's test"?

A) I B) Cl
C) S D) F
 
Answer & Explanation Answer: D) F

Explanation:

The sodium fusion test, or Lassaigne's test, is used in elemental analysis for the qualitative determination of the presence of foreign elements, namely halogens, nitrogen, and sulphur, in an organic compound. It was developed by J. L. Lassaigne.Silver fluoride is soluble in water and does not precipitate and thus this method cannot be used for detection of fluorine.

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

2 2567
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 2566
Q:

One of the following companies does have business interest in both oil and shipping sectors. Identify this.

A) Tata Group B) Reliance Group
C) Essar Group D) ONGC
 
Answer & Explanation Answer: C) Essar Group

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Business Awareness

6 2566