Questions

Q:

Answer the following puzzle

Answer

Hour hand points to 8


Explanation:


Starting with the top clockface, and moving clockwise around the others, the minute hand moves forward 15 minutes, while the hour hand moves back 2 hours each time.

Report Error

View answer Workspace Report Error Discuss

Subject: Clock puzzles

6 2504
Q:

Galloping inflation is also known as

A) Hyperinflation B) Jumping inflation
C) Moderate inflation D) None
 
Answer & Explanation Answer: B) Jumping inflation

Explanation:

Galloping inflation is also known as jumping inflation.

 

It refers to a type of inflation that occurs when the prices of goods and services increase at the two-digit or three-digit rate per annum.

Report Error

View Answer Report Error Discuss

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

2 2503
Q:

Write a c program for insertion sort.

Answer

#include<stdio.h>
int main(){

  int i,j,s,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=1;i<s;i++){
      temp=a[i];
      j=i-1;
      while((temp<a[j])&&(j>=0)){
      a[j+1]=a[j];
          j=j-1;
      }
      a[j+1]=temp;
  }

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

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 3 7 9 0 2
After sorting:  0 2 3 7 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2503
Q:

The parliament of Great Britain is housed in which of these buildings?

A) Palace of Westminster B) The town of London
C) Buckingham palace D) Old Bailey
 
Answer & Explanation Answer: A) Palace of Westminster

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

10 2503
Q:

Who wrote the line: ' A thing of beauty is a joy for ever '

A) P.B.Shelley B) William Wordsworth
C) John Keats D) Robert Browning
 
Answer & Explanation Answer: C) John Keats

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

1 2502
Q:

Give two ways of converting a two input NAND gate to an inverter.

Answer

One way is shorting the two inputs of the NAND gate and passing the input.


truth table:


A B output


1 1 0


0 0 1


The second way is passing the input to only one input (say A) of the NAND gate. Since the other input  (say B is floating, it is always logic one.


Truth table:


A B output


1 1 0 


0 1 1

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

1 2502
Q:

The function of nitrogen in air is 

A) to make air a moderate supporter of combustion B) to maintain the density of air constant
C) to prevent the hydrogen in air from exploding D) to reduce the poisonous nature of ozone in air
 
Answer & Explanation Answer: A) to make air a moderate supporter of combustion

Explanation:

If air contained all oxygen and no nitrogen, everything would have burnt off

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

2 2502
Q:

Which of the following is not a monosaccharide? 

A) Fructose B) Glucose
C) Galactose D) Sucrose
 
Answer & Explanation Answer: D) Sucrose

Explanation:

Sucrose is not a monosaccharide.

 

Monosaccharides are simple carbohydrates molecules that cannot be broken down into smaller molecules of other carbohydrates.

 

Glucose, galactose and fructose are examples of Monosaccharides.

Report Error

View Answer Report Error Discuss

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

1 2501