What is the primary difference between the continue and break keywords in a loop control structure?

  • "Continue" and "break" are identical
  • "Continue" and "break" generate compilation errors
  • "Continue" moves to the next iteration of the loop, while "break" terminates the loop
  • "Continue" terminates the loop, while "break" moves to the next iteration
The primary difference between "continue" and "break" is that "continue" moves to the next iteration of the loop, skipping the remaining code in the current iteration, whereas "break" terminates the loop altogether and moves to the code after the loop.

In a complex application, there are multiple conditions to check, but they're all independent of each other. Instead of using multiple if-else structures, what would be a more efficient approach?

  • Using a loop
  • Using a switch statement
  • Using a ternary operator
  • Using nested if-else statements
When multiple conditions are independent of each other, using a switch statement is often more efficient and readable than multiple if-else structures. A switch statement allows for direct mapping of conditions to specific code blocks, making the code more organized and efficient.

Lisa has a function that calculates the area of a rectangle. She wants to modify the function such that if only one argument is provided, it calculates the area of a square. Which C++ feature can help her achieve this?

  • Default Arguments
  • Function Overloading
  • Operator Overloading
  • Type Conversion
Lisa can use Default Arguments in C++ to modify her function. By assigning a default value to one of the function's parameters, she can make it so that if only one argument is provided, it calculates the area of a square by using the default value as the second argument.

Emily is writing a function to calculate the factorial of a number using a loop. Which loop structure would be the most appropriate for this task?

  • Do-While Loop
  • For Loop
  • Switch Statement
  • While Loop
Emily should use a "For Loop" to calculate the factorial of a number. A "For Loop" is well-suited for tasks that involve iterating a specific number of times, such as calculating the factorial of a number, where she can easily control the loop's start, end, and iteration conditions. She can iterate through the numbers from 1 to the given number, multiplying them together to calculate the factorial.

Anna wants to write a program that checks if a number is positive, negative, or zero. Which conditional structure would be most suited for this task?

  • For Loop
  • If-Else Statement
  • Switch Statement
  • While Loop
Anna should use the "If-Else" statement for this task. It allows her to evaluate a condition (in this case, whether the number is positive, negative, or zero) and execute different code blocks based on the result.

Lucy wants to declare a function that can add two numbers but doesn't want to specify how it does it. What should she provide?

  • Function Argument
  • Function Call
  • Function Declaration
  • Function Definition
Lucy should provide a function declaration. A function declaration defines the function's name, return type, and parameter list without specifying the actual implementation or logic. This allows her to declare the function's existence and signature without writing the code for adding two numbers.

What happens if an inline function is called inside a loop?

  • The function is executed for each iteration of the loop
  • The function is executed only once
  • The loop becomes an infinite loop
  • The loop will not compile
When an inline function is called inside a loop, the function is executed for each iteration of the loop. This can potentially lead to code bloat if the function is large, but it can also result in better performance as there is no function call overhead.

Function overloading allows multiple functions to have the same name but with a different ______.

  • Access Modifier
  • Namespace
  • Return Type
  • Scope
Function overloading primarily focuses on the function's parameter list, allowing you to have multiple functions with the same name but varying parameter types or numbers. The return type is not considered when distinguishing between overloaded functions.

The concept where the function's return type is deduced from its return statements in C++11 is called ______.

  • auto
  • decltype
  • inferred
  • deducetype
The concept where the function's return type is deduced from its return statements in C++11 is called 'auto.' Using 'auto' for return types allows C++ to automatically deduce the type based on the return statement's expression. It's a powerful feature that simplifies code and improves readability.

Carlos is designing a header-only library. Why might he use inline functions in this scenario?

  • Avoid Multiple Definitions
  • Enable Polymorphism
  • Improve Code Organization
  • Reduce Compilation Time
Carlos might use inline functions in a header-only library to avoid multiple definitions. When a header file is included in multiple source files, it can lead to linker errors due to multiple function definitions. Marking functions as inline allows them to be defined in the header itself without violating the one-definition rule, preventing linker errors. This is crucial for header-only libraries that need to be included in multiple translation units.