Multiple choice

Which of the following is not a characteristic of Object Oriented programming?

  1. Data is hidden and cannot be accessed by external functions.

  2. Follows bottom-up approach in program design.

  3. New data and functions cannot be added whenever necessary.

  4. Program is divided into what are known as objects.

  5. None of the above

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

New data and functions can be added whenever necessary. For e.g. for(int i=0;i<4;i++) is valid in C++.