Questions

Q:

Which is the only gem of world made of a single element?

A) Platinum B) Diamond
C) Emerald D) Ruby
 
Answer & Explanation Answer: B) Diamond

Explanation:

The only gem of world made of a single element is Diamond.

the_only_gem_of_world_made_of_a_single_element1563602197.jpg image

Report Error

View Answer Report Error Discuss

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

6 2645
Q:

Most pathogenic bacteria are thermophiles.

A) TRUE B) FALSE
Answer & Explanation Answer: B) FALSE

Explanation:

The given statement that "Most pathogenic bacteria are thermophiles" is FALSE.

Report Error

View Answer Workspace Report Error Discuss

Subject: General Science
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

0 2645
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 2644
Q:

China and Pakistan air forces have launched _________ joint air exercise in China.

A) Black Flag B) Desert Eagle
C) Red Flag D) Shaheen
 
Answer & Explanation Answer: D) Shaheen

Explanation:

The air forces of China and Pakistan began a joint training exercise SHAHEEN and deployed their latest fighter jets and AWACS aircraft. 

Report Error

View Answer Report Error Discuss

Filed Under: World Geography
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

9 2644
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 2643
Q:

Who is the new president and CEO of Nokia?

Answer

Rajeev Suri

Report Error

View answer Workspace Report Error Discuss

2 2643
Q:

"Go Back to Vedas" Who gave this motto?

A) Swami Dayananda Saraswati B) Ramkrishna Paramahamsa
C) Swami Vivekananda D) None of the above
 
Answer & Explanation Answer: A) Swami Dayananda Saraswati

Explanation:

The founder of Arya Samaj, Swami Dayananda Saraswati gave the motto "Go Back to Vedas" to propagate the true knowledge of Vedas.

Report Error

View Answer Report Error Discuss

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

0 2643
Q:

Choose the sentence that contains a relative pronoun?

A) That is my books bag B) Some boys are coming for tution
C) The girl, whom you have met yesterday is my sister D) Those are not your things
 
Answer & Explanation Answer: C) The girl, whom you have met yesterday is my sister

Explanation:

Here in the given options, The girl, whom you have met yesterday is my sister is the sentence which has relative pronoun.

 

The pronoun which is used to connect a clause or phrase to a noun or pronoun is called as relative pronoun.

 

The most common relative pronouns are who, whom, whose, which, and that. Sometimes when and where can also be used as relative pronouns.

Report Error

View Answer Report Error Discuss

1 2643