Multiple choice Which of the following is not a characteristic of Object Oriented programming? Data is hidden and cannot be accessed by external functions. Follows bottom-up approach in program design. New data and functions cannot be added whenever necessary. Program is divided into what are known as objects. 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++.