Questions

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:

Yoga city in India?

A) Varanasi B) Allahabad
C) Rishikesh D) Amritsar
 
Answer & Explanation Answer: C) Rishikesh

Explanation:

Rishikesh is a city in India’s northern state of Uttarakhand. As the city is renowned as a center for studying yoga and meditation it is called as Yoga city in India.

 

Yoga_city_in_india_-_Rishikesh1561462362.jpg image

Report Error

View Answer Report Error Discuss

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

16 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:

What is hard disk and what is its purpose?

Answer

Hard disk is the secondary storage device, which holds the data in bulk, and it holds the data on the magnetic medium of the disk.Hard disks have a hard platter that holds the magnetic medium, the magnetic medium can be easily erased and rewritten, and a typical desktop machine will have a hard disk with a capacity of between 10 and 40 gigabytes. Data is stored onto the disk in the form of files.

Report Error

View answer Workspace Report Error Discuss

0 2662
Q:

The International Court of Justice was established in the year

A) 1947 B) 1946
C) 1950 D) 1948
 
Answer & Explanation Answer: B) 1946

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

2 2662
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