Unit 4 - Practice Quiz

CSE357 50 Questions
0 Correct 0 Wrong 50 Left
0/50

1 In C++, which operator is used to access the memory address of a variable?

A.
B.
C.
D. $.$

2 What is the primary difference between malloc() in C and new in C++?

A. Both call the constructor.
B. Neither calls the constructor.
C. malloc() calls the constructor, new does not.
D. new calls the constructor, malloc() does not.

3 In the context of Parameter Passing, what happens in Pass by Value?

A. The address of the actual parameter is passed to the function.
B. The function can directly modify the original variable.
C. A copy of the actual parameter's value is passed to the function.
D. An alias to the actual parameter is created.

4 Which storage class in C/C++ preserves the value of a local variable between function calls?

A. extern
B. auto
C. register
D. static

5 Which concept in OOP allows a class to derive properties and behavior from another class?

A. Polymorphism
B. Inheritance
C. Encapsulation
D. Abstraction

6 In Java, objects are stored in which area of memory?

A. ROM
B. Stack
C. Register
D. Heap

7 What is the result of dereferencing a NULL pointer in C++?

A. It returns 0.
B. It causes a segmentation fault or undefined behavior.
C. It creates a new object.
D. It returns a random integer.

8 Which of the following creates a Memory Leak?

A. Allocating memory on the heap and failing to free it.
B. Passing a pointer by reference.
C. Using a global variable.
D. Allocating memory on the stack.

9 What is Dynamic Binding (Late Binding)?

A. Binding variable names to memory addresses during coding.
B. Linking a function call to the code to be executed at runtime.
C. Linking a function call to the code to be executed at compile time.
D. Hardcoding function addresses.

10 In C++, what is the this pointer?

A. A global pointer accessible by all classes.
B. A const pointer that points to the object invoking the member function.
C. A pointer to the derived class.
D. A pointer to the base class.

11 Which Java keyword is used to prevent a class from being inherited?

A. final
B. abstract
C. const
D. static

12 In C, if int arr[5] = {1, 2, 3, 4, 5}; and int *p = arr;, what is the value of *(p + 2)?

A. 3
B. 1
C. 2
D. Address of 3

13 What is a Dangling Pointer?

A. A pointer to a constant value.
B. A pointer that has not been initialized.
C. A pointer pointing to a memory location that has been deleted or freed.
D. A pointer pointing to NULL.

14 Which feature of OOP describes wrapping data and methods into a single unit?

A. Inheritance
B. Encapsulation
C. Polymorphism
D. Recursion

15 In Java, parameter passing is always:

A. Pass by Pointer
B. Pass by Value
C. Pass by Reference
D. Pass by Name

16 What is the purpose of a Virtual Destructor in C++?

A. To allow multiple inheritance.
B. To delete objects faster.
C. To ensure the derived class destructor is called when deleting via a base class pointer.
D. To prevent the class from being instantiated.

17 Which area of memory is used for recursive function calls and local variables?

A. Data Segment
B. Heap
C. Code Segment
D. Stack

18 In C++, what is the size of an empty class?

A. 4 bytes
B. 0 bytes
C. 2 bytes
D. 1 byte

19 What is the default access specifier for members of a class in C++?

A. internal
B. public
C. private
D. protected

20 Which of the following correctly declares a pointer to a function accepting an integer and returning void in C++?

A. void *func(int);
B. void func(int *);
C. void (*func)(int);
D. *void func(int);

21 What implies the concept of Polymorphism?

A. Automatic memory management.
B. One interface, multiple methods.
C. Creating new classes from old ones.
D. Hiding data implementation.

22 What is the output of sizeof(char*) on a standard 64-bit architecture?

A. 1
B. 4
C. 8
D. 16

23 In Java, what mechanism handles the deallocation of memory on the Heap?

A. Destructors
B. free() function
C. Garbage Collector
D. delete operator

24 What is a Reference in C++?

A. A variable stored in the CPU register.
B. A pointer that can be null.
C. An alias for an existing variable.
D. A duplicate copy of a variable.

25 Which problem arises when two pointers point to the same memory location and one is freed?

A. Stack Overflow
B. Memory Leak
C. Buffer Underrun
D. Dangling Pointer

26 What is the Diamond Problem in C++?

A. A memory leak in a loop.
B. Ambiguity arising from multiple inheritance where two base classes inherit from a common ancestor.
C. A syntax error in template classes.
D. An issue with pointer arithmetic on 2D arrays.

27 What is a Pure Virtual Function in C++?

A. A virtual function initialized to 0, forcing derived classes to override it.
B. A function that does not use any variables.
C. A function that cannot be overridden.
D. A function with no return type.

28 In the context of parameter passing, what is an Activation Record?

A. A log of compilation errors.
B. A database of class methods.
C. A record of all heap allocations.
D. A data structure stored on the stack containing local variables and return addresses for a function call.

29 Which of the following is true about Pass by Reference?

A. It avoids copying large objects, improving performance.
B. It passes a copy of the object.
C. It prevents the function from modifying the argument.
D. It requires more memory than pass by value.

30 In C++, int &r = x; is an example of:

A. Pointer declaration
B. Bitwise AND
C. Reference declaration
D. Address-of operator

31 What defines a Deep Copy?

A. Copying the object and allocating new memory for the data pointed to by the object.
B. Copying only the pointer address.
C. Copying the object bit-by-bit.
D. Using the assignment operator =.

32 Which operator is used to release memory allocated by new[]?

A. remove
B. delete[]
C. delete
D. free

33 Which of the following is NOT a principle of OOP?

A. Encapsulation
B. Compilation
C. Inheritance
D. Polymorphism

34 In Java, String objects are immutable. What does this mean?

A. They are stored in the stack only.
B. They cannot be passed to functions.
C. They cannot be deleted.
D. Their values cannot be changed after creation.

35 What is the difference between struct and class in C++ regarding inheritance?

A. Classes cannot inherit from structs.
B. Structs cannot inherit.
C. There is no difference.
D. Structs inherit publicly by default; classes inherit privately by default.

36 If a recursive function does not have a base case, what error occurs?

A. Compilation Error
B. Stack Overflow
C. Linker Error
D. Heap Overflow

37 What is Function Overloading?

A. Passing too many parameters to a function.
B. Defining a function in the base and derived class with the same signature.
C. Calling a function inside itself.
D. Defining multiple functions with the same name but different parameters.

38 In C++, the keyword friend allows a function to:

A. Delete the class object.
B. Access private and protected members of a class.
C. Inherit from the class.
D. Become a member of the class.

39 Which segment of memory stores global and static variables?

A. Data Segment
B. Stack
C. Heap
D. Code Segment

40 What is the outcome of void *p; in C++?

A. It declares a generic pointer that can hold the address of any data type.
B. It declares a null pointer.
C. It is a syntax error.
D. It declares a pointer that returns nothing.

41 Which of the following best describes an Abstract Class?

A. A class that is hidden from other files.
B. A class that cannot be instantiated and is meant to be subclassed.
C. A class that has no variables.
D. A class with only static methods.

42 In C++, what is the syntax to access a member of a class using a pointer to an object?

A.
B.
C.
D. .

43 What is RAII (Resource Acquisition Is Initialization) in C++?

A. A way to pass parameters.
B. A programming idiom where resource management is tied to object lifetime.
C. A method to initialize arrays.
D. A compiler optimization technique.

44 Which binding technique supports Method Overriding?

A. Static Binding
B. Type Binding
C. Dynamic Binding
D. Operator Binding

45 In Java, does System.gc() force Garbage Collection immediately?

A. Yes, but only for the Stack.
B. Yes, always.
C. No, it creates a new memory segment.
D. No, it only suggests to the JVM that garbage collection is required.

46 What is the result of int *p = (int*)malloc(sizeof(int)); if memory allocation fails?

A. Throws an exception.
B. Returns NULL.
C. Terminates the program immediately.
D. Returns a dangling pointer.

47 Which of the following is true about a Constructor?

A. It has the same name as the class and no return type.
B. It can be virtual.
C. It must have a return type of void.
D. It can be static.

48 How does passing a large object by value affect memory?

A. It allocates memory on the heap.
B. It consumes more stack memory due to copying.
C. It has no effect on memory.
D. It saves memory.

49 What is the primary role of the protected access specifier?

A. Accessible only by friend functions.
B. Accessible only within the class.
C. Accessible within the class and its derived classes.
D. Accessible everywhere.

50 Which pointer arithmetic operation is valid?

A. Subtracting two pointers of the same type.
B. Multiplying a pointer by a constant.
C. Dividing a pointer by a constant.
D. Adding two pointers.