Questions

Q:

What is the only chain we can eat ?

Answer

A food chain is the only chain we can eat.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: Bank Exams

3 1979
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 1979
Q:

In which conference of 1888, the constitution was created for Congress?

 

A) Bombay B) Calcutta
C) Madras D) Allahabad
 
Answer & Explanation Answer: D) Allahabad

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

1 1979
Q:

Autocorrect was originally designed to replace

A) Misspelled words B) Grammatically incorrect
C) Repetitive words D) All of the above
 
Answer & Explanation Answer: A) Misspelled words

Explanation:

autocorrect_was_originally_designed_to_replace1561613833.jpg image

 

Autocorrect was originally designed to replace Misspelled words. Its purpose is as part of the spell checker to correct common spelling or typing errors, saving time for the user. It is commonly found in word processors and text editing interfaces for smartphones, computers, etc.

Report Error

View Answer Report Error Discuss

4 1978
Q:

The process of conversion of sugar to alcohol is called

A) Moulding B) Infection
C) Fermentation D) Alcohol fixation
 
Answer & Explanation Answer: C) Fermentation

Explanation:

The process of conversion of sugar to alcohol is called Fermentation in which sugar is coverted to alcohol with the help of yeast.

yeasts11551269935.png image

Report Error

View Answer Report Error Discuss

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

3 1978
Q:

If a customer is agitated, how would you handle that?

Answer

Answer this with confidence. Look straight into the eyes of the interviewer and tell them that the path we chose prohibits us from expressing our anger. Anger to anger isn’t a healthy response. Instead, calmness and composure is a must.

Report Error

View answer Workspace Report Error Discuss

0 1977
Q:

What are the flags in 8086?

Answer

In 8086 Carry flag, Parity flag, Ausiliary carry flag, Zero flag, Overflow flag, Trace flag, Interrupt flag, Direction flag, and Sing flag.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 1976
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 1976