Questions

Q:

Subordinate courts are supervised by___________

A) Supreme Court B) District Court
C) High Court D) Parliament
 
Answer & Explanation Answer: C) High Court

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

0 2102
Q:

Between a tiger and an monkey, which of the following is different?

A) Kingdom B) phylum
C) order D) class
 
Answer & Explanation Answer: C) order

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: Bank Exams

0 2102
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 2102
Q:

What would be the output of the following program?

main()

{

    char a[] = "Visual C++";

    char *b = "Visual C++";

    printf ("\n%d %d", sizeof (a), sizeof (b));

    printf ("\n%d %d", sizeof (*a), sizeof (*b));

Answer

11  2


 1   1

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

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

What would be the output of the following program?

main()

{

    float a = 0.7;

    if ( a < 0.7f )

          printf ( " C ");

    else 

          Printf ( " C++ ");

}

Answer

C++

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2101
Q:

The quality or tone of a musical sound produced by a stringed instrument depends on

A) frequency of vibration B) length of the strings in the instrument
C) Amplitude of vibration D) waveform of the sound
 
Answer & Explanation Answer: D) waveform of the sound

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

4 2101