Questions

Q:

The concept of net domestic investment refers to

A) the difference between the market value and book value of outstanding capital stock. B) total investment less the amount of investment goods used up in producing the year's output.
C) the amount of machinery and equipment used up in producing the GDP in a specific year. D) gross domestic investment less net exports.
 
Answer & Explanation Answer: B) total investment less the amount of investment goods used up in producing the year's output.

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2242
Q:

Which of the following is an example of chemical weathering?

A) Oxidation B) Acid rains
C) Carbonation D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:

Chemical weathering is what happens when rocks are broken down and chemically altered.

Chemical weathering is the breakdown of rocks by chemical reactions. Chemical weathering involves changes in the chemical composition of the existing rock to form new rock. Some examples of chemical weathering are hydrolysis, oxidation, carbonation, dissolution, etc.

Report Error

View Answer Report Error Discuss

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

1 2242
Q:

The current atomic model would be revised if 

A) better microscopes are invented in the future B) a new element is discovered in the future
C) better microscopes were being used to study its structure D) new information about an atoms structure is discovered
 
Answer & Explanation Answer: D) new information about an atoms structure is discovered

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2242
Q:

A lunar eclipse occurs when

A) The Sun, the Earth and the Moon are in a straight line B) The Moon, and The Earth are in a straight line
C) The Sun and the Earth are in a straight kine D) The Sun and the Moon are in a straight line
 
Answer & Explanation Answer: A) The Sun, the Earth and the Moon are in a straight line

Explanation:

An eclipse happens when a planet or a moon gets in the way of the sun's light. Our planet Earth experiances two types of eclipses. They are Solar and Lunar eclipses.

 

Solar Eclipse : This occurs when The Sun, the Moon and the Earth are in a straight line. The moon being in middle blocks sun rays falling on the Earth.

 

Lunar Eclipse : The Sun, the Earth and the Moon are in a straight line. The Earth being in middle and moon in the shadow of Earth behind it.

a_lunar_eclipse_occurs_when1560750613.jpg image

Report Error

View Answer Report Error Discuss

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

2 2241
Q:

Someone who has consumed a lot of alcohol

A) Is never to blame for being sexually assaulted B) May need help getting out of a potentially dangerous situation
C) Is not capable of giving true consent D) All of the above
 
Answer & Explanation Answer: C) Is not capable of giving true consent

Explanation:

Someone_who_has_consumed_a_lot_of_alcohol1537254995.jpg image

 

Someone who has consumed a lot of alcohol were not capable of giving true consent.

Report Error

View Answer Report Error Discuss

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

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

The delegate who created the compromise for the constitution was

A) Alexander Hamilton B) William Paterson
C) James Madison D) Roger Sherman
 
Answer & Explanation Answer: D) Roger Sherman

Explanation:

Roger Sherman, is the delegate who created the compromise for the U.S constitution.

the_delegate_who_created_the_compromise_for_the_constitution_was1537502237.jpg image

Report Error

View Answer Report Error Discuss

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

2 2241
Q:

To evaluate a piece of media means to

A) disseminate the contents to a wide audience B) communicate the information to a group of people
C) express the main idea in a clear and specific way D) judge the purpose and message in a thoughtful way
 
Answer & Explanation Answer: D) judge the purpose and message in a thoughtful way

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2240