Questions

Q:

In the following question, a word has been written in four different ways out of which only one is correctly spelt. Select the correctly spelt word.

A) Forceibly B) Forciebly
C) Fourcibley D) Forcibly
 
Answer & Explanation Answer: D) Forcibly

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: CAT , GRE , TOEFL
Job Role: Bank Clerk , Bank PO

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

The origin of the tantric Yogini Cult is believed to be from

A) Uttar Pradesh B) Bihar
C) Odisha D) Rajasthan
 
Answer & Explanation Answer: C) Odisha

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

8 2428
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 2428
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 2427
Q:

Indian armed forces conducted 'Operation Meghdoot' at

A) Kargil B) Srinagar
C) Siachen D) Amritsar
 
Answer & Explanation Answer: C) Siachen

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

9 2427
Q:

What is the general formula for a straight-chain alkane?

A) C2nH2n+3. B) CnH2n+2
C) CnH2n D) CnH3n+2.
 
Answer & Explanation Answer: B) CnH2n+2

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 2427