Questions

Q:

The light reactions of photosynthesis supply the calvin cycle with

A) CO2and ATP B) ATP and NADPH
C) light energy D) H2O and NADPH
 
Answer & Explanation Answer: B) ATP and NADPH

Explanation:

The light reactions of photosynthesis supply the calvin cycle with ATP and NADPH.

Report Error

View Answer Report Error Discuss

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

3 2503
Q:

What is meant by Maskable interrupts?

Answer

An interrupt that can be turned off by the programmer is known as Maskable interrupt.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2502
Q:

A word i know, six letters it contains, subtract just one and twelve remains. What is it?

Answer

DOZENS.


If we remove 'S' from it, it is DOZEN which tells that 12.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

2 2502
Q:

Write a c program for merge sort.

Answer

#include
#define MAX 50

void mergeSort(int arr[],int low,int mid,int high);
void partition(int arr[],int low,int high);

int main(){
  
    int merge[MAX],i,n;

    printf("Enter the total number of elements: ");
    scanf("%d",&n);

    printf("Enter the elements which to be sort: ");
    for(i=0;i<n;i++){
         scanf("%d",&merge[i]);
    }

    partition(merge,0,n-1);

    printf("After merge sorting elements are: ");
    for(i=0;i<n;i++){
         printf("%d ",merge[i]);
    }

   return 0;
}

void partition(int arr[],int low,int high){

    int mid;

    if(low<high){
         mid=(low+high)/2;
         partition(arr,low,mid);
         partition(arr,mid+1,high);
         mergeSort(arr,low,mid,high);
    }
}

void mergeSort(int arr[],int low,int mid,int high){

    int i,m,k,l,temp[MAX];

    l=low;
    i=low;
    m=mid+1;

    while((l<=mid)&&(m<=high)){

         if(arr[l]<=arr[m]){
             temp[i]=arr[l];
             l++;
         }
         else{
             temp[i]=arr[m];
             m++;
         }
         i++;
    }

    if(l>mid){
         for(k=m;k<=high;k++){
             temp[i]=arr[k];
             i++;
         }
    }
    else{
         for(k=l;k<=mid;k++){
             temp[i]=arr[k];
             i++;
         }
    }
  
    for(k=low;k<=high;k++){
         arr[k]=temp[k];
    }
}


Sample output:

Enter the total number of elements: 5
Enter the elements which to be sort: 2 5 0 9 1
After merge sorting elements are: 0 1 2 5 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2501
Q:

Ancient music was produced by what type of culture?

A) modem B) large
C) literate D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:
Report Error

View Answer Report Error Discuss

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

11 2501
Q:

The question below consists of a set of labelled sentences. These sentences, when properly sequenced form a coherent paragraph. Select the most logical order of sentences from among the options.


P-And slowly, you reach the pinnacle of self-awareness, experiencing a unity with all life.
Q-If you transform your energy positively, it naturally becomes compassion and love.
R-Once you experientially are a part of everything then nobody needs to teach you morality.
S-Then you can do something to improve the situation, but without anger.

A) PQRS B) QPRS
C) RQPS D) RSPQ
 
Answer & Explanation Answer: B) QPRS

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2501
Q:

Gases in the atmosphere and their percentages?

Answer

The air around us is a mixture of gases, mainly nitrogen and oxygen, but containing much smaller amounts of water and other gases.


Earth's atmosphere is composed of many gases. Their percentages by volume is given by::


 
78% Nitrogen,


21% Oxygen,


0.9% Argon, and


0.03% Carbon dioxide 


And very small percentages of other elements.


 

Report Error

View answer Workspace Report Error Discuss

Subject: General Science Exam Prep: AIEEE , Bank Exams , GATE
Job Role: Analyst , Bank Clerk , Bank PO

1 2501
Q:

Which one among the following stars is nearest to the earth?

A) Proxima Centauri B) Sirius
C) Arcturus D) Spica
 
Answer & Explanation Answer: A) Proxima Centauri

Explanation:

Proxima Centauri is the nearest star to the Earth.

Report Error

View Answer Report Error Discuss

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

14 2501