Questions

Q:

Change in focal length of eye lens is caused by

A) ciliary muscles B) iris
C) pupil D) retina
 
Answer & Explanation Answer: A) ciliary muscles

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2375
Q:

Which must be true for metamorphism to occur?

A) The grain size must become smaller B) The process must take place underwater
C) The parent rock must be in solid form D) The parent rock must be igneous
 
Answer & Explanation Answer: C) The parent rock must be in solid form

Explanation:

Metamorphism is the method of changing the structure of a rock by using heat and temperature.

Hence, for this to happen the parent rock must be in solid form only. Therefore, option C) is true.

Report Error

View Answer Report Error Discuss

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

1 2375
Q:

Which statement about general education policy is most accurate?

A) It is set by multiple levels of the government. B) It is determined by local school boards.
C) It is controlled only by the federal government. D) It provides its funding at the state level.
 
Answer & Explanation Answer: A) It is set by multiple levels of the government.

Explanation:

General education policy is set by multiple levels of the government like Federal, state and local governments. 

Report Error

View Answer Report Error Discuss

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

1 2374
Q:

Project Management - Introduction

What is Portfolio Management?

Answer

A Portfolio is a collection of projects or programs and other work that are grouped together to facilitate effective management of that work to meet strategic business objectives.

Report Error

View answer Workspace Report Error Discuss

0 2374
Q:

What would be the output of the following program?

/* sample.c */

main ( int argc, char **argv )

{

     argc = argc - (argc -1);

     printf ("%s", argv[argc - 1]);

}

Answer

C: \SAMPLE.EXE

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2374
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 2374
Q:

Do plant cells have Mitochondria?

A) No B) Yes
C) May be D) Can't be determined
 
Answer & Explanation Answer: B) Yes

Explanation:

While plant cells have chloroplasts to photosynthesize, they also require ATP for cellular functions, and do use oxygen to break down some of the sugar they produce in order to generate that ATP. Cellular respiration takes place in the mitochondria. They need mitochondria for this reason.
Hence with this logic, we can say that Plants cells have mitochondria.

Report Error

View Answer Report Error Discuss

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

2 2374
Q:

What is Bull Market?

Answer

Bull market is that market where stock value are expected rise and people will have tendency to sell their stock so as to earn profit out of it. Thus sudden push from the suppliers will gradually niutalise the market.


 

Report Error

View answer Workspace Report Error Discuss

Subject: Finance

0 2373