Questions

Q:

Monopotassium tartarate was used in

A) Fertiliser B) Explosives
C) Photography D) Baking
 
Answer & Explanation Answer: D) Baking

Explanation:

Monopotassium tartarate was used in baking powder.

Report Error

View Answer Report Error Discuss

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

0 2655
Q:

Which of the following is the sacred book of Judaism?

A) Old Testament B) Aporypha
C) Avesta D) Both (a) and (b)
 
Answer & Explanation Answer: D) Both (a) and (b)

Explanation:

The sacred books of judaism form the Old Testament and Aporypha. These books contain the history of the Jews and lay down the religious laws and ethics which they must follow.

Report Error

View Answer Report Error Discuss

Filed Under: World History

3 2654
Q:

The main excretory organs of insects and spiders are

A) Malphigian tubues B) Maxillary glands
C) Coxal glands D) Antennal glands
 
Answer & Explanation Answer: A) Malphigian tubues

Explanation:

The main excretory organs of insects and spiders are Malpighian tubules.

Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

3 2653
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 2653
Q:

Kala Ghoda festival, India’s largest multi-cultural street festival begins in which place?

A) Mumbai B) Kolkata
C) Thiruvananthapuram D) Panaji
 
Answer & Explanation Answer: A) Mumbai

Explanation:

The Kala Ghoda Arts Festival is annual festival, nine days long, commencing always on the first Saturday of February and closing always on the second Sunday in February, in the Kala Ghoda area of South Mumbai, India.

Report Error

View Answer Report Error Discuss

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

17 2653
Q:

Plant cells perform photosynthesis, which occurs in the

A) Nucleus B) Mitochondria
C) Cytoplasm D) Chloroplasts
 
Answer & Explanation Answer: D) Chloroplasts

Explanation:

Photosynthesis takes place inside plant cells in small things called chloroplasts.

Chloroplasts contain a green substance called chlorophyll and this absorbs the light energy needed to make photosynthesis happen.

Report Error

View Answer Report Error Discuss

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

2 2653
Q:

Which one of the following is a search engine?

A) Bing B) Reddit
C) Pinterest D) Twitter
 
Answer & Explanation Answer: A) Bing

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2653
Q:

Two metallic wires made from copper have same length but the radius of wire 1 is half of that of wire 2. The resistance of wire 1 is R. If both the wires are joined together in series, the total resistance becomes

 

A) 2R B) R/2
C) 5R/4 D) 3R/4
 
Answer & Explanation Answer: C) 5R/4

Explanation:

So, resistance of Wire 2 is R/4 as radius is half of wire 1, so area would be 4 times of wire 1.

Now for resistance in series. R= R1 + R2.

Therefore, Final R= R + R/4 = 5R/4

 

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

3 2653