Questions

Q:

Who is called 'the father of modern African writing " novelist?

Answer

Chinua Achebe.

Report Error

View answer Workspace Report Error Discuss

1 2316
Q:

Which of the following defines a genome?

A) Every human cell B) the complete set of an organism's genes and other DNA sequences
C) the complete set of an organism's polypeptides D) a karyotype
 
Answer & Explanation Answer: B) the complete set of an organism's genes and other DNA sequences

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2316
Q:

What is a Multi-homed Host?

Answer

It is a host that has a multiple network interfaces and that requires multiple IP addresses is called as a Multi-homed Host

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

1 2316
Q:

Which one of the following is the cause for a change in the season?

A) Earth’s Rotation and Revolution B) Earth’s Rotation
C) Earth’s Revolution D) None of the above
 
Answer & Explanation Answer: C) Earth’s Revolution

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2315
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 2314
Q:

The NAM sumit which demanded expansion of the United Nation Security Council had met at

A) Cairo B) Jakarta
C) Teheran D) Harare
 
Answer & Explanation Answer: B) Jakarta

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

1 2314
Q:

Gametes are produced by the process of

A) Mitosis B) Meiosis
C) Both A & B D) None of the above
 
Answer & Explanation Answer: B) Meiosis

Explanation:

A gametes are haploid cells as they have only one set of chromosomes. Meiosis is a process of cellular reproduction in which both male and female gametes are formed. During meiosis, the DNA is only replicated or copied one time.

Gametes_are_produced_by_the_process_of1560944987.png image

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE
Job Role: Analyst

3 2314
Q:

At which stage in its life cycle does the silkworm yield the fiber of commercial use

A) Larva B) Egg
C) Pupa D) Imago
 
Answer & Explanation Answer: C) Pupa

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

3 2313