Questions

Q:

What was the purpose of the double v campaign?

Answer

The Double V Campaign was used in World War II. The purpose of the double v campaign is to fight for victory and ending segregation at home.


It was aimed at African-Americans, and it first appeared in an African-American newspaper, the Pittsburgh Courier, in 1942. The Double V Campaign worked to have a victory over racism abroad and racism in the United States.

It stood so it gave a chance for Black Americans to fight in the war so they could achieve Victory at Home and Abroad- (Civil Rights then the war in the Atlantic and Pacific).

Report Error

View answer Workspace Report Error Discuss

Subject: World History Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2317
Q:

A voltaic cell converts chemical energy to

A) Heat energy B) Electrical energy
C) Mechanical energy D) Light energy
 
Answer & Explanation Answer: B) Electrical energy

Explanation:

A galvanic cell is also known as voltaic cell provides electrical energy from the chemical energy.

 

a_voltaic_cell_converts_chemical_energy_to1558088421.png image

Report Error

View Answer Report Error Discuss

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

4 2317
Q:

Which of the following is an application protocol?

A) HTTP B) TCP
C) IP D)  UDP
 
Answer & Explanation Answer: A) HTTP

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

3 2317
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 2316
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 2316
Q:

Why is it a bad idea to duplicate keywords in multiple Ad Groups?

Answer

Keywords in multiple ad groups compete against each other, and the keyword with the higher performance will trigger the ad in that Ad Group to run.

Report Error

View answer Workspace Report Error Discuss

0 2316
Q:

Which is the following is not an effect of volcanoes

A) Africa B) Australia
C) North America D) South America
 
Answer & Explanation Answer: B) Australia

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2315
Q:

What has no beginning, end or middle?

Answer

A Donut or Doughnut. Anything in the shape of a torus.

Report Error

View answer Workspace Report Error Discuss

3 2315