Questions

Q:

Which statements about viruses are true?

A) HIV contains reverse transcriptase. B) A retrovirus contains RNA.
C) Both A & B D) All RNA-containing viruses are retroviruses.
 
Answer & Explanation Answer: C) Both A & B

Explanation:

The statements true about viruses are :

 

1. The capsid enters the host cell if the virus is enveloped.

2. Enveloped viruses bud from the host cell. 

3. HIV contains reverse transcriptase.

4. A retrovirus contains RNA.

Report Error

View Answer Report Error Discuss

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

1 2431
Q:

Project Procurement Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Select Sellers?

Answer

I. Inputs



  • Organizational process assets

  • Procurement management plan

  • Evaluation criteria

  • Procurement document package

  • Proposals

  • Qualified sellers list

  • Project management plan


                 - Risk register


                 - Risk related contractual agreements


II. Tools and Techniques



  • Weighting system

  • Independent estimates

  • Screening system

  • Contract negotiation

  • Seller rating systems

  • Expert judgment

  • Proposal evaluation techniques


III. Outputs



  • Selected sellers

  • Contract

  • Contract management plan

  • Resource availability

  • Procurement management plan (updates)

  • Requested changes

Report Error

View answer Workspace Report Error Discuss

0 2431
Q:

What is Memory-Management Unit (MMU)?

Answer

Hardware device that maps virtual to physical address. In MMU scheme, the value in the relocation register is added to every address generated by a user process at the time it is sent to memory.


->The user program deals with logical addresses; it never sees the real physical addresses

Report Error

View answer Workspace Report Error Discuss

0 2430
Q:

The commonly used coolant in refrigerators is

A) Ammonia B) Nitrogen
C) Freon D) Oxygen
 
Answer & Explanation Answer: C) Freon

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

2 2430
Q:

Read the passage carefully and choose the best answer to each question out of the four alternatives and click the button corresponding to it.


Dyslexia is a perceptual disorder often occurring in persons of normal, or even above average intelligence. The reader is unable to perceive correctly what is on a page. Letters and numbers often appear reversed: "b" seems to be "d","quite" is "quiet" and "from" is "form". The reader tends to leave out letters or words or insert words or letters that are not there. Vowel and consonant sounds may be confused. Many dyslexics are left­handed or able to write with either hand. They often confuse left and right. Learning to speak may also be delayed beyond infancy. The condition seems to be inherited. It may persist into adulthood. However, with early recognition and specialized approaches to teaching reading, most dyslexics can learn to read.

Some researchers believe that latent dyslexia may be aggravated by the way reading is taught. The modern whole­word, or look­and­say, method seems to be more of a hindrance to learning for dyslexics than it is for ordinary pupils. The phonetic method of teaching students to learn letters and sound them out appears to achieve better reading results. The problem of words that cannot be sounded out ­ such as rough, laugh or through ­ is not solved by phonetics. These words must simply be memorized. However, for children with dyslexia the problem can be compounded by the failure of parents or teachers to recognize the condition. This can easily lead to emotional problems for dyslexic children, who cannot understand their failure to keep up with their classmates.


The problem of perception can be compounded by the failure of parents and teachers to

A) provide treatment B) recognize the condition
C) correct the child at infancy D) understand the child
 
Answer & Explanation Answer: B) recognize the condition

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2430
Q:

What valley is the site of the Earth's highest-ever recorded temperature, 134°F?

Answer

Death Valley

Report Error

View answer Workspace Report Error Discuss

Subject: World Geography

2 2428
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 2427
Q:

Anaerobic glycolysis occurs without

A) water B) glucose
C) oxygen D) All of the above
 
Answer & Explanation Answer: C) oxygen

Explanation:

Anaerobic glycolysis is the transformation of glucose to lactate when limited amounts of oxygen (O2) are available. 

 

Hence, Anaerobic glycolysis occurs without oxygen.

Report Error

View Answer Report Error Discuss

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

0 2427