Questions

Q:

According to Erikson, the goal of adolescence is to

A) independent identity B) explore who they are
C) both a & b D) None of the above
 
Answer & Explanation Answer: C) both a & b

Explanation:

According to psychologist Erik Erikson, Adolescence is the period of life between childhood and adulthood. They go through the psychosocial crisis of identity versus role confusion, which involves exploring who they are as individuals. During this stage, adolescents explore their independence and develop a sense of self i.e independent identity, ego nature.

Report Error

View Answer Report Error Discuss

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

4 2429
Q:

Which one of the following fishing banks is located off the coast of the United Kingdom?

A) Great Fisher Bank B) Grand Banks
C) Dogger Bank D) Reed Bank
 
Answer & Explanation Answer: C) Dogger Bank

Explanation:

Dogger Bank (Dutch: Doggersbank, German: Doggerbank, Danish: Doggerbanke) is a large sandbank.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

0 2429
Q:

Which nutrients provide energy?

A) Carbohydrates B) Proteins
C) Vitamins D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

The nutrients that provide energy are carbohydrates, proteins and vitamins. The other three nutrients--vitamins, minerals, and water do not provide energy.

Report Error

View Answer Report Error Discuss

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

1 2429
Q:

How many bones does a white shark have in it's body?

A) 0 B) 1
C) 2 D) 4
 
Answer & Explanation Answer: A) 0

Explanation:

The skeleton of the Great White Shark is made up of cartilage and connective tissue. There are no bones in a white shark's body.

Report Error

View Answer Report Error Discuss

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

0 2429
Q:

The taper on the lathe spindle is

A) 1 in 10 B) 1 in 20
C) 1 in 15 D) 1 in 25
 
Answer & Explanation Answer: B) 1 in 20

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2429
Q:

Aryabhatta and Kalidasa were in the court of which Gupta Emperor?

A) Kumara Gupta I B) Chandra Gupta II
C) Samudra Gupta D) Skanda Gupta
 
Answer & Explanation Answer: C) Samudra Gupta

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

2 2429
Q:

Which of the following is a World Bank group of five institutions

A) IMF B) IDA
C) ILO D) ITU
 
Answer & Explanation Answer: B) IDA

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

1 2428
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 2428