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

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

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

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

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

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

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

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

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

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

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

8 Which of the following creates a Memory Leak?

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

9 What is Dynamic Binding (Late Binding)?

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

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. abstract
B. const
C. static
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. Address of 3
C. 1
D. 3

13 What is a Dangling Pointer?

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

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

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

15 In Java, parameter passing is always:

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

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

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

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

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

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

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

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

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

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

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

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

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

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

24 What is a Reference in C++?

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

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

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

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. An issue with pointer arithmetic on 2D arrays.
D. A syntax error in template classes.

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

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

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 prevents the function from modifying the argument.
C. It passes a copy of the object.
D. It requires more memory than pass by value.

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

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

31 What defines a Deep Copy?

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

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

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

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

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

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

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

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

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

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

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

37 What is Function Overloading?

A. Passing too many parameters to a function.
B. Defining multiple functions with the same name but different parameters.
C. Calling a function inside itself.
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. Inherit from the class.
B. Access private and protected members of a class.
C. Delete the class object.
D. Become a member of the class.

39 Which segment of memory stores global and static variables?

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

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

A. It declares a null pointer.
B. It declares a generic pointer that can hold the address of any data type.
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 with only static methods.
B. A class that has no variables.
C. A class that is hidden from other files.
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 way to pass parameters.
B. A programming idiom where resource management is tied to object lifetime.
C. A compiler optimization technique.
D. A method to initialize arrays.

44 Which binding technique supports Method Overriding?

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

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

A. Yes, but only for the Stack.
B. No, it creates a new memory segment.
C. Yes, always.
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. Returns a dangling pointer.
B. Throws an exception.
C. Terminates the program immediately.
D. Returns NULL.

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

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

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

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

A. Accessible everywhere.
B. Accessible within the class and its derived classes.
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.