Questions

Q:

For a thirsty person, drinking water serves to reduce

A) an instinct B) the set point
C) basal metabolic rate D) a drive
 
Answer & Explanation Answer: D) a drive

Explanation:

For a thirsty person, drinking water serves to reduce a drive.

Report Error

View Answer Report Error Discuss

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

1 2429
Q:

Convert the expression ((A + B) * C – (D – E) ^ (F + G)) to equivalent Prefix Notation

Answer

Prefix Notation:


^ - * +ABC - DE + FG

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2429
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 2429
Q:

Improve the bracketed part of the sentence.
The mobile phones have made digital cameras a little (superfluous) in today's world.

A) extinct B) obsolete
C) redundant D) No improvement
 
Answer & Explanation Answer: B) obsolete

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2429
Q:

Which one of the following functions is not carried out by smooth endoplasmic reticulum?

A) Transport of materials B) Synthesis of lipid
C) Synthesis of protein D) Synthesis of steroid hormone
 
Answer & Explanation Answer: C) Synthesis of protein

Explanation:

Smooth Endoplasmic Reticulumdoes not contain ribosomes on its surface for which it is regarded as smooth. So, proteins cannotbe synthesised by SER provided protein synthesis is the primary task of ribosomes.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

2 2429
Q:

In national income accounting, government purchases include

A) Federal B) Local
C) State D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

In national income accounting, government purchases by Local, State and Federal governments.

Report Error

View Answer Report Error Discuss

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

1 2429
Q:

An example of a latent viral infection is

A) Influenza B) Mumps
C) Cold sores D) Smallpox
 
Answer & Explanation Answer: C) Cold sores

Explanation:
Report Error

View Answer Report Error Discuss

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

9 2428
Q:

How would you obtain segment and offset addresses from a far address of a memory location?

Answer

#include "dos.h"


main()


{


    Char far *scr = ( char far *) 0xB8000000;


    Char *seg, *off;


    Seg = (char *) FP_SEG ( scr );


    Off = ( char *) FP_OFF ( scr );


}


 

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2428