Questions

Q:

What two things can you never eat for breakfast?

A) Lunch B) Dinner
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:

We can never eat lunch and dinner for our breakfast.

Report Error

View Answer Report Error Discuss

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

0 2752
Q:

If you have a keyword with a low CTR, what can you expect?

Answer

A lower Quality Score on the Search Network.

Report Error

View answer Workspace Report Error Discuss

0 2752
Q:

 When was Bulkan War II fought ?

A) 1912 B) 1913
C) 1914 D) 1915
 
Answer & Explanation Answer: B) 1913

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World History

0 2752
Q:

Capitalism is characterized by which of the following?

A) Profits B) A market economy
C) Privately owned businesses D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:

Capitalism is an economic system followed by a country or a society which is characterized by Privately owned businesses, a market economy and profits.


Capitalism is defined as "production for exchange" driven by the desire for personal accumulation of money receipts in such exchanges, mediated by free markets. The markets themselves are driven by the needs and wants of consumers and those of society as a whole in the form of the bourgeois state.

Report Error

View Answer Report Error Discuss

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

0 2752
Q:

Gamma rays are emanations that have

A) charge but no mass B) neither mass nor charge
C) both mass and charge D) mass but no charge
 
Answer & Explanation Answer: B) neither mass nor charge

Explanation:

A gamma ray or gamma radiation, is a penetrating electromagnetic radiation arising from the radioactive decay of atomic nuclei. It consists of the shortest wavelength electromagnetic waves and so imparts the highest photon energy.

Gamma rays are emanations that have neither mass nor charge.

Report Error

View Answer Report Error Discuss

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

4 2750
Q:

The primary agent of contact metamorphism is

A) Temperature B) Pressure
C) Weathering D) Flowing water
 
Answer & Explanation Answer: A) Temperature

Explanation:

The primary agent of contact metamorphism is heat or temperature.

Report Error

View Answer Report Error Discuss

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

2 2749
Q:

Who is the new president and CEO of Nokia?

Answer

Rajeev Suri

Report Error

View answer Workspace Report Error Discuss

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