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. malloc() calls the constructor, new does not.
B. new calls the constructor, malloc() does not.
C. Neither calls the constructor.
D. Both call the constructor.

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

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

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

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

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

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

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

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

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

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

8 Which of the following creates a Memory Leak?

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

9 What is Dynamic Binding (Late Binding)?

A. Linking a function call to the code to be executed at runtime.
B. Binding variable names to memory addresses during coding.
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 pointer to the base class.
B. A pointer to the derived class.
C. A global pointer accessible by all classes.
D. A const pointer that points to the object invoking the member function.

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

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

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

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

13 What is a Dangling Pointer?

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

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

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

15 In Java, parameter passing is always:

A. Pass by Value
B. Pass by Pointer
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 prevent the class from being instantiated.
C. To delete objects faster.
D. To ensure the derived class destructor is called when deleting via a base class pointer.

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

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

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

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

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

A. public
B. internal
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. Creating new classes from old ones.
B. Hiding data implementation.
C. Automatic memory management.
D. One interface, multiple methods.

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

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

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

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

24 What is a Reference in C++?

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

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

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

26 What is the Diamond Problem in C++?

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

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

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

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

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

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

A. It passes a copy of the object.
B. It avoids copying large objects, improving performance.
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. Address-of operator
B. Bitwise AND
C. Pointer declaration
D. Reference declaration

31 What defines a Deep Copy?

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

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

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

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 deleted.
C. Their values cannot be changed after creation.
D. They cannot be passed to functions.

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

A. There is no difference.
B. Structs cannot inherit.
C. Classes cannot inherit from structs.
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. Stack Overflow
B. Heap Overflow
C. Linker Error
D. Compilation Error

37 What is Function Overloading?

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

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

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

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 with only static methods.
C. A class that has no variables.
D. A class that cannot be instantiated and is meant to be subclassed.

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 compiler optimization technique.
B. A programming idiom where resource management is tied to object lifetime.
C. A way to pass parameters.
D. A method to initialize arrays.

44 Which binding technique supports Method Overriding?

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

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

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

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

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

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 static.
C. It can be virtual.
D. It must have a return type of void.

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

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

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

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

50 Which pointer arithmetic operation is valid?

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