Questions

Q:

Which is the first Sanskrit film produced in India

Answer

Adi Sankara

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Culture

42 2333
Q:

What gets bigger the more you take away?

Answer

A Hole gets bigger and bigger as you take more away from it.

Report Error

View answer Workspace Report Error Discuss

6 2333
Q:

The three - time Formula One champion who passed away recently

Answer

Sir Jack Brabham

Report Error

View answer Workspace Report Error Discuss

0 2332
Q:

Which key is used for the last action?

A) Ctrl + D B) Alt + Z
C) Ctrl + Z D) Alt + D
 
Answer & Explanation Answer: C) Ctrl + Z

Explanation:

For undo the action or last action [Ctrl + Z] is used.

Report Error

View Answer Report Error Discuss

7 2332
Q:

Match the correct Memory units.

 

 

A) a-r, b-p, c-s, d-q B) a-p,b-s, c-q, d-r
C) a-r, b-s, c-q, d-p D) a-r, b-q, c-s, d-p
 
Answer & Explanation Answer: A) a-r, b-p, c-s, d-q

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

4 2332
Q:

What is a primary benefit of location targeting?

Answer

The ability to target combinations of countries, territories, and regions.

Report Error

View answer Workspace Report Error Discuss

0 2331
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 2330
Q:

An olfactory stimulus travels from receptor to

A) amygdala B) pons
C) olfactory bulb D) thalamus
 
Answer & Explanation Answer: C) olfactory bulb

Explanation:

The olfactory system is the only system in which the receptors send their signal directly to the higher brain and bypass the thalamus, which normally acts as a filter for the processes of the lower brain.

An_olfactory_stimulus_travels_from_receptor_to1559025542.jpg image

Report Error

View Answer Report Error Discuss

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

1 2330