How can you ensure that a certain block of code is executed regardless of whether the condition in the if statement is true or false?

  • By placing the code outside of any if statement
  • By using the break keyword
  • By using the finally block in a try-catch-finally structure
  • By using the return statement
To ensure that a certain block of code is executed regardless of whether the condition in the if statement is true or false, you can use the finally block in a try-catch-finally structure. The code in the finally block runs after the try block, whether an exception is thrown or not, making it useful for cleanup or resource release tasks.

For a loop to be infinite in C++, the condition in a while loop must always evaluate to ______.

  • 0
  • 1
  • FALSE
  • TRUE
To create an infinite loop in C++, the condition in a while loop must always evaluate to true. This means that as long as the condition is true, the loop will continue executing indefinitely. Infinite loops can be useful in some scenarios but should be used with caution to avoid program hang or crashes.

Alice has a class that includes a function to compute the area. She wants this function to compute the area for both circles (given radius) and rectangles (given length and breadth). Which concept can help her achieve this without renaming the functions?

  • Function overloading
  • Function overriding
  • Operator overloading
  • Polymorphism
Alice can achieve this using the concept of polymorphism, specifically method overloading. By overloading the computeArea function with different parameter types (radius for circles and length and breadth for rectangles), she can have a single function name that behaves differently based on the input, without renaming the functions.

What is the correct way to declare a function that takes two integers as parameters and returns their sum?

  • int sum(int a, int b) { return a + b; }
  • int sum(int a; int b) { return a + b; }
  • sum(int a, int b) { return a + b; }
  • void sum(int a, int b) { cout << a + b; }
Functions in C++ are declared by specifying their return type, followed by the function name and parameters enclosed in parentheses. The correct way to declare a function that takes two integers and returns their sum is by declaring the return type as int and specifying the parameters with commas in between. So, the correct declaration is int sum(int a, int b).

How does the __forceinline keyword (in some C++ compilers) differ from the inline keyword?

  • It disables inlining
  • It enforces inlining
  • It has no effect
  • It suggests inlining
The '__forceinline' keyword is a directive to the compiler that strongly enforces inlining of the function, even if the compiler would not typically inline it based on its heuristics. This keyword provides a more forceful hint to the compiler compared to the 'inline' keyword, ensuring that the function is inlined whenever possible.

Where are inline functions expanded?

  • At the calling point
  • In a separate source file
  • In a shared library
  • In the header file
Inline functions are expanded at the calling point. When you use the inline keyword, the compiler replaces the function call with the actual function code at the location where the function is called, reducing the overhead of a traditional function call.

Consider a for loop in C++ with an empty condition (i.e., for( ; ; )). What will be the behavior of this loop?

  • It will not compile
  • It will run indefinitely
  • It will run once and exit
  • It will throw an exception
A for loop with an empty condition (for( ; ; )) in C/C++ will run indefinitely until it is explicitly exited using a break statement or until an exit condition is encountered within the loop. It's often used for creating infinite loops, but caution is required to avoid infinite execution.

Which loop can potentially become an infinite loop if no increment/decrement operation is performed on the loop control variable?

  • do-while loop
  • for loop
  • foreach loop
  • while loop
A while loop can potentially become an infinite loop if no increment or decrement operation is performed on the loop control variable within the loop body. This happens when the loop condition always evaluates to true.

Which of the following is NOT a primitive data type in C++?

  • Array
  • Boolean
  • Float
  • Integer
In C++, an array is not a primitive data type; it's a user-defined data type used to store a collection of elements of the same data type. Primitive data types include integers, floats, and booleans, among others.

Samuel is writing a C++ program and wants to ensure the program only compiles certain sections of the code when in debug mode. Which preprocessor directive can help him achieve this?

  • #ifdef DEBUG
  • #ifndef NDEBUG
  • #include
  • #pragma once
To conditionally compile code in C++, you can use preprocessor directives like #ifdef DEBUG, where DEBUG is typically defined in debug configurations. This allows Samuel to include or exclude specific sections of code based on whether he's in debug mode or not.