Advertisement
Advertisement

C++ Quizzes & Trivia

Top Trending Quizzes


Below is a C++ programming advanced level test that is perfect for testing out just how ready you are to tackle the upcoming certification exam and your capability to deliver the best service to your clients. Give it a try and...

Questions: 57  |  Attempts: 1821   |  Last updated: Mar 22, 2022
  • Sample Question
    The base class's access specification affects the way base class member functions may access base class member variables.
    Radio Button
    Radio Button

.

Questions: 22  |  Attempts: 1069   |  Last updated: Mar 21, 2022
  • Sample Question
    The basic commands that a computer performs are ____, and performance of arithmetic and logical operations.
    Radio Button
    Radio Button
    Radio Button
    Radio Button



Questions: 96  |  Attempts: 3142   |  Last updated: Mar 22, 2022
  • Sample Question
    Programmers use a variety of special languages, called programming languages, to communicate with the computer.  
    Radio Button
    Radio Button

Below is what is considered the hardest trivia quiz on C++ programming language. It is designed for those of us who are studying towards passing the certification exam. Gaming developers mostly prefer the C++ language since it is...

Questions: 90  |  Attempts: 2116   |  Last updated: Mar 21, 2022
  • Sample Question
    What is the output of the following function and function call? void calculateCost(int count, float& subTotal, float taxCost);   float tax = 0.0,   subtotal = 0.0;   calculateCost(15, subtotal,tax); cout << "The cost for 15 items is " << subtotal        << ", and the tax for " << subtotal << " is " << tax << endl; //end of fragment   void calculateCost(int count, float& subTotal, float taxCost) {       if ( count < 10)       {                   subTotal = count * 0.50;       }       else       {                   subTotal = count * 0.20;       }       taxCost = 0.1 * subTotal; }
    Radio Button
    Radio Button
    Radio Button
    Radio Button



Questions: 47  |  Attempts: 336   |  Last updated: Feb 17, 2023
  • Sample Question
    If a function needs to modify more than one variable, it must
    Radio Button
    Radio Button
    Radio Button
    Radio Button

Recent Quizzes

Advertisement