Questions

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 2444
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 2443
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 2443
Q:

Which of the following is a characteristic of the Ascomycota?

A) Sac formation B) Zygospore formation
C) Basidium formation D) All of the above
 
Answer & Explanation Answer: A) Sac formation

Explanation:

Ascomycota is a division or phylum of the kingdom Fungi that, together with the Basidiomycota, form the subkingdom Dikarya. Its members are commonly known as the sac fungi or ascomycetes. 

 

Hence, Sac formation is a characteristic of the Ascomycota fungi.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE
Job Role: Analyst

2 2443
Q:

 Which isolation level does a database without logging default to?

A) committed read B) dirty read
C) mode ANSI D) repeatable read
 
Answer & Explanation Answer: B) dirty read

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: IBM Certification

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

The genetic material of HIV consists of

A) DNA B) RNA
C) Both A & B D) None of the above
 
Answer & Explanation Answer: B) RNA

Explanation:

The genetic material of HIV consists of two single stranded RNA molecules.

Report Error

View Answer Report Error Discuss

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

4 2442
Q:

Who is the Richest investor as per March 2013?

Answer

Warren Edward Buffett(USA), chairman of Berkshire Hathaway, is the world's richest investor, estimated to be worth $53.5 billion as of march 2013.

Report Error

View answer Workspace Report Error Discuss

1 2442