100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
COS1512 Assignment 1 memo 2024 $4.55   Add to cart

Other

COS1512 Assignment 1 memo 2024

 103 views  6 purchases
  • Course
  • Institution

COS1512 Assignment 1 memo 2024

Preview 2 out of 7  pages

  • April 19, 2024
  • 7
  • 2023/2024
  • Other
  • Unknown
avatar-seller
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


Select one:
assert(!(0 <= score || score <= 100));
assert(score >= 0 && score <= 100); 
assert(score >= 0 || score <= 100);
assert(!(0 <= score && score <= 100));



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

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

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

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.55. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

78462 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$4.55  6x  sold
  • (0)
  Add to cart