Questions

Q:

Which country is the 2nd largest importer of weapons in the world, as per 'Trends in International Arms Transfers 2018?

A) North Korea B) India
C) China D) Pakistan
 
Answer & Explanation Answer: B) India

Explanation:

India is the 2nd largest importer of weapons in the world, as per 'Trends in International Arms Transfers 2018.

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 2448
Q:

All the organisms on your campus make up

A) a community B) a group
C) an ecosystem D) None of the above
 
Answer & Explanation Answer: A) a community

Explanation:

All the organisms on your campus make up a community.

Report Error

View Answer Report Error Discuss

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

2 2448
Q:

The process of bones increasing in width is known as

A) appositional growth B) concentric growth
C) closing of the epiphyseal plate D) long bones reaching adult length and width
 
Answer & Explanation Answer: A) appositional growth

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2448
Q:

Which of these best describes genetic drift?

A) Random fluctuations in the gene frequencies within a population Eliminate B) The combining of alleles to create more genetic variations within a population
C) The movement of alleles between population D) A planned method to reduce the number of inferior genes in a population
 
Answer & Explanation Answer: A) Random fluctuations in the gene frequencies within a population Eliminate

Explanation:

Random fluctuations in the gene frequencies within a population Eliminate is the one which best describes genetic drift.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

1 2448
Q:

What is Executive in Windows NT?

Answer

In Windows NT, executive refers to the operating system code that runs in kernel mode.

Report Error

View answer Workspace Report Error Discuss

1 2448
Q:

Who described his policy of unification as one of 'blood and iron'?

A) Bismarck B) Napoleon
C) Mazzini D) Napoleon Bonaparte
 
Answer & Explanation Answer: A) Bismarck

Explanation:

With the failure of the revolution of 1848 to unify Germany, one phase in the struggle for unification came to an end. Now Germany was to be unified not into a democratic country by the efforts of revolutionaries but by the rulers into a militaristic empire. The leader of this policy Bismarck who belonged to a prussian aristocratic family. He wanted to preserve the predominance of the landed aristocrats and the army in the united German state and to achieve the unification of Germany under the leadership of Prussian monarchy. He described his policy of unification as one of 'blood and iron'. The policy of 'blood and iron' meant a policy of war.

Report Error

View Answer Report Error Discuss

Filed Under: World History

2 2448
Q:

Write a c program for selection sort.

Answer

include<stdio.h>
int main(){

  int s,i,j,temp,a[20];

  printf("Enter total elements: ");
  scanf("%d",&s);

  printf("Enter %d elements: ",s);
  for(i=0;i<s;i++)
      scanf("%d",&a[i]);

  for(i=0;i<s;i++){
      for(j=i+1;j<s;j++){
           if(a[i]>a[j]){
               temp=a[i];
              a[i]=a[j];
              a[j]=temp;
           }
      }
  }

  printf("After sorting is: ");
  for(i=0;i<s;i++)
      printf(" %d",a[i]);

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 4 5 0 21 7
The array after sorting is:  0 4 5 7 21

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2447
Q:

When someone clicks your ad, the actual amount you’re charged will be

A) The minimum needed to hold your ad position, under the maximum cost-per-click limit B) The minimum needed to hold your ad position or 50% of your maximum cost-per-click bid, whichever is greater
C) The minimum needed to hold your ad position but never more than 120% of your maximum cost-per-click bid, whichever is greater D) The minimum needed to hold your ad position but never less than 50% of your maximum cost-per-click bid, whichever is greater
 
Answer & Explanation Answer: A) The minimum needed to hold your ad position, under the maximum cost-per-click limit

Explanation:

When_someone_clicks_your_ad,_the_actual_amount_you’re_charged_will_be1551856891.png image

When someone clicks your ad, the actual amount you’re charged will be " The minimum needed to hold your ad position, under the maximum cost-per-click limit ".

Report Error

View Answer Report Error Discuss

4 2447