Questions

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

What are the benefits of multithreaded programming?

Answer

 



  • Responsiveness

  • Resources sharing

  • Economy

  • Utilization of multiprocessor architectures.

Report Error

View answer Workspace Report Error Discuss

1 2033
Q:

What would be the output of the following program?

main()

{

    int i = -3, j =2, k =0, m ;

    m = ++j && ++i || ++k ;

    Printf ( "\n%d%d%d%d", i , j , k , m );

}

Answer

-2  3  0  1

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2032
Q:

Which ministry has started the exercise to revise base year to 2017 - 2018 for computation of wholesale inflation?

A) Ministry of Commerce and Industry B) Ministry of Finance
C) Ministry of Corporate Affairs D) All the above
 
Answer & Explanation Answer: A) Ministry of Commerce and Industry

Explanation:

The India's commerce and industry ministry has started the exercise to revise base year to 2017-18 for computation of wholesale inflation with a view to present more realistic picture of the price situation

 

In May last year, the government revised the base year for WPI-based inflation to 2011-12 to give a better indication of changes in prices of commodities.

 

The new index, with 2017-18, is expected to have new items, which would provide a more realistic picture of price rise and its impact on people.

 

Most of the additions could be in the manufactured products category. Currently, the index has a total of 697 items, including primary articles, fuel and power and manufactured products.

Report Error

View Answer Report Error Discuss

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

2 2032
Q:

Which of the following equals one atomic mass unit?

A) one-twelfth the mass of one carbon-12 atom B) the mass of one electron
C) one-sixth the mass of one helium-4 atom D) the mass of one carbon-12 atom
 
Answer & Explanation Answer: A) one-twelfth the mass of one carbon-12 atom

Explanation:

One atomic mass unit (AMU) is equal to the one-twelfth the mass of one carbon-12 atom.

Report Error

View Answer Report Error Discuss

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

1 2031
Q:

Select the antonym of
Humdrum

A) tedious B) trite
C) drab D) fascinating
 
Answer & Explanation Answer: D) fascinating

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams

0 2031
Q:

What would be the output of the following program?

main()

{

    printf (" %d%d%d ", sizeof (3.14f), sizeof (3.14), sizeof (3. 141);

}

Answer

4  8  10

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2031
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 2031