Questions

Q:

Which one of the following statements is not correct?

A) Creation of National Investment and Infrastructure Fund (NIIF) was announced in the Union Budget, 2015-16. B) NIIF is a fund for enhancing infrastructure facility in the country.
C) NIIF and NIF (National Investment Fund) are the names of the same organization. D) NIIF can have more than one alternative investment fund.
 
Answer & Explanation Answer: C) NIIF and NIF (National Investment Fund) are the names of the same organization.

Explanation:

The cabinet Committee on Economic Affairs (CCEA) on 27th January, 2005 had approved the constitution of a National Investment Fund (NIF). The Purpose of the fund was to receive disinvestment proceeds of central public sector enterprises and to invest the same to generate earnings without depleting the corpus.

National Investment and Infrastructure Fund (NIIF) is a fund created by the Government of India for enhancing infrastructure financing in the country.

This is different from the National Investment Fund.Its creation was announced in the Union Budget 2015-16. The operational framework was approved on 20 August 2015.NIIF got registered with SEBI as Category II Alternative Investment Fund (AIF) on December 28, 2015

 

Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

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

Independent is the newspaper founded by

A) B.R. Ambedkar B) Jawaharlal Nehru
C) Mothilal Nehru D) Bipin Chandra Pal
 
Answer & Explanation Answer: C) Mothilal Nehru

Explanation:
Report Error

View Answer Report Error Discuss

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

7 2383
Q:

What resulted from the French and Indian war?

A) British lost its Canadian territory B) France acquired its Canadian territory
C) France lost its Canadian territory D) None
 
Answer & Explanation Answer: C) France lost its Canadian territory

Explanation:

The Seven Years’ War, a global conflict known in America as the French and Indian War, ends with the signing of the Treaty of Paris by France, Great Britain, and Spain.

The Seven Years’ War ended with the signing of the treaties of Hubertusburg and Paris in February 1763. In the Treaty of Paris, France lost all claims to Canada and gave Louisiana to Spain, while Britain received Spanish Florida, Upper Canada, and various French holdings overseas. The treaty ensured the colonial and maritime supremacy of Britain and strengthened the 13 American colonies by removing their European rivals to the north and the south.

The British victory in the French and Indian War had a great impact on the British Empire. Firstly, it meant a great expansion of British territorial claims in the New World. But the cost of the war had greatly enlarged Britain's debt.

Report Error

View Answer Report Error Discuss

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

2 2383
Q:

Uranus takes _______years to orbit the sun

A) 48 B) 84
C) 50 D) 60
 
Answer & Explanation Answer: B) 84

Explanation:

Uranus is 2,870 million kilometers away from the sun and the time taken to complete one round at a speed of 6.8 km/sec is as  long as 84 years on earth

Report Error

View Answer Report Error Discuss

Filed Under: World Geography

2 2383
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 2383
Q:

What is the outcome when a cell undergoes meiosis?

A) Two haploid cells B) Four haploid cells
C) Two diploid cells D) Four diploid cells
 
Answer & Explanation Answer: B) Four haploid cells

Explanation:

When a cell undergoes meiosis process, it produces 4 haploid cells as a result.

Report Error

View Answer Report Error Discuss

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

3 2383