Introduction to Programming II - COS1512 (COS1512)
All documents for this subject (2)
Seller
Follow
foxNotes
Reviews received
Content preview
COS1512-24-Y Welcome Message Assessment 1
QUIZ
Started on Friday, 19 April 2024, 6:53 PM
State Finished
Completed on Friday, 19 April 2024, 7:56 PM
Time taken 1 hour 3 mins
Grade 7.00 out of 10.00 (70%)
Question 1
Incorrect
Mark 0.00 out of 1.00
The assert statement
Select one:
tests conditions or assumptions that should not occur in a program to prevent runtime errors
will display an error message when the condition in the statement is not true and abort the program.
All of the other options are valid.
can be turned on and off in a program
The assert statement tests conditions or assumptions that should not occur in a program to prevent runtime errors using a
boolean expression. If the result of the boolean expression is not true, the program will abort. The assert statement can be
turned on and off in a program using the #define NDEBUG directive.
The assert statement tests conditions or assumptions that should not occur in a program to prevent runtime errors using a
boolean expression. If the result of the boolean expression is not true, the program will abort. The assert statement can be
turned on and off in a program using the #define NDEBUG directive.
The correct answer is: All of the other options are valid.
, Question 2
Incorrect
Mark 0.00 out of 1.00
Base your answer to this question on the highlighted directives at the beginning of the program.
The program below will abort and display that the assertion has failed
#define NDEBUG
#include <cassert >
int main()
{
int x = 7;
/* Some big code in between and let's say x
is accidentally changed to 9 */
x = 9;
// Programmer assumes x to be 7 in rest of the code
assert(x==7);
/* Rest of the code */
return 0;
}
Select one:
True
False
The assert statement tests conditions or assumptions that should not occur in a program to prevent runtime errors using a
boolean expression. If the result of the boolean expression is not true, the program will abort. The assert statement can be
turned on and off in a program using the #define NDEBUG directive. In this program assert is turned off (NDEBUG is on) and
although the assertion will be false, the program will not abort.
The correct answer is 'False'.
Question 3
Correct
Mark 1.00 out of 1.00
To ensure that a test score score is valid, i.e. >= 0 and <= 100, we can use the following statement
The assert statement tests conditions or assumptions that should not occur in a program to prevent runtime errors using a
boolean expression. If the result of the boolean expression is not true, the program will abort.
See Savitch Chapter 5 section 5.5 General Debugging Techniques, the assert macro
The assert statement tests conditions or assumptions that should not occur in a program to prevent runtime errors using a
boolean expression. If the result of the boolean expression is not true, the program will abort.
See Savitch Chapter 5 section 5.5 General Debugging Techniques, the assert macro
The correct answer is:
assert(score >= 0 && score <= 100);
The benefits of buying summaries with Stuvia:
Guaranteed quality through customer reviews
Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.
Quick and easy check-out
You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.
Focus on what matters
Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!
Frequently asked questions
What do I get when I buy this document?
You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.
Satisfaction guarantee: how does it work?
Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.
Who am I buying these notes from?
Stuvia is a marketplace, so you are not buying this document from us, but from seller foxNotes. Stuvia facilitates payment to the seller.
Will I be stuck with a subscription?
No, you only buy these notes for $4.62. You're not tied to anything after your purchase.