Question: Answer TRUE if the statement below is ALWAYS true. Otherwise answer FALSE. No ustification is required. (a) [8 points ]C and Procedural Programming (PP) concepts

Answer "TRUE" if the statement below is ALWAYS true. Otherwise answer "FALSE". No ustification is required. (a) [8 points ]C and Procedural Programming (PP) concepts TRUE FALSE A float is 4 bytes wide, whereas a double is 8 bytes wide. Only character or integer can be used in switch statement sizeof( ) can be used to get the size of a variable. continue keyword skip one iteration of loop arr[10] and * (arr+10) are equivalent thanks to pointer arithmetic Logical operators such as AND and OR supports short circuit evaluation Switch statement executes only the matching block The return type of malloc function is void. (b) [7 points] C++ and Object Oriented Programming (OOP) concepts TRUE FALSE Private is a default access specifier for members of structures in C++. All operators can be overloaded in C++ Pass by reference is not supported in C, but in C++ When a method in a subclass has the same name and type signatures as a method in the superclass, then the method in the subclass inherits the method in the super class. The mechanism that binds code and data together and keeps them secure from outside world is known as encapsulation. A Class can have many constructor and destructors Multiple objects can be declared for all class types
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
