Questions

Q:

What is process synchronization?

Answer

A situation, where several processes access and manipulate the same data concurrently and the outcome of the execution depends on the particular order in which the access takes place, is called race condition. To guard against the race condition we need to ensure that only one process at a time can be manipulating the same data. The technique we use for this is called process synchronization.

Report Error

View answer Workspace Report Error Discuss

1 2100
Q:

Project Time Management - Processes

Describe the Inputs, Tools and Techniques, Outputs of Activity Resource Estimating ?

Answer

I. Inputs



  • Enterprise environmental factors

  • Organizational process assets

  • Activity list

  • Activity attributes

  • Resource availability

  • Project management plan


II. Tools and Techniques



  • Expert Judgment

  • Alternatives analysis

  • Published estimating data

  • Project management software

  • Bottom-up estimating


III. Outputs



  • Activity resource requirements

  • Activity atributes (updates)

  • Resource breakdown structure

  • Resource calendars (updates)

  • Requested changes

Report Error

View answer Workspace Report Error Discuss

0 2100
Q:

In loading programs into memory, what is the difference between load-time dynamic linking and run-time dynamic linking?

Answer

For load-time dynamic linking: Load module to be loaded is read into memory. Any reference to a target external module causes that module to be loaded and the references are updated to a relative address from the start base address of the application module.


With run-time dynamic loading: Some of the linking is postponed until actual reference during execution. Then the correct module is loaded and linked.

Report Error

View answer Workspace Report Error Discuss

0 2099
Q:

Improve the bracketed part of the sentence.
I had not completed my project so I thought I was (done with) when the manager asked me to hand it in.

A) done for B) done in
C) done on D) No improvement
 
Answer & Explanation Answer: A) done for

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2099
Q:

What substance gives plants their green color?

A) Chloroform B) Chlorine
C) Chlorophyll D) Caustic soda
 
Answer & Explanation Answer: C) Chlorophyll

Explanation:

Chlorophyll is the pigment that gives pant leaves their green color.

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 2099
Q:

A homepage is

A) main page of the website B) access to internet
C) an access to the saved files D) index page of a dictionary
 
Answer & Explanation Answer: A) main page of the website

Explanation:

A homepage is a main or starting page of a website from where we can go to the individual pages by clicking the urls in it.

Report Error

View Answer Report Error Discuss

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

5 2099
Q:

Soil that forms on unconsolidated deposits is called

A) humus B) bedrock
C) transported soil D) residual soil
 
Answer & Explanation Answer: C) transported soil

Explanation:

Transported soils form from weathered material deposits, which are transported by natural forces to a new site, away from the site of origin.

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

3 2098
Q:

Which error are you likely to get when you run the following program?

main()

{

  struct emp

  {

      char name[20];

      float sal;

  };

  struct emp e[10];

  int i;

  for ( i = 0 ; i <= 9; i++)

        scanf ( "%s %f" , e[i].name, &e[i].sal );

}

Answer

Floating point formats not linked

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2098