Questions

Q:

Many European empires arose in the wake of

A) the expansion of African kingdoms like the Ghana B) Mongol invasions throughout the region
C) Hun invasions that triggered a mass migration D) the collapse of the Byzantine Empire
 
Answer & Explanation Answer: D) the collapse of the Byzantine Empire

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2334
Q:

Animals in the Taiga and Alpine Biomes hibernate during winter.

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

True, Animals in the Taiga and Alpine Biomes hibernate during winter.


 


The animals in taiga and alpine biomes have several different kind of adaptations for survival. Some animals that hibernate during the winter take the help of camouflage to protect itself from enemies. During this period of hibernation, they slow their rate of metabolism and also use less amount of energy to survive the harsh weather.

Report Error

View Answer Workspace Report Error Discuss

Subject: Animals and Birds
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

5 2334
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 2333
Q:

Project Management Processes

What is the underlying concept for the interaction among the project management processes?

Answer

Plan-do-check-act cycle

Report Error

View answer Workspace Report Error Discuss

0 2333
Q:

Difference between Union and Union all?

Answer

The difference between Union and Union all is that Union all will not eliminate duplicate rows, instead it just pulls all rows from all tables fitting your query specifics and combines them into a table. A UNION statement effectively does a SELECT DISTINCT on the results set.

Report Error

View answer Workspace Report Error Discuss

10 2333
Q:

In the following question, out of the four alternatives, select the alternative which best expresses the meaning of the idiom/phrase.

Lend me your ear

A) To politely ask for someone's full attention B) Begging someone to listen to your grievances
C) When nobody is willing to hear your side of the story D) Call someone for severe scolding.
 
Answer & Explanation Answer: A) To politely ask for someone's full attention

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2333
Q:

"Sultan Johor Cup" is associated with ______.

A) Hockey B) Cricket
C) Football D) Golf
 
Answer & Explanation Answer: A) Hockey

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

0 2332
Q:

Time period of a seconds pendulum is

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

Explanation:

A seconds pendulum is a pendulum whose period is precisely two seconds i.e, one second for a swing in one direction and one second for the return swing.

Report Error

View Answer Report Error Discuss

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

4 2331