The result of dividing two integers in C++ is always a(n) _______.
- float
- char
- integer
- boolean
In C++, when two integers are divided, the result is always an integer. If there's any fractional part, it gets truncated. For instance, 5 divided by 2 results in 2, not 2.5. To obtain a floating-point result, one or both operands should be a floating-point type.
A function that calls itself directly or indirectly is known as a _______ function.
- recursive
- iterative
- overloaded
- main
A function that calls itself, either directly or by calling another function that eventually results in the original function being called again, is termed recursive.
In C++, which keyword is used to declare an abstract class?
- virtual
- volatile
- pure
- abstract
An abstract class in C++ is a class that cannot be instantiated and is meant to be inherited by other classes. It's declared using the virtual keyword, especially when a virtual function is set to 0, making it a pure virtual function, thus making the class abstract.
How does the short-circuit evaluation work in logical operators?
- Sequentially
- Left-to-right
- Both operands
- None required
Short-circuit evaluation refers to the evaluation of logical expressions in a left-to-right manner, stopping as soon as the outcome is determined. For instance, in the logical AND operation (&&), if the left operand is false, the right operand won't even be evaluated because the entire expression is already false.
When might using a table of function pointers be preferable over a switch-case statement for handling various cases/conditions?
- When handling a static set of conditions that seldom change.
- When trying to make the code more object-oriented.
- When handling a very large number of cases that might change dynamically or are loaded from an external source.
- When the conditions are based on string values.
Using a table of function pointers can be highly beneficial when there's a need to handle a dynamic set of conditions, especially if these conditions might be loaded from an external source or change during runtime. It allows for a more flexible and extensible approach than hard-coding numerous cases in a switch-case statement. Furthermore, it can lead to cleaner and more maintainable code in some scenarios.
In a complex software project where multiple classes are interacting with one another, you discover that there is a significant performance bottleneck during the creation and deletion of objects, which is causing inefficiency. What strategy or principle might be applied to manage object creation and deletion more efficiently?
- Use of object pooling.
- Reduce the use of polymorphism.
- Always use inline functions.
- Implement multi-threading.
Object pooling is a design pattern where a set of initialized objects are kept ready to use, rather than allocating and deallocating them on the fly. This can greatly reduce the overhead of object creation and deletion in scenarios where such operations are frequent. Other options, while useful in specific contexts, don't directly address the efficient management of object creation and deletion.
What is the maximum number of conditions that can be nested within each other using nested if-else structures?
- 10
- 5
- 3
- There is no fixed limit.
There isn't a fixed limit to how many conditions you can nest using if-else structures in C++. However, it's essential to keep code readability and maintainability in mind. Excessively nested conditions can make the code hard to understand and debug.
What is slicing in the context of object-oriented programming in C++?
- Removing virtual functions
- Copying an object's base part
- Increasing object size
- Converting to different type
Slicing in C++ refers to the situation where a derived class object is assigned to a base class object. In such cases, only the base class's portion of the derived object is copied, and the additional members of the derived class are 'sliced off'. This can lead to unintended behaviors if not carefully managed.
The result of the expression (true || _______) in C++ will always be true.
- FALSE
- TRUE
- 0
- 1
The logical OR (`
The _______ smart pointer in C++ does not allow the pointer to be shared among objects.
- unique_ptr
- weak_ptr
- shared_ptr
- custom_ptr
unique_ptr is a smart pointer that owns a dynamically allocated object exclusively. It ensures that only one unique_ptr can point to the object at a time. If another unique_ptr tries to take ownership, the original will relinquish its hold, ensuring uniqueness.