Questions

Q:

When is International Day of Non-Violence,recognized by the UN,observed on M.K.Gandhi's birthday is observed

A) December 11 B) November 29
C) October 2 D) Second wednesday of october
 
Answer & Explanation Answer: C) October 2

Explanation:
Report Error

View Answer Report Error Discuss

1 2666
Q:

Of outstanding significance

A) Ominous B) Monumental
C) Evident D) Rational
 
Answer & Explanation Answer: B) Monumental

Explanation:

The one word substitution for Of outstanding significance is monumental which has a meaning of great in importance, in size or any such characteristic.

Report Error

View Answer Report Error Discuss

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

0 2666
Q:

Atoms Are Composed Of

A) Electrons and Protons B) Protons and Nuclei
C) Only Electrons D) Electrons and Nuclei
 
Answer & Explanation Answer: D) Electrons and Nuclei

Explanation:

Atoms are composed of Electrons, protons and Neutrons. Protons and Neutrons together called as Nuclei.

Report Error

View Answer Report Error Discuss

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

13 2666
Q:

Rihand dam is located in which of the following states?

A) Uttarakhand B) Uttar Pradesh
C) Telangana D) Arunachal Pradesh
 
Answer & Explanation Answer: B) Uttar Pradesh

Explanation:

Rihand damalso known as Govind Ballabh Pant Sagar is located in Uttar Pradesh on Rihand river

Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

2 2665
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 2664
Q:

Who is shakespeare of India?

A) Kalidasa B) Ramadasu
C) Yesudas D) Devadas
 
Answer & Explanation Answer: A) Kalidasa

Explanation:

Mahakavi Kalidasa is known as shakespeare of India.

who_is_known_as_shakespeare_of_India1542194648.jpg image

Report Error

View Answer Report Error Discuss

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

2 2663
Q:

The world's fastest elevator that can operate at a record speed of 1,260 meters per minute is set to be installed in ___________.

A) Japan B) Spain
C) China D) Italy
 
Answer & Explanation Answer: C) China

Explanation:

The world's fastest elevator that can operate at a record speed of 1,260 meters per minute is set to be installed in a skyscraper complex in China. The elevator has various safety features including brake equipment that uses materials with high heat resistance. Apart from this, the elevator can absorb vibration during the high-speed operation to make the ride comfortable.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

2 2662
Q:

Recently deleted files are stored in

A) Taskbar B) My Computer
C) Recycle Bin D) Desktop
 
Answer & Explanation Answer: C) Recycle Bin

Explanation:

Deleted files are not permanently removed from the hard drive or the computers memory. Before they are permanently removed from the system they are stored in Recycle Bin. Recycle Bin is a folder or directory where deleted items are temporarily stored. It is also called as trash.

Report Error

View Answer Report Error Discuss

6 2662