Questions

Q:

Cells with similar markers stick together and function as

A) Organs B) Tissues
C) Systems D) Organisms
 
Answer & Explanation Answer: B) Tissues

Explanation:

A tissue is an ensemble of similar cells and their extracellular matrix from the same origin that together carry out a specific function.

 

Hence, Cells with similar markers stick together and function as tissues.

Report Error

View Answer Report Error Discuss

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

2 2644
Q:

In 1921,during which one of the following tours, Gandhiji shaved his head and began wearing loincloth in order to identity with the poor?

A) Ahmadabad B) Champaran
C) Chauri Chaura D) South India
 
Answer & Explanation Answer: D) South India

Explanation:

On 22nd September 1921, Gandhi made a momentous decision to change his attire. From the elaborate Gujarati attire, he decided on a simple dhoti and shawl. This epoch-making decision was taken by Gandhiji in Madurai after he decided that he has to work for and with the with the poor people of India and how can he identify with them if he wears different clothes from them.

Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

6 2643
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 2643
Q:

Who is the new president and CEO of Nokia?

Answer

Rajeev Suri

Report Error

View answer Workspace Report Error Discuss

2 2643
Q:

"Go Back to Vedas" Who gave this motto?

A) Swami Dayananda Saraswati B) Ramkrishna Paramahamsa
C) Swami Vivekananda D) None of the above
 
Answer & Explanation Answer: A) Swami Dayananda Saraswati

Explanation:

The founder of Arya Samaj, Swami Dayananda Saraswati gave the motto "Go Back to Vedas" to propagate the true knowledge of Vedas.

Report Error

View Answer Report Error Discuss

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

0 2643
Q:

In e-FRRO, 'FRRO' stands for?

A) Foreigners Reacceptance Registration Office B) Foreigners Regional Registration Office
C) Foreigners Regaining Registration Office D) Foreigners Registry Registration Office
 
Answer & Explanation Answer: B) Foreigners Regional Registration Office

Explanation:

Home Minister Rajnath Singh launched the web-based application e-FRRO (e-Foreigners Regional Registration Office) scheme under which foreigners can avail, various visa and immigration-related services online. This will facilitate hassle-free travel to India for foreigners.

Report Error

View Answer Report Error Discuss

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

1 2642
Q:

Which of the following does not occur during Mitosis?

A) spindle formation B) condensation of the chromosomes
C) breakdown of the nuclear membrane D) replication of the DNA
 
Answer & Explanation Answer: D) replication of the DNA

Explanation:

Replication of the DNA does not occur during Mitosis.

Report Error

View Answer Report Error Discuss

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

2 2642
Q:

What process immediately preceeded protein synthesis at the ribosome?

A) transcription B) replication
C) translation D) duplication
 
Answer & Explanation Answer: A) transcription

Explanation:

Protein synthesis at the ribosome is immediately preceeded by the transcription process.

Report Error

View Answer Report Error Discuss

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

3 2641