Questions

Q:

"Words in the Garden" festival on Gandhian philosophy is scheduled to be held in which city?

A) Hyderabad B) Pune
C) Kolkata D) New Delhi
 
Answer & Explanation Answer: D) New Delhi

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2304
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 2303
Q:

The ore which is found in abundance in India is

A) fluorspar B) magnetite
C) monazite D) bauxite
 
Answer & Explanation Answer: C) monazite

Explanation:

The ore which is found in abundance in India is monazite.

Report Error

View Answer Report Error Discuss

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

1 2303
Q:

Which amongst the following is not a component of monetary policy in India?

A) Repo rate B) Moral suasion
C) Credit Rationing D) Public Debt
 
Answer & Explanation Answer: D) Public Debt

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams

1 2302
Q:

How to get dissertation introduction writing ideas

Answer

Most of the students do not know anything about the dissertation writing and the services.So always students are depending on the dissertation writing services.Students can get the dissertation introduction writing ideas from the dissertation writing services, this will benefit for your future.

Report Error

View answer Workspace Report Error Discuss

0 2302
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:

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