Questions

Q:

What is the unit of heredity?

A) cell B) blood
C) gene D) All of the above
 
Answer & Explanation Answer: C) gene

Explanation:

Genes are units of heredity.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

1 2673
Q:

Which can disrupt the cell cycle?

A) Mutation B) Replication
C) Both A & B D) None of the above
 
Answer & Explanation Answer: D) None of the above

Explanation:

Mutations can disrupt the cell cycle, and can cause certain diseases and conditions.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst

2 2673
Q:

Which of the following is a polymer?

A) Glycerol B) Amino acid
C) Nucleic acid D) Fatty acid
 
Answer & Explanation Answer: C) Nucleic acid

Explanation:

Nucleic acid is a polymer among the given options.

Report Error

View Answer Report Error Discuss

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

1 2673
Q:

Write a c program for binary search.

Answer

#include<stdio.h>
int main(){

    int a[10],i,n,m,c=0,l,u,mid;

    printf("Enter the size of an array: ");
    scanf("%d",&n);

    printf("Enter the elements in ascending order: ");
    for(i=0;i<n;i++){
         scanf("%d",&a[i]);
    }

    printf("Enter the number to be search: ");
    scanf("%d",&m);

    l=0,u=n-1;
    while(l<=u){
         mid=(l+u)/2;
         if(m==a[mid]){
             c=1;
             break;
         }
         else if(m<a[mid]){
             u=mid-1;
         }
         else
             l=mid+1;
    }
    if(c==0)
         printf("The number is not found.");
    else
         printf("The number is found.");

    return 0;
}

Sample output:
Enter the size of an array: 5
Enter the elements in ascending order: 4 7 8 11 21
Enter the number to be search: 11
The number is found.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2673
Q:

What are the operating system components?

Answer

- Process management


- Main memory management


- File management


- I/O system management


- Secondary storage management


- Networking


- Protection system


- Command interpreter system

Report Error

View answer Workspace Report Error Discuss

2 2673
Q:

The force that generates wind is

A) Gravity force B) Pressure gradient force
C) Coriolis force D) Centrifugal force
 
Answer & Explanation Answer: B) Pressure gradient force

Explanation:

Wind is the flow of gases on a large scale. On the surface of the Earth, wind consists of the bulk movement of air. The force that generates wind is called as Pressure gradient force.

Report Error

View Answer Report Error Discuss

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

3 2673
Q:

Which statement best describes the relationship between science and technology?

A) Technology is a branch of science. B) Advances in science can lead to new technology.
C) Without technology there is no science. D) Technology is not related to science.
 
Answer & Explanation Answer: B) Advances in science can lead to new technology.

Explanation:

The aim of science is to get an understanding of the natural world, while the aim of technology is to use that understanding to improve people's lives. 

 

Hence, Advances in science can lead to new technology.

Report Error

View Answer Report Error Discuss

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

3 2672
Q:

Which of these statements is true of the kingdom protista?

A) All are unicellular B) All are hetertrophic
C) All are autotrophic D) All are eukaryotic
 
Answer & Explanation Answer: D) All are eukaryotic

Explanation:

Protists are eukaryotic organisms that cannot be classified as a plant, animal, or fungus. They are mostly unicellular, but some, like algae, are multicellular.

which_of_these_statements_is_true_of_the_kingdom_protista1536211148.jpg image

Kelp, or 'seaweed,' is a large multicellular protist that provides food, shelter, and oxygen for numerous underwater ecosystems.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

1 2672