Questions

Q:

Atacama  desert is located in 

A) dense forest B) grassland
C) Scrub D) all of these
 
Answer & Explanation Answer: D) all of these

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

2 2469
Q:

Sun life of Canada is operating in India in alliance with

A) AB Birla Group B) Sahara Group
C) Bermans D) Thapars
 
Answer & Explanation Answer: A) AB Birla Group

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Business Awareness

7 2468
Q:

How To improve system redundancy using its grid architecture, where in the XIV System can a partition be mirrored?

A) on same disk in different modules B) on disks in other modules
C) on different disks in the same module D) on same disk, in same module, and in different modules
 
Answer & Explanation Answer: B) on disks in other modules

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: IBM Certification

1 2468
Q:

Which city is hosting 2020 summer Olymic games?

A) Athens B) Tokyo
C) Pyeongchang D) Beijing
 
Answer & Explanation Answer: B) Tokyo

Explanation:

2020 summer Olymic games to be held in Tokyo, Japan.

Report Error

View Answer Report Error Discuss

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

3 2467
Q:

Eugenics is the study of

A) impair the racial qualities of future generations either physically or mentally B) different races of mankind
C) genetic of plants D) people of European origin
 
Answer & Explanation Answer: A) impair the racial qualities of future generations either physically or mentally

Explanation:

Eugenics is the study of altering human beings by changing their genetic components.

 

It is the study of the agencies under social control that may improve or impair the racial qualities of future generations either physically or mentally.

Report Error

View Answer Report Error Discuss

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

9 2466
Q:

Four pairs of words are given. Find the odd one out.

 

A) 5th June : World Environment Day B) 22nd April : Earth Day
C) 22nd March : World Water Day D) 22nd May : World Sparrow Day
 
Answer & Explanation Answer: D) 22nd May : World Sparrow Day

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Important Days and Years
Exam Prep: Bank Exams

1 2466
Q:

Kargil Fight held in

A) 1979 B) 1989
C) 1999 D) 1969
 
Answer & Explanation Answer: C) 1999

Explanation:

The Kargil War, also known as the Kargil conflict, was an armed conflict between India and Pakistan that took place between May and July 1999 in the Kargil district of Kashmir and elsewhere along the Line of Control (LOC). In India, the conflict is also referred to as Operation Vijay.

Report Error

View Answer Report Error Discuss

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

3 2464
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 2464