Questions

Q:

The headquarters of the International Court of Justice is at

A) Geneva B) The Hague
C) Rome D) Vienna
 
Answer & Explanation Answer: B) The Hague

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

0 2346
Q:

What is Materials Requirement Planning?

Answer

A given quantity of finished goods requires a given quantity of raw materials and components to make them. Materials requirement planning systems to make them. Materials requirements planning systems are computerized tools that manage when materials must be ordered to supply production at a later date. MRP is effective when output quantities are known.Small business owners are often their own MRP systems,storing the information needed to supply prodution in their knowledge and experience. Activities such as computer tracking inventory and forecasting demand are MRP activities.

Report Error

View answer Workspace Report Error Discuss

Subject: Manufacturing

1 2346
Q:

Based on which occasion every year on 3 May National film awards are presented ?

A) Dada Sheb Falkhe Jayanthi B) Dada saheb Falke Vardhanti
C) Aalam Ara release date D) Raja Harishchandra release date
 
Answer & Explanation Answer: D) Raja Harishchandra release date

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

2 2346
Q:

In India, the oath of secrecy to union ministers is administered by whom?

 

A) The Prime Minister of India B) Comptroller and Auditor General of India
C) The President of India D) Chief Justice of India
 
Answer & Explanation Answer: C) The President of India

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

1 2346
Q:

Electromagnetic waves are transverse in nature is evident by

A) Reflection B) Polarisation
C) interference D) Diffraction
 
Answer & Explanation Answer: B) Polarisation

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2346
Q:

The President of India is elected by the __________

A) members of the Lok Sabha B) members of both Houses of the Parliament
C) members of the State Legislature D) by an electoral college consisting of the elected members of both Houses of the Parliament and state Assemblies
 
Answer & Explanation Answer: D) by an electoral college consisting of the elected members of both Houses of the Parliament and state Assemblies

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

0 2346
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 2346
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 2345