Questions

Q:

Homology is evidence of

A) Common ancestry B) Divergent evolution
C) Punctuated evolution D) Convergent evolution
 
Answer & Explanation Answer: A) Common ancestry

Explanation:

In biology, Homology is defined as any characteristic of biological organisms that is derived from a common ancestor. 

 

Hence, Homology is evidence of Common ancestry.

Report Error

View Answer Report Error Discuss

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

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

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

The question below consists of a set of labelled sentences. Out of the four options given, select the most logical order of the sentences to form a coherent paragraph.

But this does not mean

X-phenomena to the body
Y-is a meaningless expression
Z-that the reference of mental

A) YZX B) ZXY
C) YXZ D) XZY
 
Answer & Explanation Answer: B) ZXY

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2334
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 2333
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:

What is source route?

Answer

It is a sequence of IP addresses identifying the route a datagram must follow. A source route may optionally be included in an IP datagram header

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

1 2332
Q:

In each of the questions, four alternatives are given for the Idiom/Phrase. Choose the alternative which best expresses the meaning of the Idiom/Phrase and click the button corresponding to it.

Cat­nap

A)  Rest B) Fitful sleep
C)  Long sleep D)  Short sleep
 
Answer & Explanation Answer: D)  Short sleep

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: TOEFL , GRE , CAT

0 2332