C++ Data Types Practice

C++ Data Types Practice

What is the data type of the variable: \$$randomValue?

“;

// Print multiple-choice answers
echo “

    “;
    foreach ($dataTypes as $dataType) {
    $isCorrect = ($dataType == $randomDataType) ? ” (Correct)” : “”;
    echo “

  • $dataType$isCorrect
  • “;
    }
    echo “

“;
?>