Questions

Q:

Which event occurs during interphase?

A) Centrioles appear B) Spindle fibers begin to form
C) The cell grows D) Centromeres divide
 
Answer & Explanation Answer: C) The cell grows

Explanation:

The cell carries out the metabolic processes and it grows during interphase.

The cell cycle has three phases that must occur before mitosis, or cell division happens. These three phases are collectively known as interphase. They are G1, S, and G2.

Report Error

View Answer Report Error Discuss

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

2 2724
Q:

What is the first step in Photosynthesis?

A) Formation of ATP B) Joining of 3-carbon atom to form glucose
C) Ionization of water D) Excitement of an electron of chlorophyll photon of light
 
Answer & Explanation Answer: D) Excitement of an electron of chlorophyll photon of light

Explanation:

The first step in Photosynthesis is Excitement of an electron of chlorophyll photon of light.

Report Error

View Answer Report Error Discuss

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

6 2724
Q:

International Day of Happiness is celebrated throughout the world on  ?

A) 21st March B) 23rd March
C) 20th March D) 19th March
 
Answer & Explanation Answer: C) 20th March

Explanation:

The International Day of Happiness (known as Happiness Day) is celebrated throughout the world on the 20th of March. The International Day of Happiness was founded on June 28, 2012, by the United Nations General Assembly when all 193 member states unanimously adopted UN resolution 66/281.

It was celebrated for the first time in 2013.

Report Error

View Answer Report Error Discuss

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

2 2723
Q:

As water is cooled from 4 deg C to 0 deg C, its density

A) increases B) decreases
C) remains same D) None of the above
 
Answer & Explanation Answer: B) decreases

Explanation:

As water is cooled from 4 deg C to 0 deg C, the water reaches its freezing point and starts forming ice crystals. Then the volume of that ice cubes increases and its density decreases. Hence, it is the reason that ice will float on water as ice has less density than the water.

Report Error

View Answer Report Error Discuss

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

6 2723
Q:

Project Life Cycle - Characteristic of Project Phases

What is a deliverable?

Answer

A deliverable is a measurable, verifiable work product such as a specification, feasibility study report, detailed design document, or working prototype.

Report Error

View answer Workspace Report Error Discuss

0 2723
Q:

In 8085 which is called as High order / Low order Rigister?

Answer

Flag is called as Low order rigister & Accumulator is called as High order Rigister.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

1 2722
Q:

Write a c program for quick sort.

Answer

#include<stdio.h>

void quicksort(int [10],int,int);

int main(){
  int x[20],size,i;

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

  printf("Enter %d elements: ",size);
  for(i=0;i<size;i++)
    scanf("%d",&x[i]);

  quicksort(x,0,size-1);

  printf("Sorted elements: ");
  for(i=0;i<size;i++)
    printf(" %d",x[i]);

  return 0;
}

void quicksort(int x[10],int first,int last){
    int pivot,j,temp,i;

     if(first<last){
         pivot=first;
         i=first;
         j=last;

         while(i<j){
             while(x[i]<=x[pivot]&&i<last)
                 i++;
             while(x[j]>x[pivot])
                 j--;
             if(i<j){
                 temp=x[i];
                  x[i]=x[j];
                  x[j]=temp;
             }
         }

         temp=x[pivot];
         x[pivot]=x[j];
         x[j]=temp;
         quicksort(x,first,j-1);
         quicksort(x,j+1,last);

    }
}

Output:
Enter size of the array: 5
Enter 5 elements: 3 8 0 1 2
Sorted elements: 0 1 2 3 8

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2722
Q:

Which of these is a starting point for primary succession?

A) a neglected yard B) a surface exposed by a retreating glacier
C) an abandoned city D) abandoned farmland
 
Answer & Explanation Answer: B) a surface exposed by a retreating glacier

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2722