Questions

Q:

The gaseous form of water is called

A) Methane B) Water vapour
C) Humidity D) Propane
 
Answer & Explanation Answer: B) Water vapour

Explanation:

the gaseous form of water is called water vaour.

Report Error

View Answer Report Error Discuss

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

4 2409
Q:

In which place India's first HIV case reported in 1986?

A) Bangalore B) Delhi
C) Hyderabad D) Chennai
 
Answer & Explanation Answer: D) Chennai

Explanation:

In Chennai, Tamil Nadu place India's first HIV case reported in 1986 amongst the female sex workers.

Report Error

View Answer Report Error Discuss

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

2 2408
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 2408
Q:

All bones stop growing by the end of adolescence.

A) TRUE B) FALSE
Answer & Explanation Answer: B) FALSE

Explanation:

The given statement "All bones stop growing by the end of adolescence" is a FALSE statement.

Report Error

View Answer Workspace Report Error Discuss

Subject: Biology
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

2 2408
Q:

What is the difference between microprocessor and micro-controller?

Answer

In microprocessor more op-codes, few bit handling instrucitons. But in Microcontroller. fewer op-codes, more bit handling Instruction, and also it is defined as a device that includes micro processor, memory, & input / output signal lines on a single chip.


the basic architectual difference is that microcontroller has an programmable memory while it is not the case with mivroprocessors.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2407
Q:

A sheet or web supported by a metal frame is

A) Trampoline B) Gasoline
C) Colin D) None of the above
 
Answer & Explanation Answer: A) Trampoline

Explanation:

A trampoline is a sheet or web supported by springs in a metal frame and is used as spring board.

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 2407
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 2406
Q:

Select the correct statement about the uterine cycle.

A) During the secretory phase, estrogen levels are at their highest. B) During the proliferative phase, levels of progesterone rise as the follicle begins to produce more hormone.
C) If fertilization occurs, the corpus luteum is maintained by a hormone secreted by the developing embryo. D) The menstrual phase of the cycle is from day 1 to day 8.
 
Answer & Explanation Answer: C) If fertilization occurs, the corpus luteum is maintained by a hormone secreted by the developing embryo.

Explanation:

"If fertilization occurs, the corpus luteum is maintained by a hormone secreted by the developing embryo." is the only correct statement about the uterine cycle among the options.

Report Error

View Answer Report Error Discuss

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

4 2406