Questions

Q:

What was established by the Americans, the British and the Canadians at Bretton woods in 1944?

Answer

The International Monetary Fund and the international Bank for Reconstruction and development.

Report Error

View answer Workspace Report Error Discuss

0 2301
Q:

On 26thNovember, 1949, which of the following provisions of the Constitution of India came into effect?

1.Citizenship

2.Elections

3.Provisional Parliament

4.Fundamental Rights

 

Select the correct answer using the code given below.

A) 2, 3 and 4 B) 1, 2 and 3
C) 1 and 3 only D) 1 and 2 only
 
Answer & Explanation Answer: B) 1, 2 and 3

Explanation:

Some provisions of the Constitution pertaining to citizenship, elections, provisional parliament, temporary and transitional provisions, and short title contained in Articles 5, 6, 7, 8, 9, 60, 324, 366, 367, 379, 380, 388, 391, 392 and 393 came into force on November 26, 1949 itself

Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

0 2301
Q:

For an object, the state of rest is considered to be the state of ______ speed.

A) increasing B)
C) inverse D) zero
 
Answer & Explanation Answer: D) zero

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

4 2301
Q:

Write a program to generate the Fibonacci series in c?

Answer

 #include<stdio.h>
int main(){
    int k,r;
    long int i=0l,j=1,f;

    //Taking maximum numbers form user
    printf("Enter the number range:");
    scanf("%d",&r);

    printf("FIBONACCI SERIES: ");
    printf("%ld %ld",i,j); //printing firts two values.

    for(k=2;k<r;k++){
         f=i+j;
         i=j;
         j=f;
         printf(" %ld",j);
    }
 
    return 0;
}

Sample output:
Enter the number range: 15
FIBONACCI SERIES: 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2301
Q:

The headquaters of food and agriculture organisation is in

A) Paris B) Rome
C) Madrid D) Washington
 
Answer & Explanation Answer: B) Rome

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

0 2301
Q:

What is the currency of Japan?

A) yen B) dirham
C) yuan D) None of the above
 
Answer & Explanation Answer: A) yen

Explanation:

The currency of Japan is Japanese yen.

Report Error

View Answer Report Error Discuss

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

1 2300
Q:

Which is a density independent factor in controlling a population?

A) Food shortage B) Disease
C) Floods D) All of the above
 
Answer & Explanation Answer: C) Floods

Explanation:

Any factor limiting the size of a population whose effect is not dependent on the number of individuals in the population, then such factor is called Density Independent Factor. It is things that the organisms have no control over.

 

Here in the given options, food shortage and disease are factors that are dependent on the number of population but Floods have no dependency.

 

Some examples of density independent factors are :: Earth quake, fires, volcanic eruptions, floods, and  all natural calamities.

Report Error

View Answer Report Error Discuss

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

4 2300
Q:

The outermost layer of the earth is called

A) Core B) Mantle
C) Crust D) Inner core
 
Answer & Explanation Answer: C) Crust

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

6 2300