Questions

Q:

Vertebrates and tunicates share 

A) a notochord and a dorsal, hollow nerve cord. B) the formation of structures from the neural crest.
C) jaws adapted for feeding. D) an endoskeleton that includes a skull.
 
Answer & Explanation Answer: A) a notochord and a dorsal, hollow nerve cord.

Explanation:
Report Error

View Answer Report Error Discuss

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

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

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:

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:

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:

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:

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:

The hot holding temperature for potentially hazardous foods must be

A) not less than 60 deg B) less than 60 deg
C) less than 5 deg D) None of the above
 
Answer & Explanation Answer: A) not less than 60 deg

Explanation:

Potentially hazardous foods are foods that might contain food poisoning bacteria and are capable of supporting growth of these bacteria or formation of toxins to levels that are unsafe for consumers, if the foods are not stored at correct temperatures. Toxins are poisonous chemicals produced by some types of bacteria.


The food can be left at room temperature until it reaches 60 deg C because food-poisoning bacteria will not multiply at 60 deg C or above. However, do not leave food cooling at room temperature unless you are sure that the temperature of the food is still at least above 60 C.

Report Error

View Answer Report Error Discuss

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

3 2332