Which arithmetic operator is used to perform division in C++? 

  • -
In C++, the '/' operator is used for division. If used between two integers, it will perform integer division; with floats or doubles, it performs standard division.

When defining a struct in C++, what does the compiler implicitly provide? 

  • Default constructor 
  • Virtual destructor 
  • Overloaded operators 
  • Private members
When defining a struct in C++, the compiler will implicitly provide a default constructor if no constructors are explicitly defined. However, it won't automatically provide virtual destructors, overloaded operators, or private members without explicit definitions.

The goto statement can lead to _______ if used indiscriminately. 

  • spaghetti code 
  • infinite loop 
  • syntax error 
  • recursion
Using the goto statement without careful consideration can lead to "spaghetti code", which is a term for code that is tangled and difficult to follow or maintain due to excessive jumps.

How can you prevent users from mistakenly instantiating your template classes with non-numerical types in a C++ library of numerical methods, leading to confusing compiler errors? 

  • Provide runtime type checking 
  • Use static_assert with type traits 
  • Offer detailed documentation 
  • Implement virtual functions
The static_assert mechanism, combined with type traits, allows for compile-time checks. By using static_assert along with type traits like std::is_arithmetic, it's possible to generate clear, intentional compiler errors if a user tries to instantiate a template with a non-numeric type, thus providing instant feedback to the user.

You are tasked with optimizing a piece of code containing nested loops... 

  • Move calculations outside of the loops. 
  • Replace inner loop with a lookup table. 
  • Inline the inner loop calculations. 
  • Prefetch data before processing in the inner loop.
A lookup table can be used to store pre-computed results of complex calculations. By replacing the inner loop's calculations with lookups from this table, one can often achieve significant speedups, especially if the same calculations are being performed repeatedly.

What is the purpose of the this pointer in C++? 

  • To return the current object's address. 
  • To point to global variables. 
  • To create a new object. 
  • To delete the current object.
In C++, the this pointer is used within a class's member function to refer to the invoking object of that function. It's an implicit parameter to all member functions and contains the memory address of the current object, allowing for operations on the calling object itself.

When passing parameters by reference, which symbol is used to denote reference in C++? 

  • %
In C++, the ampersand (&) is used to denote that a parameter is being passed by reference. This allows the function to directly access and modify the actual argument's memory location.

You are tasked with enhancing the performance of a critical path in an application. You identify a function that is called very frequently as a potential optimization target. Which specific aspect of the return statement could you focus on to possibly improve performance, especially considering modern C++ standards? 

  • Returning by value. 
  • Returning by pointer. 
  • Using return in a loop to optimize iterations. 
  • Returning by reference or moving.
In modern C++, when considering performance-critical paths, it's beneficial to understand the difference between returning by value and returning by reference or using move semantics. Especially with the advent of Rvalue references in C++11, returning by reference or moving can avoid unnecessary copies and lead to significant performance improvements. Returning by pointer is less idiomatic and might not convey ownership semantics clearly.

In the context of floating-point representation, what is the role of the mantissa? 

  • Determines the sign 
  • Determines the exponent 
  • Stores the actual digits 
  • Determines the base
In floating-point representation, the number is typically represented as: (-1)^sign * mantissa * (base^exponent). The mantissa is responsible for storing the actual digits of the floating-point number, while the exponent determines the position of the decimal point and the sign determines its sign.

The first commercially available C++ compiler was named _______. 

  • CFront
  • Clang 
  • GCC 
  • Turbo C++ 
CFront was the first commercially available C++ compiler. It was developed by Bjarne Stroustrup at Bell Labs as a front-end to the C compiler. This compiler played a crucial role in the early evolution and popularization of C++.