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

Which was the only Indus site with an artificial brick dockyard?

A) Lothal B) Dholka
C) Both A & B D) None of the above
 
Answer & Explanation Answer: A) Lothal

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2440
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 2440
Q:

Increasing the Alveolar ventilation rate will

A) Increase the rate of carbon dioxide diffusion from the blood to the alveoli B) Decrease the partial pressure of oxygen in the alveoli
C) Increase the partial pressure of carbon dioxide in the alveoli D) Have no effect on either partial pressure or diffusion rate of gases
 
Answer & Explanation Answer: A) Increase the rate of carbon dioxide diffusion from the blood to the alveoli

Explanation:

Increasing the Alveolar ventilation rate will increase the rate of carbon dioxide diffusion from the blood to the alveoli.

Report Error

View Answer Report Error Discuss

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

2 2440
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 2440
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 2440