Grade 10 Quizzes, Questions & Answers
Recent Grade 10 Quizzes
Questions: 10 | Attempts: 189 | Last updated: Mar 21, 2025
-
Sample QuestionTrue or False: Constructors do not have a type.
Questions: 10 | Attempts: 141 | Last updated: Mar 11, 2025
-
Sample QuestionTrue or False: Void methods do not have a type.
Questions: 9 | Attempts: 336 | Last updated: Mar 21, 2025
-
Sample QuestionTrue or False: A loop is a control-structure used for repetition of certain statements.
Questions: 32 | Attempts: 1163 | Last updated: Mar 22, 2025
-
Sample QuestionHe led the Vietminh Communist forces who fought the French, Japanese and the United States for independence.
Questions: 31 | Attempts: 2001 | Last updated: Aug 21, 2025
-
Sample QuestionWhen you declare a variable or a named constant, Visual Basic reserves an area of memory and assigns it a name called a(n) _______.
Questions: 10 | Attempts: 229 | Last updated: Jan 22, 2025
-
Sample QuestionWhen performing a table lookup, it is a good idea to include validation because _______.
Questions: 43 | Attempts: 151 | Last updated: Mar 14, 2025
-
Sample QuestionUse the _______ control from the toolbox to create list boxes on a form.
Questions: 47 | Attempts: 486 | Last updated: Feb 17, 2025
-
Sample QuestionIf a function needs to modify more than one variable, it must
Questions: 90 | Attempts: 2700 | Last updated: Sep 1, 2025
-
Sample QuestionWhat 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; }
Questions: 10 | Attempts: 2623 | Last updated: Mar 21, 2025
-
Sample QuestionReactions eventually stop. What is generally the reason for this?
Advertisement